diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs
index 137e442572261..173720872fcd0 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs
@@ -6,6 +6,8 @@
using System.ComponentModel;
using System.Globalization;
using System.Linq;
+using System.Threading;
+using System.Threading.Tasks;
using Azure.Core;
using Azure.Core.Pipeline;
@@ -20,12 +22,7 @@ public class ArmClient
/// The base URI of the service.
///
internal const string DefaultUri = "https://management.azure.com";
-
private TenantOperations _tenant;
- ///
- /// Get the tenant operations class.
- ///
- public TenantOperations Tenant => _tenant ??= new TenantOperations(ClientOptions, Credential, BaseUri, Pipeline);
///
/// Initializes a new instance of the class for mocking.
@@ -99,6 +96,7 @@ public ArmClient(
DefaultSubscription = string.IsNullOrWhiteSpace(defaultSubscriptionId)
? GetDefaultSubscription()
: GetSubscriptions().TryGet(defaultSubscriptionId);
+ _tenant = new TenantOperations(ClientOptions, Credential, BaseUri, Pipeline);
ClientOptions.ApiVersions.SetProviderClient(this);
}
@@ -219,5 +217,31 @@ public virtual RestApiContainer GetRestApis(string nameSpace)
{
return new RestApiContainer(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), nameSpace);
}
- }
+
+ /// Gets all resource providers for a subscription.
+ /// The number of results to return. If null is passed returns all deployments.
+ /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ public virtual Pageable ListProviders(int? top = null, string expand = null, CancellationToken cancellationToken = default) => _tenant.ListProviders(top, expand, cancellationToken);
+
+ /// Gets all resource providers for a subscription.
+ /// The number of results to return. If null is passed returns all deployments.
+ /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ public virtual AsyncPageable ListProvidersAsync(int? top = null, string expand = null, CancellationToken cancellationToken = default) => _tenant.ListProvidersAsync(top, expand, cancellationToken);
+
+ /// Gets the specified resource provider at the tenant level.
+ /// The namespace of the resource provider.
+ /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ /// is null.
+ public virtual Response GetProvider(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) => _tenant.GetProvider(resourceProviderNamespace, expand, cancellationToken);
+
+ /// Gets the specified resource provider at the tenant level.
+ /// The namespace of the resource provider.
+ /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ /// is null.
+ public virtual async Task> GetProviderAsync(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) => await _tenant.GetProviderAsync(resourceProviderNamespace, expand, cancellationToken).ConfigureAwait(false);
+}
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfo.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfo.Serialization.cs
new file mode 100644
index 0000000000000..28f202919451c
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfo.Serialization.cs
@@ -0,0 +1,46 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+using System.Collections.Generic;
+using System.Text.Json;
+using Azure.Core;
+
+namespace Azure.ResourceManager.Core
+{
+ public partial class ProviderInfo
+ {
+ internal static ProviderInfo DeserializeProviderInfo(JsonElement element)
+ {
+ Optional @namespace = default;
+ Optional> resourceTypes = default;
+ foreach (var property in element.EnumerateObject())
+ {
+ if (property.NameEquals("namespace"))
+ {
+ @namespace = property.Value.GetString();
+ continue;
+ }
+ if (property.NameEquals("resourceTypes"))
+ {
+ if (property.Value.ValueKind == JsonValueKind.Null)
+ {
+ property.ThrowNonNullablePropertyIsNull();
+ continue;
+ }
+ List array = new List();
+ foreach (var item in property.Value.EnumerateArray())
+ {
+ array.Add(ProviderResourceType.DeserializeProviderResourceType(item));
+ }
+ resourceTypes = array;
+ continue;
+ }
+ }
+ return new ProviderInfo(@namespace.Value, Optional.ToList(resourceTypes));
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfo.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfo.cs
new file mode 100644
index 0000000000000..b73472a143439
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfo.cs
@@ -0,0 +1,36 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+using System.Collections.Generic;
+using Azure.Core;
+
+namespace Azure.ResourceManager.Core
+{
+ /// Resource provider information.
+ public partial class ProviderInfo
+ {
+ /// Initializes a new instance of Provider.
+ internal ProviderInfo()
+ {
+ ResourceTypes = new ChangeTrackingList();
+ }
+
+ /// Initializes a new instance of Provider.
+ /// The namespace of the resource provider.
+ /// The collection of provider resource types.
+ internal ProviderInfo(string @namespace, IReadOnlyList resourceTypes)
+ {
+ Namespace = @namespace;
+ ResourceTypes = resourceTypes;
+ }
+
+ /// The namespace of the resource provider.
+ public string Namespace { get; }
+ /// The collection of provider resource types.
+ public IReadOnlyList ResourceTypes { get; }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfoListResult.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfoListResult.Serialization.cs
new file mode 100644
index 0000000000000..6f3fa1828605f
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfoListResult.Serialization.cs
@@ -0,0 +1,46 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+using System.Collections.Generic;
+using System.Text.Json;
+using Azure.Core;
+
+namespace Azure.ResourceManager.Core
+{
+ internal partial class ProviderInfoListResult
+ {
+ internal static ProviderInfoListResult DeserializeProviderInfoListResult(JsonElement element)
+ {
+ Optional> value = default;
+ Optional nextLink = default;
+ foreach (var property in element.EnumerateObject())
+ {
+ if (property.NameEquals("value"))
+ {
+ if (property.Value.ValueKind == JsonValueKind.Null)
+ {
+ property.ThrowNonNullablePropertyIsNull();
+ continue;
+ }
+ List array = new List();
+ foreach (var item in property.Value.EnumerateArray())
+ {
+ array.Add(ProviderInfo.DeserializeProviderInfo(item));
+ }
+ value = array;
+ continue;
+ }
+ if (property.NameEquals("nextLink"))
+ {
+ nextLink = property.Value.GetString();
+ continue;
+ }
+ }
+ return new ProviderInfoListResult(Optional.ToList(value), nextLink.Value);
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfoListResult.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfoListResult.cs
new file mode 100644
index 0000000000000..73383e87edc1c
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Models/ProviderInfoListResult.cs
@@ -0,0 +1,36 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+using System.Collections.Generic;
+using Azure.Core;
+
+namespace Azure.ResourceManager.Core
+{
+ /// List of resource providers.
+ internal partial class ProviderInfoListResult
+ {
+ /// Initializes a new instance of ProviderInfoListResult.
+ internal ProviderInfoListResult()
+ {
+ Value = new ChangeTrackingList();
+ }
+
+ /// Initializes a new instance of ProviderInfoListResult.
+ /// An array of resource providers.
+ /// The URL to use for getting the next set of results.
+ internal ProviderInfoListResult(IReadOnlyList value, string nextLink)
+ {
+ Value = value;
+ NextLink = nextLink;
+ }
+
+ /// An array of resource providers.
+ public IReadOnlyList Value { get; }
+ /// The URL to use for getting the next set of results.
+ public string NextLink { get; }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/ProviderRestOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/ProviderRestOperations.cs
new file mode 100644
index 0000000000000..32f0eee01bf7e
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/ProviderRestOperations.cs
@@ -0,0 +1,222 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+using System;
+using System.Text.Json;
+using System.Threading;
+using System.Threading.Tasks;
+using Azure.Core;
+
+namespace Azure.ResourceManager.Core
+{
+ internal partial class ProviderRestOperations
+ {
+ internal HttpMessage CreateGetAtTenantScopeRequest(string resourceProviderNamespace, string expand)
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Get;
+ var uri = new RawRequestUriBuilder();
+ uri.Reset(endpoint);
+ uri.AppendPath("/providers/", false);
+ uri.AppendPath(resourceProviderNamespace, true);
+ if (expand != null)
+ {
+ uri.AppendQuery("$expand", expand, true);
+ }
+ uri.AppendQuery("api-version", "2019-10-01", true);
+ request.Uri = uri;
+ request.Headers.Add("Accept", "application/json");
+ return message;
+ }
+
+ /// Gets the specified resource provider at the tenant level.
+ /// The namespace of the resource provider.
+ /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ /// is null.
+ public Response GetAtTenantScope(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default)
+ {
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+
+ using var message = CreateGetAtTenantScopeRequest(resourceProviderNamespace, expand);
+ _pipeline.Send(message, cancellationToken);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ ProviderInfo value = default;
+ using var document = JsonDocument.Parse(message.Response.ContentStream);
+ value = ProviderInfo.DeserializeProviderInfo(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw _clientDiagnostics.CreateRequestFailedException(message.Response);
+ }
+ }
+
+ /// Gets the specified resource provider at the tenant level.
+ /// The namespace of the resource provider.
+ /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ /// is null.
+ public async Task> GetAtTenantScopeAsync(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default)
+ {
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+
+ using var message = CreateGetAtTenantScopeRequest(resourceProviderNamespace, expand);
+ await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ ProviderInfo value = default;
+ using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
+ value = ProviderInfo.DeserializeProviderInfo(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
+ }
+ }
+
+ internal HttpMessage CreateListAtTenantScopeRequest(int? top, string expand)
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Get;
+ var uri = new RawRequestUriBuilder();
+ uri.Reset(endpoint);
+ uri.AppendPath("/providers", false);
+ if (top != null)
+ {
+ uri.AppendQuery("$top", top.Value, true);
+ }
+ if (expand != null)
+ {
+ uri.AppendQuery("$expand", expand, true);
+ }
+ uri.AppendQuery("api-version", "2019-10-01", true);
+ request.Uri = uri;
+ request.Headers.Add("Accept", "application/json");
+ return message;
+ }
+
+ internal HttpMessage CreateListAtTenantScopeNextPageRequest(string nextLink)
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Get;
+ var uri = new RawRequestUriBuilder();
+ uri.Reset(endpoint);
+ uri.AppendRawNextLink(nextLink, false);
+ request.Uri = uri;
+ request.Headers.Add("Accept", "application/json");
+ return message;
+ }
+
+ /// Gets all resource providers for the tenant.
+ /// The number of results to return. If null is passed returns all providers.
+ /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ public Response ListAtTenantScope(int? top = null, string expand = null, CancellationToken cancellationToken = default)
+ {
+ using var message = CreateListAtTenantScopeRequest(top, expand);
+ _pipeline.Send(message, cancellationToken);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ ProviderInfoListResult value = default;
+ using var document = JsonDocument.Parse(message.Response.ContentStream);
+ value = ProviderInfoListResult.DeserializeProviderInfoListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw _clientDiagnostics.CreateRequestFailedException(message.Response);
+ }
+ }
+
+ /// Gets all resource providers for the tenant.
+ /// The number of results to return. If null is passed returns all providers.
+ /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ public async Task> ListAtTenantScopeAsync(int? top = null, string expand = null, CancellationToken cancellationToken = default)
+ {
+ using var message = CreateListAtTenantScopeRequest(top, expand);
+ await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ ProviderInfoListResult value = default;
+ using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
+ value = ProviderInfoListResult.DeserializeProviderInfoListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
+ }
+ }
+
+ /// Gets all resource providers for the tenant.
+ /// The URL to the next page of results.
+ /// The cancellation token to use.
+ /// is null.
+ public Response ListAtTenantScopeNextPage(string nextLink, CancellationToken cancellationToken = default)
+ {
+ if (nextLink == null)
+ {
+ throw new ArgumentNullException(nameof(nextLink));
+ }
+
+ using var message = CreateListAtTenantScopeNextPageRequest(nextLink);
+ _pipeline.Send(message, cancellationToken);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ ProviderInfoListResult value = default;
+ using var document = JsonDocument.Parse(message.Response.ContentStream);
+ value = ProviderInfoListResult.DeserializeProviderInfoListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw _clientDiagnostics.CreateRequestFailedException(message.Response);
+ }
+ }
+
+ /// Gets all resource providers for the tenant.
+ /// The URL to the next page of results.
+ /// The cancellation token to use.
+ /// is null.
+ public async Task> ListAtTenantScopeNextPageAsync(string nextLink, CancellationToken cancellationToken = default)
+ {
+ if (nextLink == null)
+ {
+ throw new ArgumentNullException(nameof(nextLink));
+ }
+
+ using var message = CreateListAtTenantScopeNextPageRequest(nextLink);
+ await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ ProviderInfoListResult value = default;
+ using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
+ value = ProviderInfoListResult.DeserializeProviderInfoListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
+ }
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Feature.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Feature.cs
new file mode 100644
index 0000000000000..c010729e6b8e0
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Feature.cs
@@ -0,0 +1,52 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Threading;
+using System.Threading.Tasks;
+
+namespace Azure.ResourceManager.Core
+{
+ ///
+ /// A class representing a Feature along with the instance operations that can be performed on it.
+ ///
+ public class Feature : FeatureOperations
+ {
+ ///
+ /// Initializes a new instance of the class for mocking.
+ ///
+ protected Feature()
+ {
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The operations to copy the client options from.
+ /// The FeatureData to use in these operations.
+ internal Feature(ResourceOperationsBase operations, FeatureData resource)
+ : base(operations, resource.Id)
+ {
+ Data = resource;
+ }
+
+ ///
+ /// Gets the data representing this Feature.
+ ///
+ public virtual FeatureData Data { get; }
+
+ ///
+ protected override Feature GetResource(CancellationToken cancellation = default)
+ {
+ return this;
+ }
+
+ ///
+ protected override Task GetResourceAsync(CancellationToken cancellationToken = default)
+ {
+ return Task.FromResult(this);
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/FeatureContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/FeatureContainer.cs
new file mode 100644
index 0000000000000..3af480a13d376
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/FeatureContainer.cs
@@ -0,0 +1,241 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+using System;
+using System.Linq;
+using System.Threading;
+using System.Threading.Tasks;
+using Azure.Core;
+using Azure.Core.Pipeline;
+
+namespace Azure.ResourceManager.Core
+{
+ ///
+ /// A class representing collection of FeatureContainer and their operations over a Feature.
+ ///
+ public class FeatureContainer : ResourceContainerBase
+ {
+ private readonly ClientDiagnostics _clientDiagnostics;
+ private FeaturesRestOperations _restClient { get; }
+
+ ///
+ /// Initializes a new instance of the class for mocking.
+ ///
+ protected FeatureContainer()
+ {
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The resource representing the parent resource.
+ internal FeatureContainer(ProviderOperations parent)
+ : base(parent)
+ {
+ _clientDiagnostics = new ClientDiagnostics(ClientOptions);
+ _restClient = new FeaturesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri);
+ }
+
+ ///
+ protected override ResourceType ValidResourceType => ProviderOperations.ResourceType;
+
+ ///
+ /// Gets the resource identifier.
+ ///
+ public new SubscriptionProviderIdentifier Id => base.Id as SubscriptionProviderIdentifier;
+
+ /// Gets all the preview features in a provider namespace that are available through AFEC for the subscription.
+ /// The cancellation token to use.
+ public virtual AsyncPageable ListAsync(CancellationToken cancellationToken = default)
+ {
+ async Task> FirstPageFunc(int? pageSizeHint)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureContainer.List");
+ scope.Start();
+ try
+ {
+ var response = await _restClient.ListAsync(Id.Provider, cancellationToken).ConfigureAwait(false);
+ return Page.FromValues(response.Value.Value.Select(d => new Feature(Parent, d)), response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ async Task> NextPageFunc(string nextLink, int? pageSizeHint)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureContainer.List");
+ scope.Start();
+ try
+ {
+ var response = await _restClient.ListNextPageAsync(nextLink, Id.Provider, cancellationToken).ConfigureAwait(false);
+ return Page.FromValues(response.Value.Value.Select(d => new Feature(Parent, d)), response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc);
+ }
+
+ /// Gets all the preview features in a provider namespace that are available through AFEC for the subscription.
+ /// The cancellation token to use.
+ public virtual Pageable List(CancellationToken cancellationToken = default)
+ {
+ Page FirstPageFunc(int? pageSizeHint)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureContainer.List");
+ scope.Start();
+ try
+ {
+ var response = _restClient.List(Id.Provider, cancellationToken);
+ return Page.FromValues(response.Value.Value.Select(d => new Feature(Parent, d)), response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ Page NextPageFunc(string nextLink, int? pageSizeHint)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureContainer.List");
+ scope.Start();
+ try
+ {
+ var response = _restClient.ListNextPage(nextLink, Id.Provider, cancellationToken);
+ return Page.FromValues(response.Value.Value.Select(d => new Feature(Parent, d)), response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc);
+ }
+
+ /// Gets the preview feature with the specified name.
+ /// The name of the feature to get.
+ /// The cancellation token to use.
+ public virtual Response Get(string featureName, CancellationToken cancellationToken = default)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureContainer.Get");
+ scope.Start();
+ try
+ {
+ var response = _restClient.Get(Id.Provider, featureName, cancellationToken);
+ return Response.FromValue(new Feature(Parent, response.Value), response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ /// Gets the preview feature with the specified name.
+ /// The name of the feature to get.
+ /// The cancellation token to use.
+ public virtual async Task> GetAsync(string featureName, CancellationToken cancellationToken = default)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureContainer.Get");
+ scope.Start();
+ try
+ {
+ var response = await _restClient.GetAsync(Id.Provider, featureName, cancellationToken).ConfigureAwait(false);
+ return Response.FromValue(new Feature(Parent, response.Value), response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ ///
+ /// Returns the resource from Azure if it exists.
+ ///
+ /// The name of the resource you want to get.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual Feature TryGet(string featureName, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("FeatureContainer.TryGet");
+ scope.Start();
+
+ try
+ {
+ return Get(featureName, cancellationToken).Value;
+ }
+ catch (RequestFailedException e) when (e.Status == 404)
+ {
+ return null;
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ ///
+ /// Returns the resource from Azure if it exists.
+ ///
+ /// The name of the resource you want to get.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual async Task TryGetAsync(string featureName, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("FeatureContainer.TryGet");
+ scope.Start();
+
+ try
+ {
+ return await GetAsync(featureName, cancellationToken).ConfigureAwait(false);
+ }
+ catch (RequestFailedException e) when (e.Status == 404)
+ {
+ return null;
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ ///
+ /// Determines whether or not the azure resource exists in this container.
+ ///
+ /// The name of the resource you want to check.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual bool DoesExist(string featureName, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("FeatureContainer.DoesExist");
+ scope.Start();
+ return TryGet(featureName, cancellationToken) != null;
+ }
+
+ ///
+ /// Determines whether or not the azure resource exists in this container.
+ ///
+ /// The name of the resource you want to check.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual async Task DoesExistAsync(string featureName, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("FeatureContainer.DoesExist");
+ scope.Start();
+ return await TryGetAsync(featureName, cancellationToken).ConfigureAwait(false) != null;
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/FeatureOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/FeatureOperations.cs
new file mode 100644
index 0000000000000..2e5fe64b4beac
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/FeatureOperations.cs
@@ -0,0 +1,173 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+using System;
+using System.Threading;
+using System.Threading.Tasks;
+using Azure.Core.Pipeline;
+
+namespace Azure.ResourceManager.Core
+{
+ ///
+ /// A class representing the operations that can be performed over a specific Feature.
+ ///
+ public class FeatureOperations : ResourceOperationsBase
+ {
+ private readonly ClientDiagnostics _clientDiagnostics;
+ private FeaturesRestOperations _restClient { get; }
+
+ ///
+ /// Initializes a new instance of the class for mocking.
+ ///
+ protected FeatureOperations()
+ {
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The client parameters to use in these operations.
+ /// The id of the feature to use.
+ protected FeatureOperations(ResourceOperationsBase options, SubscriptionProviderIdentifier id)
+ : base(options, id)
+ {
+ _clientDiagnostics = new ClientDiagnostics(ClientOptions);
+ _restClient = new FeaturesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri);
+ }
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The name of the feature to use.
+ /// The client parameters to use in these operations.
+ internal FeatureOperations(string featureName, ProviderOperations options)
+ : base(options, new SubscriptionProviderIdentifier(options.Id.Parent as SubscriptionResourceIdentifier, "Microsoft.Features").AppendProviderResource(options.Id.Provider, ResourceType.Type, featureName))
+ {
+ _clientDiagnostics = new ClientDiagnostics(ClientOptions);
+ _restClient = new FeaturesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri);
+ }
+
+ ///
+ /// Gets the resource type definition for a ResourceType.
+ ///
+ public static readonly ResourceType ResourceType = "Microsoft.Resources/features";
+
+ ///
+ protected override ResourceType ValidResourceType => ResourceType;
+
+ ///
+ protected override void Validate(ResourceIdentifier identifier)
+ {
+ if (identifier.ResourceType != $"{Id.ResourceType.Namespace}/features")
+ {
+ throw new InvalidOperationException($"Invalid resourcetype found when intializing FeatureOperations: {identifier.ResourceType}");
+ }
+ }
+
+ ///
+ public override Response Get(CancellationToken cancellationToken = default)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Get");
+ scope.Start();
+ try
+ {
+ var response = _restClient.Get(Id.ResourceType.Namespace, Id.Name, cancellationToken);
+ return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ ///
+ public override async Task> GetAsync(CancellationToken cancellationToken = default)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Get");
+ scope.Start();
+ try
+ {
+ var response = await _restClient.GetAsync(Id.ResourceType.Namespace, Id.Name, cancellationToken).ConfigureAwait(false);
+ return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ /// Registers the preview feature for the subscription.
+ /// The cancellation token to use.
+ public virtual Response Register(CancellationToken cancellationToken = default)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Register");
+ scope.Start();
+ try
+ {
+ var response = _restClient.Register(Id.ResourceType.Namespace, Id.Name, cancellationToken);
+ return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ /// Registers the preview feature for the subscription.
+ /// The cancellation token to use.
+ public virtual async Task> RegisterAsync(CancellationToken cancellationToken = default)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Register");
+ scope.Start();
+ try
+ {
+ var response = await _restClient.RegisterAsync(Id.ResourceType.Namespace, Id.Name, cancellationToken).ConfigureAwait(false);
+ return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ /// Unregisters the preview feature for the subscription.
+ /// The cancellation token to use.
+ public virtual Response Unregister(CancellationToken cancellationToken = default)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Unregister");
+ scope.Start();
+ try
+ {
+ var response = _restClient.Unregister(Id.ResourceType.Namespace, Id.Name, cancellationToken);
+ return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ /// Unregisters the preview feature for the subscription.
+ /// The cancellation token to use.
+ public virtual async Task> UnregisterAsync(CancellationToken cancellationToken = default)
+ {
+ using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Unregister");
+ scope.Start();
+ try
+ {
+ var response = await _restClient.UnregisterAsync(Id.ResourceType.Namespace, Id.Name, cancellationToken).ConfigureAwait(false);
+ return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/FeaturesRestOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/FeaturesRestOperations.cs
new file mode 100644
index 0000000000000..0ae41e6004f1f
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/FeaturesRestOperations.cs
@@ -0,0 +1,568 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+using System;
+using System.Text.Json;
+using System.Threading;
+using System.Threading.Tasks;
+using Azure;
+using Azure.Core;
+using Azure.Core.Pipeline;
+
+namespace Azure.ResourceManager.Core
+{
+ internal partial class FeaturesRestOperations
+ {
+ private string subscriptionId;
+ private Uri endpoint;
+ private ClientDiagnostics _clientDiagnostics;
+ private HttpPipeline _pipeline;
+
+ /// Initializes a new instance of FeaturesRestOperations.
+ /// The handler for diagnostic messaging in the client.
+ /// The HTTP pipeline for sending and receiving REST requests and responses.
+ /// The ID of the target subscription.
+ /// server parameter.
+ /// is null.
+ public FeaturesRestOperations(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string subscriptionId, Uri endpoint = null)
+ {
+ if (subscriptionId == null)
+ {
+ throw new ArgumentNullException(nameof(subscriptionId));
+ }
+ endpoint ??= new Uri("https://management.azure.com");
+
+ this.subscriptionId = subscriptionId;
+ this.endpoint = endpoint;
+ _clientDiagnostics = clientDiagnostics;
+ _pipeline = pipeline;
+ }
+
+ internal HttpMessage CreateListAllRequest()
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Get;
+ var uri = new RawRequestUriBuilder();
+ uri.Reset(endpoint);
+ uri.AppendPath("/subscriptions/", false);
+ uri.AppendPath(subscriptionId, true);
+ uri.AppendPath("/providers/Microsoft.Features/features", false);
+ uri.AppendQuery("api-version", "2015-12-01", true);
+ request.Uri = uri;
+ request.Headers.Add("Accept", "application/json, text/json");
+ return message;
+ }
+
+ /// Gets all the preview features that are available through AFEC for the subscription.
+ /// The cancellation token to use.
+ public async Task> ListAllAsync(CancellationToken cancellationToken = default)
+ {
+ using var message = CreateListAllRequest();
+ await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureOperationsListResult value = default;
+ using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
+ value = FeatureOperationsListResult.DeserializeFeatureOperationsListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
+ }
+ }
+
+ /// Gets all the preview features that are available through AFEC for the subscription.
+ /// The cancellation token to use.
+ public Response ListAll(CancellationToken cancellationToken = default)
+ {
+ using var message = CreateListAllRequest();
+ _pipeline.Send(message, cancellationToken);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureOperationsListResult value = default;
+ using var document = JsonDocument.Parse(message.Response.ContentStream);
+ value = FeatureOperationsListResult.DeserializeFeatureOperationsListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw _clientDiagnostics.CreateRequestFailedException(message.Response);
+ }
+ }
+
+ internal HttpMessage CreateListRequest(string resourceProviderNamespace)
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Get;
+ var uri = new RawRequestUriBuilder();
+ uri.Reset(endpoint);
+ uri.AppendPath("/subscriptions/", false);
+ uri.AppendPath(subscriptionId, true);
+ uri.AppendPath("/providers/Microsoft.Features/providers/", false);
+ uri.AppendPath(resourceProviderNamespace, true);
+ uri.AppendPath("/features", false);
+ uri.AppendQuery("api-version", "2015-12-01", true);
+ request.Uri = uri;
+ request.Headers.Add("Accept", "application/json, text/json");
+ return message;
+ }
+
+ /// Gets all the preview features in a provider namespace that are available through AFEC for the subscription.
+ /// The namespace of the resource provider for getting features.
+ /// The cancellation token to use.
+ /// is null.
+ public async Task> ListAsync(string resourceProviderNamespace, CancellationToken cancellationToken = default)
+ {
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+
+ using var message = CreateListRequest(resourceProviderNamespace);
+ await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureOperationsListResult value = default;
+ using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
+ value = FeatureOperationsListResult.DeserializeFeatureOperationsListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
+ }
+ }
+
+ /// Gets all the preview features in a provider namespace that are available through AFEC for the subscription.
+ /// The namespace of the resource provider for getting features.
+ /// The cancellation token to use.
+ /// is null.
+ public Response List(string resourceProviderNamespace, CancellationToken cancellationToken = default)
+ {
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+
+ using var message = CreateListRequest(resourceProviderNamespace);
+ _pipeline.Send(message, cancellationToken);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureOperationsListResult value = default;
+ using var document = JsonDocument.Parse(message.Response.ContentStream);
+ value = FeatureOperationsListResult.DeserializeFeatureOperationsListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw _clientDiagnostics.CreateRequestFailedException(message.Response);
+ }
+ }
+
+ internal HttpMessage CreateGetRequest(string resourceProviderNamespace, string featureName)
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Get;
+ var uri = new RawRequestUriBuilder();
+ uri.Reset(endpoint);
+ uri.AppendPath("/subscriptions/", false);
+ uri.AppendPath(subscriptionId, true);
+ uri.AppendPath("/providers/Microsoft.Features/providers/", false);
+ uri.AppendPath(resourceProviderNamespace, true);
+ uri.AppendPath("/features/", false);
+ uri.AppendPath(featureName, true);
+ uri.AppendQuery("api-version", "2015-12-01", true);
+ request.Uri = uri;
+ request.Headers.Add("Accept", "application/json, text/json");
+ return message;
+ }
+
+ /// Gets the preview feature with the specified name.
+ /// The resource provider namespace for the feature.
+ /// The name of the feature to get.
+ /// The cancellation token to use.
+ /// or is null.
+ public async Task> GetAsync(string resourceProviderNamespace, string featureName, CancellationToken cancellationToken = default)
+ {
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+ if (featureName == null)
+ {
+ throw new ArgumentNullException(nameof(featureName));
+ }
+
+ using var message = CreateGetRequest(resourceProviderNamespace, featureName);
+ await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureData value = default;
+ using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
+ value = FeatureData.DeserializeFeatureResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
+ }
+ }
+
+ /// Gets the preview feature with the specified name.
+ /// The resource provider namespace for the feature.
+ /// The name of the feature to get.
+ /// The cancellation token to use.
+ /// or is null.
+ public Response Get(string resourceProviderNamespace, string featureName, CancellationToken cancellationToken = default)
+ {
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+ if (featureName == null)
+ {
+ throw new ArgumentNullException(nameof(featureName));
+ }
+
+ using var message = CreateGetRequest(resourceProviderNamespace, featureName);
+ _pipeline.Send(message, cancellationToken);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureData value = default;
+ using var document = JsonDocument.Parse(message.Response.ContentStream);
+ value = FeatureData.DeserializeFeatureResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw _clientDiagnostics.CreateRequestFailedException(message.Response);
+ }
+ }
+
+ internal HttpMessage CreateRegisterRequest(string resourceProviderNamespace, string featureName)
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Post;
+ var uri = new RawRequestUriBuilder();
+ uri.Reset(endpoint);
+ uri.AppendPath("/subscriptions/", false);
+ uri.AppendPath(subscriptionId, true);
+ uri.AppendPath("/providers/Microsoft.Features/providers/", false);
+ uri.AppendPath(resourceProviderNamespace, true);
+ uri.AppendPath("/features/", false);
+ uri.AppendPath(featureName, true);
+ uri.AppendPath("/register", false);
+ uri.AppendQuery("api-version", "2015-12-01", true);
+ request.Uri = uri;
+ request.Headers.Add("Accept", "application/json, text/json");
+ return message;
+ }
+
+ /// Registers the preview feature for the subscription.
+ /// The namespace of the resource provider.
+ /// The name of the feature to register.
+ /// The cancellation token to use.
+ /// or is null.
+ public async Task> RegisterAsync(string resourceProviderNamespace, string featureName, CancellationToken cancellationToken = default)
+ {
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+ if (featureName == null)
+ {
+ throw new ArgumentNullException(nameof(featureName));
+ }
+
+ using var message = CreateRegisterRequest(resourceProviderNamespace, featureName);
+ await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureData value = default;
+ using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
+ value = FeatureData.DeserializeFeatureResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
+ }
+ }
+
+ /// Registers the preview feature for the subscription.
+ /// The namespace of the resource provider.
+ /// The name of the feature to register.
+ /// The cancellation token to use.
+ /// or is null.
+ public Response Register(string resourceProviderNamespace, string featureName, CancellationToken cancellationToken = default)
+ {
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+ if (featureName == null)
+ {
+ throw new ArgumentNullException(nameof(featureName));
+ }
+
+ using var message = CreateRegisterRequest(resourceProviderNamespace, featureName);
+ _pipeline.Send(message, cancellationToken);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureData value = default;
+ using var document = JsonDocument.Parse(message.Response.ContentStream);
+ value = FeatureData.DeserializeFeatureResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw _clientDiagnostics.CreateRequestFailedException(message.Response);
+ }
+ }
+
+ internal HttpMessage CreateUnregisterRequest(string resourceProviderNamespace, string featureName)
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Post;
+ var uri = new RawRequestUriBuilder();
+ uri.Reset(endpoint);
+ uri.AppendPath("/subscriptions/", false);
+ uri.AppendPath(subscriptionId, true);
+ uri.AppendPath("/providers/Microsoft.Features/providers/", false);
+ uri.AppendPath(resourceProviderNamespace, true);
+ uri.AppendPath("/features/", false);
+ uri.AppendPath(featureName, true);
+ uri.AppendPath("/unregister", false);
+ uri.AppendQuery("api-version", "2015-12-01", true);
+ request.Uri = uri;
+ request.Headers.Add("Accept", "application/json, text/json");
+ return message;
+ }
+
+ /// Unregisters the preview feature for the subscription.
+ /// The namespace of the resource provider.
+ /// The name of the feature to unregister.
+ /// The cancellation token to use.
+ /// or is null.
+ public async Task> UnregisterAsync(string resourceProviderNamespace, string featureName, CancellationToken cancellationToken = default)
+ {
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+ if (featureName == null)
+ {
+ throw new ArgumentNullException(nameof(featureName));
+ }
+
+ using var message = CreateUnregisterRequest(resourceProviderNamespace, featureName);
+ await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureData value = default;
+ using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
+ value = FeatureData.DeserializeFeatureResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
+ }
+ }
+
+ /// Unregisters the preview feature for the subscription.
+ /// The namespace of the resource provider.
+ /// The name of the feature to unregister.
+ /// The cancellation token to use.
+ /// or is null.
+ public Response Unregister(string resourceProviderNamespace, string featureName, CancellationToken cancellationToken = default)
+ {
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+ if (featureName == null)
+ {
+ throw new ArgumentNullException(nameof(featureName));
+ }
+
+ using var message = CreateUnregisterRequest(resourceProviderNamespace, featureName);
+ _pipeline.Send(message, cancellationToken);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureData value = default;
+ using var document = JsonDocument.Parse(message.Response.ContentStream);
+ value = FeatureData.DeserializeFeatureResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw _clientDiagnostics.CreateRequestFailedException(message.Response);
+ }
+ }
+
+ internal HttpMessage CreateListAllNextPageRequest(string nextLink)
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Get;
+ var uri = new RawRequestUriBuilder();
+ uri.Reset(endpoint);
+ uri.AppendRawNextLink(nextLink, false);
+ request.Uri = uri;
+ request.Headers.Add("Accept", "application/json, text/json");
+ return message;
+ }
+
+ /// Gets all the preview features that are available through AFEC for the subscription.
+ /// The URL to the next page of results.
+ /// The cancellation token to use.
+ /// is null.
+ public async Task> ListAllNextPageAsync(string nextLink, CancellationToken cancellationToken = default)
+ {
+ if (nextLink == null)
+ {
+ throw new ArgumentNullException(nameof(nextLink));
+ }
+
+ using var message = CreateListAllNextPageRequest(nextLink);
+ await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureOperationsListResult value = default;
+ using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
+ value = FeatureOperationsListResult.DeserializeFeatureOperationsListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
+ }
+ }
+
+ /// Gets all the preview features that are available through AFEC for the subscription.
+ /// The URL to the next page of results.
+ /// The cancellation token to use.
+ /// is null.
+ public Response ListAllNextPage(string nextLink, CancellationToken cancellationToken = default)
+ {
+ if (nextLink == null)
+ {
+ throw new ArgumentNullException(nameof(nextLink));
+ }
+
+ using var message = CreateListAllNextPageRequest(nextLink);
+ _pipeline.Send(message, cancellationToken);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureOperationsListResult value = default;
+ using var document = JsonDocument.Parse(message.Response.ContentStream);
+ value = FeatureOperationsListResult.DeserializeFeatureOperationsListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw _clientDiagnostics.CreateRequestFailedException(message.Response);
+ }
+ }
+
+ internal HttpMessage CreateListNextPageRequest(string nextLink, string resourceProviderNamespace)
+ {
+ var message = _pipeline.CreateMessage();
+ var request = message.Request;
+ request.Method = RequestMethod.Get;
+ var uri = new RawRequestUriBuilder();
+ uri.Reset(endpoint);
+ uri.AppendRawNextLink(nextLink, false);
+ request.Uri = uri;
+ request.Headers.Add("Accept", "application/json, text/json");
+ return message;
+ }
+
+ /// Gets all the preview features in a provider namespace that are available through AFEC for the subscription.
+ /// The URL to the next page of results.
+ /// The namespace of the resource provider for getting features.
+ /// The cancellation token to use.
+ /// or is null.
+ public async Task> ListNextPageAsync(string nextLink, string resourceProviderNamespace, CancellationToken cancellationToken = default)
+ {
+ if (nextLink == null)
+ {
+ throw new ArgumentNullException(nameof(nextLink));
+ }
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+
+ using var message = CreateListNextPageRequest(nextLink, resourceProviderNamespace);
+ await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureOperationsListResult value = default;
+ using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
+ value = FeatureOperationsListResult.DeserializeFeatureOperationsListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
+ }
+ }
+
+ /// Gets all the preview features in a provider namespace that are available through AFEC for the subscription.
+ /// The URL to the next page of results.
+ /// The namespace of the resource provider for getting features.
+ /// The cancellation token to use.
+ /// or is null.
+ public Response ListNextPage(string nextLink, string resourceProviderNamespace, CancellationToken cancellationToken = default)
+ {
+ if (nextLink == null)
+ {
+ throw new ArgumentNullException(nameof(nextLink));
+ }
+ if (resourceProviderNamespace == null)
+ {
+ throw new ArgumentNullException(nameof(resourceProviderNamespace));
+ }
+
+ using var message = CreateListNextPageRequest(nextLink, resourceProviderNamespace);
+ _pipeline.Send(message, cancellationToken);
+ switch (message.Response.Status)
+ {
+ case 200:
+ {
+ FeatureOperationsListResult value = default;
+ using var document = JsonDocument.Parse(message.Response.ContentStream);
+ value = FeatureOperationsListResult.DeserializeFeatureOperationsListResult(document.RootElement);
+ return Response.FromValue(value, message.Response);
+ }
+ default:
+ throw _clientDiagnostics.CreateRequestFailedException(message.Response);
+ }
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceContainer.cs
index c2e1a3bcfb5e3..67bdfdac9552a 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceContainer.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceContainer.cs
@@ -401,12 +401,6 @@ public virtual async Task StartCreateOrUpd
}
}
- ///
- protected override ResourceOperationsBase GetOperation(string resourceId)
- {
- return new GenericResourceOperations(this, resourceId);
- }
-
private string GetApiVersion(ResourceIdentifier resourceId, CancellationToken cancellationToken)
{
string version = ClientOptions.ApiVersions.TryGetApiVersion(resourceId.ResourceType, cancellationToken);
@@ -426,5 +420,87 @@ private async Task GetApiVersionAsync(ResourceIdentifier resourceId, Can
}
return version;
}
+
+ ///
+ /// Returns the resource from Azure if it exists.
+ ///
+ /// The name of the resource you want to get.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual GenericResource TryGet(string resourceName, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("GenericResourceContainer.TryGet");
+ scope.Start();
+
+ try
+ {
+ return Get(resourceName, cancellationToken).Value;
+ }
+ catch (RequestFailedException e) when (e.Status == 404)
+ {
+ return null;
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ ///
+ /// Returns the resource from Azure if it exists.
+ ///
+ /// The name of the resource you want to get.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual async Task TryGetAsync(string resourceName, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("GenericResourceContainer.TryGet");
+ scope.Start();
+
+ try
+ {
+ return await GetAsync(resourceName, cancellationToken).ConfigureAwait(false);
+ }
+ catch (RequestFailedException e) when (e.Status == 404)
+ {
+ return null;
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ ///
+ /// Determines whether or not the azure resource exists in this container.
+ ///
+ /// The name of the resource you want to check.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual bool DoesExist(string resourceName, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("GenericResourceContainer.DoesExist");
+ scope.Start();
+ return TryGet(resourceName, cancellationToken) != null;
+ }
+
+ ///
+ /// Determines whether or not the azure resource exists in this container.
+ ///
+ /// The name of the resource you want to check.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual async Task DoesExistAsync(string resourceName, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("GenericResourceContainer.DoesExist");
+ scope.Start();
+ return await TryGetAsync(resourceName, cancellationToken).ConfigureAwait(false) != null;
+ }
}
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureData.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureData.Serialization.cs
new file mode 100644
index 0000000000000..14830703bd3f9
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureData.Serialization.cs
@@ -0,0 +1,52 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+using System.Text.Json;
+using Azure.Core;
+
+namespace Azure.ResourceManager.Core
+{
+ public partial class FeatureData
+ {
+ internal static FeatureData DeserializeFeatureResult(JsonElement element)
+ {
+ Optional name = default;
+ Optional properties = default;
+ Optional id = default;
+ Optional type = default;
+ foreach (var property in element.EnumerateObject())
+ {
+ if (property.NameEquals("name"))
+ {
+ name = property.Value.GetString();
+ continue;
+ }
+ if (property.NameEquals("properties"))
+ {
+ if (property.Value.ValueKind == JsonValueKind.Null)
+ {
+ property.ThrowNonNullablePropertyIsNull();
+ continue;
+ }
+ properties = FeatureProperties.DeserializeFeatureProperties(property.Value);
+ continue;
+ }
+ if (property.NameEquals("id"))
+ {
+ id = property.Value.GetString();
+ continue;
+ }
+ if (property.NameEquals("type"))
+ {
+ type = property.Value.GetString();
+ continue;
+ }
+ }
+ return new FeatureData(name.Value, properties.Value, id.Value, type.Value);
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureData.cs
new file mode 100644
index 0000000000000..bc813e8c1d8e7
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureData.cs
@@ -0,0 +1,40 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+namespace Azure.ResourceManager.Core
+{
+ /// Previewed feature information.
+ public partial class FeatureData
+ {
+ /// Initializes a new instance of FeatureResult.
+ internal FeatureData()
+ {
+ }
+
+ /// Initializes a new instance of FeatureResult.
+ /// The name of the feature.
+ /// Properties of the previewed feature.
+ /// The resource ID of the feature.
+ /// The resource type of the feature.
+ internal FeatureData(string name, FeatureProperties properties, string id, string type)
+ {
+ Name = name;
+ Properties = properties;
+ Id = id;
+ Type = type;
+ }
+
+ /// The name of the feature.
+ public string Name { get; }
+ /// Properties of the previewed feature.
+ public FeatureProperties Properties { get; }
+ /// The resource ID of the feature.
+ public string Id { get; }
+ /// The resource type of the feature.
+ public string Type { get; }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureOperationsListResult.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureOperationsListResult.Serialization.cs
new file mode 100644
index 0000000000000..e5ab5610108e2
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureOperationsListResult.Serialization.cs
@@ -0,0 +1,46 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+using System.Collections.Generic;
+using System.Text.Json;
+using Azure.Core;
+
+namespace Azure.ResourceManager.Core
+{
+ internal partial class FeatureOperationsListResult
+ {
+ internal static FeatureOperationsListResult DeserializeFeatureOperationsListResult(JsonElement element)
+ {
+ Optional> value = default;
+ Optional nextLink = default;
+ foreach (var property in element.EnumerateObject())
+ {
+ if (property.NameEquals("value"))
+ {
+ if (property.Value.ValueKind == JsonValueKind.Null)
+ {
+ property.ThrowNonNullablePropertyIsNull();
+ continue;
+ }
+ List array = new List();
+ foreach (var item in property.Value.EnumerateArray())
+ {
+ array.Add(FeatureData.DeserializeFeatureResult(item));
+ }
+ value = array;
+ continue;
+ }
+ if (property.NameEquals("nextLink"))
+ {
+ nextLink = property.Value.GetString();
+ continue;
+ }
+ }
+ return new FeatureOperationsListResult(Optional.ToList(value), nextLink.Value);
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureOperationsListResult.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureOperationsListResult.cs
new file mode 100644
index 0000000000000..584dffe666a19
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureOperationsListResult.cs
@@ -0,0 +1,36 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+using System.Collections.Generic;
+using Azure.Core;
+
+namespace Azure.ResourceManager.Core
+{
+ /// List of previewed features.
+ internal partial class FeatureOperationsListResult
+ {
+ /// Initializes a new instance of FeatureOperationsListResult.
+ internal FeatureOperationsListResult()
+ {
+ Value = new ChangeTrackingList();
+ }
+
+ /// Initializes a new instance of FeatureOperationsListResult.
+ /// The array of features.
+ /// The URL to use for getting the next set of results.
+ internal FeatureOperationsListResult(IReadOnlyList value, string nextLink)
+ {
+ Value = value;
+ NextLink = nextLink;
+ }
+
+ /// The array of features.
+ public IReadOnlyList Value { get; }
+ /// The URL to use for getting the next set of results.
+ public string NextLink { get; }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureProperties.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureProperties.Serialization.cs
new file mode 100644
index 0000000000000..96bd30077f83d
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureProperties.Serialization.cs
@@ -0,0 +1,29 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+using System.Text.Json;
+using Azure.Core;
+
+namespace Azure.ResourceManager.Core
+{
+ public partial class FeatureProperties
+ {
+ internal static FeatureProperties DeserializeFeatureProperties(JsonElement element)
+ {
+ Optional state = default;
+ foreach (var property in element.EnumerateObject())
+ {
+ if (property.NameEquals("state"))
+ {
+ state = property.Value.GetString();
+ continue;
+ }
+ }
+ return new FeatureProperties(state.Value);
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureProperties.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureProperties.cs
new file mode 100644
index 0000000000000..aa41df8453b24
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/FeatureProperties.cs
@@ -0,0 +1,28 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+//
+
+#nullable disable
+
+namespace Azure.ResourceManager.Core
+{
+ /// Information about feature.
+ public partial class FeatureProperties
+ {
+ /// Initializes a new instance of FeatureProperties.
+ internal FeatureProperties()
+ {
+ }
+
+ /// Initializes a new instance of FeatureProperties.
+ /// The registration state of the feature for the subscription.
+ internal FeatureProperties(string state)
+ {
+ State = state;
+ }
+
+ /// The registration state of the feature for the subscription.
+ public string State { get; }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderData.cs
index 053b505a9e0bd..45c9e6169f8a8 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderData.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderData.cs
@@ -11,7 +11,7 @@
namespace Azure.ResourceManager.Core
{
/// Resource provider information.
- public partial class ProviderData : SubResource
+ public partial class ProviderData : SubResource
{
/// Initializes a new instance of Provider.
internal ProviderData()
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderContainer.cs
index f2e5ab38cf9d9..6d821c08f0b70 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderContainer.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderContainer.cs
@@ -12,7 +12,7 @@ namespace Azure.ResourceManager.Core
///
/// A class representing collection of resources and their operations over their parent.
///
- public class ProviderContainer : ResourceContainerBase
+ public class ProviderContainer : ResourceContainerBase
{
///
/// Initializes a new instance of the class for mocking.
@@ -25,7 +25,7 @@ protected ProviderContainer()
/// Initializes a new instance of the class.
///
/// The client context to use.
- internal ProviderContainer(OperationsBase parent)
+ internal ProviderContainer(SubscriptionOperations parent)
: base(parent)
{
}
@@ -38,6 +38,11 @@ protected override void Validate(ResourceIdentifier identifier)
{
}
+ ///
+ /// Gets the resource identifier.
+ ///
+ public new SubscriptionResourceIdentifier Id => base.Id as SubscriptionResourceIdentifier;
+
private ProviderRestOperations RestClient
{
get
@@ -70,16 +75,8 @@ public virtual Response Get(string resourceProviderNamespace, string e
try
{
- Response result;
- if (Id is SubscriptionResourceIdentifier)
- {
- result = RestClient.Get(resourceProviderNamespace, expand, cancellationToken);
- }
- else
- {
- result = RestClient.GetAtTenantScope(resourceProviderNamespace, expand, cancellationToken);
- }
- return Response.FromValue(new Provider(Parent, result), result.GetRawResponse());
+ var result = RestClient.Get(resourceProviderNamespace, expand, cancellationToken);
+ return Response.FromValue(new Provider(this, result), result.GetRawResponse());
}
catch (Exception e)
{
@@ -102,18 +99,8 @@ public virtual async Task> GetAsync(string resourceProviderNa
try
{
- Response result;
- if (Id is SubscriptionResourceIdentifier)
- {
- result = await RestClient.GetAsync(resourceProviderNamespace, expand, cancellationToken).ConfigureAwait(false);
- }
- else
- {
- result = await RestClient.GetAtTenantScopeAsync(resourceProviderNamespace, expand, cancellationToken).ConfigureAwait(false);
- }
- if (Parent is null)
- return Response.FromValue(new Provider(result), result.GetRawResponse());
- return Response.FromValue(new Provider(Parent, result), result.GetRawResponse());
+ Response result = await RestClient.GetAsync(resourceProviderNamespace, expand, cancellationToken).ConfigureAwait(false);
+ return Response.FromValue(new Provider(this, result), result.GetRawResponse());
}
catch (Exception e)
{
@@ -132,20 +119,11 @@ Page FirstPageFunc(int? pageSizeHint)
{
using var scope = Diagnostics.CreateScope("ProviderContainer.List");
scope.Start();
- string subscriptionId = "";
try
{
- Response response;
- if (Id.TryGetSubscriptionId(out subscriptionId))
- {
- response = RestClient.List(top, expand, cancellationToken);
- }
- else
- {
- response = RestClient.ListAtTenantScope(top, expand, cancellationToken);
- }
- return Page.FromValues(response.Value.Value.Select(data => new Provider(Parent, data)), response.Value.NextLink, response.GetRawResponse());
+ Response response = RestClient.List(top, expand, cancellationToken);
+ return Page.FromValues(response.Value.Value.Select(data => new Provider(this, data)), response.Value.NextLink, response.GetRawResponse());
}
catch (Exception e)
{
@@ -157,20 +135,11 @@ Page NextPageFunc(string nextLink, int? pageSizeHint)
{
using var scope = Diagnostics.CreateScope("ProviderContainer.List");
scope.Start();
- string subscriptionId = "";
try
{
- Response response;
- if (Id.TryGetSubscriptionId(out subscriptionId))
- {
- response = RestClient.ListNextPage(nextLink, top, expand, cancellationToken);
- }
- else
- {
- response = RestClient.ListAtTenantScopeNextPage(nextLink, top, expand, cancellationToken);
- }
- return Page.FromValues(response.Value.Value.Select(data => new Provider(Parent, data)), response.Value.NextLink, response.GetRawResponse());
+ Response response = RestClient.ListNextPage(nextLink, top, expand, cancellationToken);
+ return Page.FromValues(response.Value.Value.Select(data => new Provider(this, data)), response.Value.NextLink, response.GetRawResponse());
}
catch (Exception e)
{
@@ -191,20 +160,11 @@ async Task> FirstPageFunc(int? pageSizeHint)
{
using var scope = Diagnostics.CreateScope("ProviderContainer.List");
scope.Start();
- string subscriptionId = "";
try
{
- Response response;
- if (Id.TryGetSubscriptionId(out subscriptionId))
- {
- response = await RestClient.ListAsync(top, expand, cancellationToken).ConfigureAwait(false);
- }
- else
- {
- response = await RestClient.ListAtTenantScopeAsync(top, expand, cancellationToken).ConfigureAwait(false);
- }
- return Page.FromValues(response.Value.Value.Select(data => new Provider(Parent, data)), response.Value.NextLink, response.GetRawResponse());
+ Response response = await RestClient.ListAsync(top, expand, cancellationToken).ConfigureAwait(false);
+ return Page.FromValues(response.Value.Value.Select(data => new Provider(this, data)), response.Value.NextLink, response.GetRawResponse());
}
catch (Exception e)
{
@@ -216,20 +176,11 @@ async Task> NextPageFunc(string nextLink, int? pageSizeHint)
{
using var scope = Diagnostics.CreateScope("ProviderContainer.List");
scope.Start();
- string subscriptionId = "";
try
{
- Response response;
- if (Id.TryGetSubscriptionId(out subscriptionId))
- {
- response = await RestClient.ListNextPageAsync(nextLink, top, expand, cancellationToken).ConfigureAwait(false);
- }
- else
- {
- response = await RestClient.ListAtTenantScopeNextPageAsync(nextLink, top, expand, cancellationToken).ConfigureAwait(false);
- }
- return Page.FromValues(response.Value.Value.Select(data => new Provider(Parent, data)), response.Value.NextLink, response.GetRawResponse());
+ Response response = await RestClient.ListNextPageAsync(nextLink, top, expand, cancellationToken).ConfigureAwait(false);
+ return Page.FromValues(response.Value.Value.Select(data => new Provider(this, data)), response.Value.NextLink, response.GetRawResponse());
}
catch (Exception e)
{
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderOperations.cs
index 6bb09082c0e9f..ae91b60fa62d9 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderOperations.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderOperations.cs
@@ -13,7 +13,7 @@
namespace Azure.ResourceManager.Core
{
/// The Providers service client.
- public partial class ProviderOperations : ResourceOperationsBase
+ public partial class ProviderOperations : ResourceOperationsBase
{
///
/// Initializes a new instance of the class for mocking.
@@ -26,7 +26,7 @@ protected ProviderOperations()
///
///
///
- internal ProviderOperations(ClientContext clientContext, TenantResourceIdentifier id)
+ internal ProviderOperations(ClientContext clientContext, SubscriptionProviderIdentifier id)
: base(clientContext, id)
{
}
@@ -36,7 +36,7 @@ internal ProviderOperations(ClientContext clientContext, TenantResourceIdentifie
///
/// The resource operations to copy the options from.
/// The identifier of the resource that is the target of operations.
- internal ProviderOperations(OperationsBase operations, TenantResourceIdentifier id)
+ internal ProviderOperations(OperationsBase operations, SubscriptionProviderIdentifier id)
: base(operations, id)
{
}
@@ -53,16 +53,10 @@ private ProviderRestOperations RestClient
{
get
{
- string subscription;
- if (Id is null || !Id.TryGetSubscriptionId(out subscription))
- {
- subscription = Guid.Empty.ToString();
- }
-
return new ProviderRestOperations(
Diagnostics,
Pipeline,
- subscription,
+ Id.SubscriptionId,
BaseUri);
}
}
@@ -148,20 +142,11 @@ public override Response Get(CancellationToken cancellationToken = def
{
using var scope = Diagnostics.CreateScope("ProviderOperations.Get");
scope.Start();
- string subscriptionId = "";
try
{
- if (Id.TryGetSubscriptionId(out subscriptionId))
- {
- var originalResponse = RestClient.Get(Id.Name, null, cancellationToken);
- return Response.FromValue(new Provider(this, originalResponse), originalResponse.GetRawResponse());
- }
- else
- {
- var result = RestClient.GetAtTenantScope(Id.Name, null, cancellationToken);
- return Response.FromValue(new Provider(this, result), result.GetRawResponse());
- }
+ var originalResponse = RestClient.Get(Id.Name, null, cancellationToken);
+ return Response.FromValue(new Provider(this, originalResponse), originalResponse.GetRawResponse());
}
catch (Exception e)
{
@@ -175,20 +160,11 @@ public override async Task> GetAsync(CancellationToken cancel
{
using var scope = Diagnostics.CreateScope("ProvidersOperations.Get");
scope.Start();
- string subscriptionId = "";
try
{
- if (Id.TryGetSubscriptionId(out subscriptionId))
- {
- var result = await RestClient.GetAsync(Id.Name, null, cancellationToken).ConfigureAwait(false);
- return Response.FromValue(new Provider(this, result), result.GetRawResponse());
- }
- else
- {
- var result = await RestClient.GetAtTenantScopeAsync(Id.Name, null, cancellationToken).ConfigureAwait(false);
- return Response.FromValue(new Provider(this, result), result.GetRawResponse());
- }
+ var result = await RestClient.GetAsync(Id.Name, null, cancellationToken).ConfigureAwait(false);
+ return Response.FromValue(new Provider(this, result), result.GetRawResponse());
}
catch (Exception e)
{
@@ -196,5 +172,14 @@ public override async Task> GetAsync(CancellationToken cancel
throw;
}
}
+
+ ///
+ /// Gets the features under this provider
+ ///
+ ///
+ public virtual FeatureContainer GetFeatures()
+ {
+ return new FeatureContainer(this);
+ }
}
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderRestOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderRestOperations.cs
index 398639ff9a031..4c61a14b42fee 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderRestOperations.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderRestOperations.cs
@@ -254,72 +254,6 @@ public Response List(int? top = null, string expand = null,
}
}
- internal Azure.Core.HttpMessage CreateListAtTenantScopeRequest(int? top, string expand)
- {
- var message = _pipeline.CreateMessage();
- var request = message.Request;
- request.Method = RequestMethod.Get;
- var uri = new RawRequestUriBuilder();
- uri.Reset(endpoint);
- uri.AppendPath("/providers", false);
- if (top != null)
- {
- uri.AppendQuery("$top", top.Value, true);
- }
- if (expand != null)
- {
- uri.AppendQuery("$expand", expand, true);
- }
- uri.AppendQuery("api-version", "2019-10-01", true);
- request.Uri = uri;
- request.Headers.Add("Accept", "application/json");
- return message;
- }
-
- /// Gets all resource providers for the tenant.
- /// The number of results to return. If null is passed returns all providers.
- /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases.
- /// The cancellation token to use.
- public async Task> ListAtTenantScopeAsync(int? top = null, string expand = null, CancellationToken cancellationToken = default)
- {
- using var message = CreateListAtTenantScopeRequest(top, expand);
- await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
- switch (message.Response.Status)
- {
- case 200:
- {
- ProviderListResult value = default;
- using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
- value = ProviderListResult.DeserializeProviderListResult(document.RootElement);
- return Response.FromValue(value, message.Response);
- }
- default:
- throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
- }
- }
-
- /// Gets all resource providers for the tenant.
- /// The number of results to return. If null is passed returns all providers.
- /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases.
- /// The cancellation token to use.
- public Response ListAtTenantScope(int? top = null, string expand = null, CancellationToken cancellationToken = default)
- {
- using var message = CreateListAtTenantScopeRequest(top, expand);
- _pipeline.Send(message, cancellationToken);
- switch (message.Response.Status)
- {
- case 200:
- {
- ProviderListResult value = default;
- using var document = JsonDocument.Parse(message.Response.ContentStream);
- value = ProviderListResult.DeserializeProviderListResult(document.RootElement);
- return Response.FromValue(value, message.Response);
- }
- default:
- throw _clientDiagnostics.CreateRequestFailedException(message.Response);
- }
- }
-
internal Azure.Core.HttpMessage CreateGetRequest(string resourceProviderNamespace, string expand)
{
var message = _pipeline.CreateMessage();
@@ -397,81 +331,6 @@ public Response Get(string resourceProviderNamespace, string expan
}
}
- internal Azure.Core.HttpMessage CreateGetAtTenantScopeRequest(string resourceProviderNamespace, string expand)
- {
- var message = _pipeline.CreateMessage();
- var request = message.Request;
- request.Method = RequestMethod.Get;
- var uri = new RawRequestUriBuilder();
- uri.Reset(endpoint);
- uri.AppendPath("/providers/", false);
- uri.AppendPath(resourceProviderNamespace, true);
- if (expand != null)
- {
- uri.AppendQuery("$expand", expand, true);
- }
- uri.AppendQuery("api-version", "2019-10-01", true);
- request.Uri = uri;
- request.Headers.Add("Accept", "application/json");
- return message;
- }
-
- /// Gets the specified resource provider at the tenant level.
- /// The namespace of the resource provider.
- /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases.
- /// The cancellation token to use.
- /// is null.
- public async Task> GetAtTenantScopeAsync(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default)
- {
- if (resourceProviderNamespace == null)
- {
- throw new ArgumentNullException(nameof(resourceProviderNamespace));
- }
-
- using var message = CreateGetAtTenantScopeRequest(resourceProviderNamespace, expand);
- await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
- switch (message.Response.Status)
- {
- case 200:
- {
- ProviderData value = default;
- using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
- value = ProviderData.DeserializeProvider(document.RootElement);
- return Response.FromValue(value, message.Response);
- }
- default:
- throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
- }
- }
-
- /// Gets the specified resource provider at the tenant level.
- /// The namespace of the resource provider.
- /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases.
- /// The cancellation token to use.
- /// is null.
- public Response GetAtTenantScope(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default)
- {
- if (resourceProviderNamespace == null)
- {
- throw new ArgumentNullException(nameof(resourceProviderNamespace));
- }
-
- using var message = CreateGetAtTenantScopeRequest(resourceProviderNamespace, expand);
- _pipeline.Send(message, cancellationToken);
- switch (message.Response.Status)
- {
- case 200:
- {
- ProviderData value = default;
- using var document = JsonDocument.Parse(message.Response.ContentStream);
- value = ProviderData.DeserializeProvider(document.RootElement);
- return Response.FromValue(value, message.Response);
- }
- default:
- throw _clientDiagnostics.CreateRequestFailedException(message.Response);
- }
- }
-
internal Azure.Core.HttpMessage CreateListNextPageRequest(string nextLink, int? top, string expand)
{
var message = _pipeline.CreateMessage();
@@ -542,76 +401,5 @@ public Response ListNextPage(string nextLink, int? top = nul
throw _clientDiagnostics.CreateRequestFailedException(message.Response);
}
}
-
- internal Azure.Core.HttpMessage CreateListAtTenantScopeNextPageRequest(string nextLink, int? top, string expand)
- {
- var message = _pipeline.CreateMessage();
- var request = message.Request;
- request.Method = RequestMethod.Get;
- var uri = new RawRequestUriBuilder();
- uri.Reset(endpoint);
- uri.AppendRawNextLink(nextLink, false);
- request.Uri = uri;
- request.Headers.Add("Accept", "application/json");
- return message;
- }
-
- /// Gets all resource providers for the tenant.
- /// The URL to the next page of results.
- /// The number of results to return. If null is passed returns all providers.
- /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases.
- /// The cancellation token to use.
- /// is null.
- public async Task> ListAtTenantScopeNextPageAsync(string nextLink, int? top = null, string expand = null, CancellationToken cancellationToken = default)
- {
- if (nextLink == null)
- {
- throw new ArgumentNullException(nameof(nextLink));
- }
-
- using var message = CreateListAtTenantScopeNextPageRequest(nextLink, top, expand);
- await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
- switch (message.Response.Status)
- {
- case 200:
- {
- ProviderListResult value = default;
- using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);
- value = ProviderListResult.DeserializeProviderListResult(document.RootElement);
- return Response.FromValue(value, message.Response);
- }
- default:
- throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false);
- }
- }
-
- /// Gets all resource providers for the tenant.
- /// The URL to the next page of results.
- /// The number of results to return. If null is passed returns all providers.
- /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases.
- /// The cancellation token to use.
- /// is null.
- public Response ListAtTenantScopeNextPage(string nextLink, int? top = null, string expand = null, CancellationToken cancellationToken = default)
- {
- if (nextLink == null)
- {
- throw new ArgumentNullException(nameof(nextLink));
- }
-
- using var message = CreateListAtTenantScopeNextPageRequest(nextLink, top, expand);
- _pipeline.Send(message, cancellationToken);
- switch (message.Response.Status)
- {
- case 200:
- {
- ProviderListResult value = default;
- using var document = JsonDocument.Parse(message.Response.ContentStream);
- value = ProviderListResult.DeserializeProviderListResult(document.RootElement);
- return Response.FromValue(value, message.Response);
- }
- default:
- throw _clientDiagnostics.CreateRequestFailedException(message.Response);
- }
- }
}
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs
index 4343c226933fa..97d913bf2896a 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs
@@ -45,14 +45,74 @@ private ResourceGroupsRestOperations RestClient
}
}
- ///
- public override bool DoesExist(string resourceName, CancellationToken cancellationToken = default)
+ ///
+ /// Returns the resource from Azure if it exists.
+ ///
+ /// The name of the resource you want to get.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual ResourceGroup TryGet(string resourceGroupName, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("ResourceGroupContainer.TryGet");
+ scope.Start();
+
+ try
+ {
+ return Get(resourceGroupName, cancellationToken).Value;
+ }
+ catch (RequestFailedException e) when (e.Status == 404)
+ {
+ return null;
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ ///
+ /// Returns the resource from Azure if it exists.
+ ///
+ /// The name of the resource you want to get.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual async Task TryGetAsync(string resourceGroupName, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("ResourceGroupContainer.TryGet");
+ scope.Start();
+
+ try
+ {
+ return await GetAsync(resourceGroupName, cancellationToken).ConfigureAwait(false);
+ }
+ catch (RequestFailedException e) when (e.Status == 404)
+ {
+ return null;
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ ///
+ /// Determines whether or not the azure resource exists in this container.
+ ///
+ /// The name of the resource you want to check.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual bool DoesExist(string resourceGroupName, CancellationToken cancellationToken = default)
{
using var scope = Diagnostics.CreateScope("ResourceGroupContainer.DoesExist");
scope.Start();
try
{
- return RestClient.CheckExistence(resourceName, cancellationToken).Value;
+ return RestClient.CheckExistence(resourceGroupName, cancellationToken).Value;
}
catch (Exception e)
{
@@ -61,14 +121,20 @@ public override bool DoesExist(string resourceName, CancellationToken cancellati
}
}
- ///
- public override async Task DoesExistAsync(string resourceName, CancellationToken cancellationToken = default)
+ ///
+ /// Determines whether or not the azure resource exists in this container.
+ ///
+ /// The name of the resource you want to check.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual async Task DoesExistAsync(string resourceGroupName, CancellationToken cancellationToken = default)
{
using var scope = Diagnostics.CreateScope("ResourceGroupContainer.DoesExist");
scope.Start();
try
{
- var response = await RestClient.CheckExistenceAsync(resourceName, cancellationToken).ConfigureAwait(false);
+ var response = await RestClient.CheckExistenceAsync(resourceGroupName, cancellationToken).ConfigureAwait(false);
return response.Value;
}
catch (Exception e)
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionContainer.cs
index 00c8d691d92fb..b05d63e4bb4ca 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionContainer.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionContainer.cs
@@ -182,13 +182,85 @@ public virtual async Task> GetAsync(string subscriptionGu
}
///
- /// Get an instance of the operations this container holds.
+ /// Returns the resource from Azure if it exists.
///
- /// The guid of the subscription to be found.
- /// An instance of .
- protected override ResourceOperationsBase GetOperation(string subscriptionGuid)
+ /// The name of the resource you want to get.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual Subscription TryGet(string subscriptionGuid, CancellationToken cancellationToken = default)
{
- return new SubscriptionOperations(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), subscriptionGuid);
+ using var scope = Diagnostics.CreateScope("SubscriptionContainer.TryGet");
+ scope.Start();
+
+ try
+ {
+ return Get(subscriptionGuid, cancellationToken).Value;
+ }
+ catch (RequestFailedException e) when (e.Status == 404)
+ {
+ return null;
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ ///
+ /// Returns the resource from Azure if it exists.
+ ///
+ /// The name of the resource you want to get.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual async Task TryGetAsync(string subscriptionGuid, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("SubscriptionContainer.TryGet");
+ scope.Start();
+
+ try
+ {
+ return await GetAsync(subscriptionGuid, cancellationToken).ConfigureAwait(false);
+ }
+ catch (RequestFailedException e) when (e.Status == 404)
+ {
+ return null;
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ ///
+ /// Determines whether or not the azure resource exists in this container.
+ ///
+ /// The name of the resource you want to check.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual bool DoesExist(string subscriptionGuid, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("SubscriptionContainer.DoesExist");
+ scope.Start();
+ return TryGet(subscriptionGuid, cancellationToken) != null;
+ }
+
+ ///
+ /// Determines whether or not the azure resource exists in this container.
+ ///
+ /// The name of the resource you want to check.
+ /// A token to allow the caller to cancel the call to the service.
+ /// The default value is .
+ /// Whether or not the resource existed.
+ public virtual async Task DoesExistAsync(string subscriptionGuid, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("SubscriptionContainer.DoesExist");
+ scope.Start();
+ return await TryGetAsync(subscriptionGuid, cancellationToken).ConfigureAwait(false) != null;
}
}
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionOperations.cs
index 0cce6bed3b688..1cf26f2008887 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionOperations.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionOperations.cs
@@ -67,6 +67,8 @@ public virtual T UseClientContext(Func new SubscriptionsRestOperations(Diagnostics, Pipeline, BaseUri);
+ private FeaturesRestOperations FeaturesRestOperations => new FeaturesRestOperations(Diagnostics, Pipeline, Id.SubscriptionId, BaseUri);
+
///
/// Gets the resource group container under this subscription.
///
@@ -212,5 +214,79 @@ public virtual PreDefinedTagOperations GetPreDefinedTagOperations()
{
return new PreDefinedTagOperations(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), Id);
}
+
+ /// Gets all the preview features that are available through AFEC for the subscription.
+ /// The cancellation token to use.
+ public virtual Pageable ListFeatures(CancellationToken cancellationToken = default)
+ {
+ Page FirstPageFunc(int? pageSizeHint)
+ {
+ using var scope = Diagnostics.CreateScope("SubscriptionOperations.ListFeatures");
+ scope.Start();
+ try
+ {
+ var response = FeaturesRestOperations.ListAll(cancellationToken);
+ return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ Page NextPageFunc(string nextLink, int? pageSizeHint)
+ {
+ using var scope = Diagnostics.CreateScope("SubscriptionOperations.ListFeatures");
+ scope.Start();
+ try
+ {
+ var response = FeaturesRestOperations.ListAllNextPage(nextLink, cancellationToken);
+ return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc);
+ }
+
+ /// Gets all the preview features that are available through AFEC for the subscription.
+ /// The cancellation token to use.
+ public virtual AsyncPageable ListFeaturesAsync(CancellationToken cancellationToken = default)
+ {
+ async Task> FirstPageFunc(int? pageSizeHint)
+ {
+ using var scope = Diagnostics.CreateScope("SubscriptionOperations.ListFeatures");
+ scope.Start();
+ try
+ {
+ var response = await FeaturesRestOperations.ListAllAsync(cancellationToken).ConfigureAwait(false);
+ return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ async Task> NextPageFunc(string nextLink, int? pageSizeHint)
+ {
+ using var scope = Diagnostics.CreateScope("SubscriptionOperations.ListFeatures");
+ scope.Start();
+ try
+ {
+ var response = await FeaturesRestOperations.ListAllNextPageAsync(nextLink, cancellationToken).ConfigureAwait(false);
+ return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc);
+ }
}
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs
index 8edf79ea7445b..c3812416168eb 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs
@@ -3,6 +3,8 @@
using System;
using System.ComponentModel;
+using System.Threading;
+using System.Threading.Tasks;
using Azure.Core;
using Azure.Core.Pipeline;
@@ -13,6 +15,8 @@ namespace Azure.ResourceManager.Core
///
public class TenantOperations : OperationsBase
{
+ private ProviderRestOperations _providerRestOperations;
+
///
/// Initializes a new instance of the class for mocking.
///
@@ -35,6 +39,7 @@ protected TenantOperations()
internal TenantOperations(ArmClientOptions options, TokenCredential credential, Uri baseUri, HttpPipeline pipeline)
: base(new ClientContext(options, credential, baseUri, pipeline), ResourceIdentifier.RootResourceIdentifier)
{
+ _providerRestOperations = new ProviderRestOperations(Diagnostics, Pipeline, Guid.Empty.ToString(), BaseUri);
}
///
@@ -66,13 +71,128 @@ public virtual AsyncPageable ListResourcesAsync(Func
- /// Gets the provider container under this subscription.
- ///
- /// The provider container.
- public virtual ProviderContainer GetProviders()
+ /// Gets all resource providers for a subscription.
+ /// The number of results to return. If null is passed returns all deployments.
+ /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ public virtual Pageable ListProviders(int? top = null, string expand = null, CancellationToken cancellationToken = default)
+ {
+ Page FirstPageFunc(int? pageSizeHint)
+ {
+ using var scope = Diagnostics.CreateScope("TenantOperations.ListProviders");
+ scope.Start();
+
+ try
+ {
+ Response response = _providerRestOperations.ListAtTenantScope(top, expand, cancellationToken);
+ return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ Page NextPageFunc(string nextLink, int? pageSizeHint)
+ {
+ using var scope = Diagnostics.CreateScope("TenantOperations.ListProviders");
+ scope.Start();
+
+ try
+ {
+ Response response = _providerRestOperations.ListAtTenantScopeNextPage(nextLink, cancellationToken);
+ return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc);
+ }
+
+ /// Gets all resource providers for a subscription.
+ /// The number of results to return. If null is passed returns all deployments.
+ /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ public virtual AsyncPageable ListProvidersAsync(int? top = null, string expand = null, CancellationToken cancellationToken = default)
+ {
+ async Task> FirstPageFunc(int? pageSizeHint)
+ {
+ using var scope = Diagnostics.CreateScope("TenantOperations.ListProviders");
+ scope.Start();
+
+ try
+ {
+ Response response = await _providerRestOperations.ListAtTenantScopeAsync(top, expand, cancellationToken).ConfigureAwait(false);
+ return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ async Task> NextPageFunc(string nextLink, int? pageSizeHint)
+ {
+ using var scope = Diagnostics.CreateScope("TenantOperations.ListProviders");
+ scope.Start();
+
+ try
+ {
+ Response response = await _providerRestOperations.ListAtTenantScopeNextPageAsync(nextLink, cancellationToken).ConfigureAwait(false);
+ return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse());
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+ return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc);
+ }
+
+ /// Gets the specified resource provider at the tenant level.
+ /// The namespace of the resource provider.
+ /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ /// is null.
+ public virtual Response GetProvider(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default)
{
- return new ProviderContainer(this);
+ using var scope = Diagnostics.CreateScope("TenantOperations.GetProvider");
+ scope.Start();
+
+ try
+ {
+ return _providerRestOperations.GetAtTenantScope(resourceProviderNamespace, expand, cancellationToken);
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
+ }
+
+ /// Gets the specified resource provider at the tenant level.
+ /// The namespace of the resource provider.
+ /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases.
+ /// The cancellation token to use.
+ /// is null.
+ public virtual async Task> GetProviderAsync(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default)
+ {
+ using var scope = Diagnostics.CreateScope("TenantOperations.GetProvider");
+ scope.Start();
+
+ try
+ {
+ return await _providerRestOperations.GetAtTenantScopeAsync(resourceProviderNamespace, expand, cancellationToken).ConfigureAwait(false);
+ }
+ catch (Exception e)
+ {
+ scope.Failed(e);
+ throw;
+ }
}
}
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs
index 921298f38590e..cc64d088daa3d 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs
@@ -12,9 +12,9 @@ namespace Azure.ResourceManager.Core
///
public abstract class OperationsBase
{
- private ProviderContainer _providerContainer;
private TagResourceContainer _tagContainer;
private TagResourceOperations _tagResourceOperations;
+ private TenantOperations _tenant;
///
/// Initializes a new instance of the class for mocking.
@@ -51,14 +51,9 @@ internal OperationsBase(ClientContext clientContext, ResourceIdentifier id)
}
///
- /// Gets the provider operations.
+ /// Get the tenant operations class.
///
- protected ProviderContainer ProviderContainer => _providerContainer ??= GetProviderContainer();
-
- private ProviderContainer GetProviderContainer()
- {
- return new ProviderContainer(this);
- }
+ public TenantOperations Tenant => _tenant ??= new TenantOperations(ClientOptions, Credential, BaseUri, Pipeline);
internal ClientDiagnostics Diagnostics { get; }
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs
index 84269c9aaeda8..8d7a40e87dccf 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs
@@ -93,106 +93,5 @@ protected TParent GetParentResource()
return _parentResource as TParent;
}
-
- ///
- /// Returns the resource from Azure if it exists.
- ///
- /// The name of the resource you want to get.
- /// A token to allow the caller to cancel the call to the service.
- /// The default value is .
- /// Whether or not the resource existed.
- public virtual TOperations TryGet(string resourceName, CancellationToken cancellationToken = default)
- {
- using var scope = Diagnostics.CreateScope("ResourceContainerBase`3.TryGet");
- scope.Start();
-
- var op = GetOperation(resourceName);
-
- try
- {
- return op.Get(cancellationToken).Value;
- }
- catch (RequestFailedException e) when (e.Status == 404)
- {
- return null;
- }
- catch (Exception e)
- {
- scope.Failed(e);
- throw;
- }
- }
-
- ///
- /// Returns the resource from Azure if it exists.
- ///
- /// The name of the resource you want to get.
- /// A token to allow the caller to cancel the call to the service.
- /// The default value is .
- /// Whether or not the resource existed.
- public virtual async Task TryGetAsync(string resourceName, CancellationToken cancellationToken = default)
- {
- using var scope = Diagnostics.CreateScope("ResourceContainerBase`3.TryGet");
- scope.Start();
-
- var op = GetOperation(resourceName);
-
- try
- {
- return (await op.GetAsync(cancellationToken).ConfigureAwait(false)).Value;
- }
- catch (RequestFailedException e) when (e.Status == 404)
- {
- return null;
- }
- catch (Exception e)
- {
- scope.Failed(e);
- throw;
- }
- }
-
- ///
- /// Determines whether or not the azure resource exists in this container
- ///
- /// The name of the resource you want to check.
- /// A token to allow the caller to cancel the call to the service.
- /// The default value is .
- /// Whether or not the resource existed.
- public virtual bool DoesExist(string resourceName, CancellationToken cancellationToken = default)
- {
- using var scope = Diagnostics.CreateScope("ResourceContainerBase`3.DoesExist");
- scope.Start();
- return TryGet(resourceName, cancellationToken) != null;
- }
-
- ///
- /// Determines whether or not the azure resource exists in this container
- ///
- /// The name of the resource you want to check.
- /// A token to allow the caller to cancel the call to the service.
- /// The default value is .
- /// Whether or not the resource existed.
- public virtual async Task DoesExistAsync(string resourceName, CancellationToken cancellationToken = default)
- {
- using var scope = Diagnostics.CreateScope("ResourceContainerBase`3.DoesExist");
- scope.Start();
- return await TryGetAsync(resourceName, cancellationToken).ConfigureAwait(false) != null;
- }
-
- ///
- /// Get an instance of the operations this container holds.
- ///
- /// The name of the resource to scope the operations to.
- /// An instance of .
- protected virtual ResourceOperationsBase GetOperation(string resourceName)
- {
- return Activator.CreateInstance(
- typeof(TOperations).BaseType,
- System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance,
- null,
- new object[] { Parent, resourceName },
- CultureInfo.InvariantCulture) as ResourceOperationsBase;
- }
}
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs
index 48a9c078f962b..0c97a5b4e1bf9 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs
@@ -34,7 +34,7 @@ internal ResourceOperationsBase(ClientContext clientContext, ResourceIdentifier
}
///
- /// Base class for all operations over a resource
+ /// Base class for all operations over a resource.
///
/// The type implementing operations over the resource.
/// The The identifier type for the resource.
@@ -71,7 +71,7 @@ internal ResourceOperationsBase(ClientContext clientContext, ResourceIdentifier
}
///
- /// The typed resource identifier for the underlying resource
+ /// The typed resource identifier for the underlying resource.
///
public virtual new TIdentifier Id
{
@@ -119,11 +119,10 @@ protected virtual async Task GetResourceAsync(CancellationToken can
/// A collection of location that may take multiple service requests to iterate over.
protected IEnumerable ListAvailableLocations(ResourceType resourceType, CancellationToken cancellationToken = default)
{
- var pageableProvider = ProviderContainer.List(expand: "metadata", cancellationToken: cancellationToken);
- var resourcePageableProvider = pageableProvider.FirstOrDefault(p => string.Equals(p.Data.Namespace, resourceType?.Namespace, StringComparison.InvariantCultureIgnoreCase));
+ ProviderInfo resourcePageableProvider = Tenant.GetProvider(resourceType.Namespace, null, cancellationToken);
if (resourcePageableProvider is null)
throw new InvalidOperationException($"{resourceType.Type} not found for {resourceType.Namespace}");
- var theResource = resourcePageableProvider.Data.ResourceTypes.FirstOrDefault(r => resourceType.Type.Equals(r.ResourceType));
+ var theResource = resourcePageableProvider.ResourceTypes.FirstOrDefault(r => resourceType.Type.Equals(r.ResourceType));
if (theResource is null)
throw new InvalidOperationException($"{resourceType.Type} not found for {resourceType.Type}");
return theResource.Locations.Select(l => (LocationData)l);
@@ -137,13 +136,10 @@ protected IEnumerable ListAvailableLocations(ResourceType resource
/// A collection of location that may take multiple service requests to iterate over.
protected async Task> ListAvailableLocationsAsync(ResourceType resourceType, CancellationToken cancellationToken = default)
{
- var pageableProvider = ProviderContainer.ListAsync(expand: "metadata", cancellationToken: cancellationToken);
- var resourcePageableProvider = await pageableProvider.FirstOrDefaultAsync(
- p => string.Equals(p.Data.Namespace, resourceType?.Namespace, StringComparison.InvariantCultureIgnoreCase),
- cancellationToken).ConfigureAwait(false);
+ ProviderInfo resourcePageableProvider = await Tenant.GetProviderAsync(resourceType.Namespace, null, cancellationToken).ConfigureAwait(false);
if (resourcePageableProvider is null)
throw new InvalidOperationException($"{resourceType.Type} not found for {resourceType.Namespace}");
- var theResource = resourcePageableProvider.Data.ResourceTypes.FirstOrDefault(r => resourceType.Type.Equals(r.ResourceType));
+ var theResource = resourcePageableProvider.ResourceTypes.FirstOrDefault(r => resourceType.Type.Equals(r.ResourceType));
if (theResource is null)
throw new InvalidOperationException($"{resourceType.Type} not found for {resourceType.Type}");
return theResource.Locations.Select(l => (LocationData)l);
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifierExtensions.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifierExtensions.cs
index 8e1b5e9927f5a..ddb3c90acc9d4 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifierExtensions.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifierExtensions.cs
@@ -44,6 +44,22 @@ public static SubscriptionResourceIdentifier AppendProviderResource(this Subscri
return new SubscriptionResourceIdentifier(identifier, providerNamespace, resourceType, resourceName);
}
+ ///
+ /// Add a provider resource to an existing resource id.
+ ///
+ /// The id to append to.
+ /// The provider namespace of the added resource.
+ /// The simple type of the added resource, without slashes (/),
+ /// for example, 'virtualMachines'.
+ /// The name of the resource.
+ /// The combined resource id.
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public static SubscriptionProviderIdentifier AppendProviderResource(this SubscriptionProviderIdentifier identifier, string providerNamespace, string resourceType, string resourceName)
+ {
+ ValidateProviderResourceParameters(providerNamespace, resourceType, resourceName);
+ return new SubscriptionProviderIdentifier(identifier, providerNamespace, resourceType, resourceName);
+ }
+
///
/// Add a provider resource to an existing resource id.
///
@@ -106,6 +122,21 @@ public static SubscriptionResourceIdentifier AppendChildResource(this Subscripti
return new SubscriptionResourceIdentifier(identifier, childResourceType, childResourceName);
}
+ ///
+ /// Add a provider resource to an existing resource id.
+ ///
+ /// The id to append to.
+ /// The simple type of the child resource, without slashes (/),
+ /// for example, 'subnets'.
+ /// The name of the resource.
+ /// The combined resource id.
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public static SubscriptionProviderIdentifier AppendChildResource(this SubscriptionProviderIdentifier identifier, string childResourceType, string childResourceName)
+ {
+ ValidateChildResourceParameters(childResourceType, childResourceName);
+ return new SubscriptionProviderIdentifier(identifier, childResourceType, childResourceName);
+ }
+
///
/// Add a provider resource to an existing resource id.
///
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj
index e4f34724bf740..8bd3bba268720 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj
@@ -28,6 +28,7 @@
+
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/FeatureContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/FeatureContainerTests.cs
new file mode 100644
index 0000000000000..681b541bb7a34
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/FeatureContainerTests.cs
@@ -0,0 +1,66 @@
+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 FeatureContainerTests : ResourceManagerTestBase
+ {
+ public FeatureContainerTests(bool isAsync)
+ : base(isAsync)//, RecordedTestMode.Record)
+ {
+ }
+
+ [RecordedTest]
+ public async Task List()
+ {
+ Provider provider = await Client.DefaultSubscription.GetProviders().GetAsync("Microsoft.Compute");
+ Feature testFeature = null;
+ await foreach (var feature in provider.GetFeatures().ListAsync())
+ {
+ testFeature = feature;
+ break;
+ }
+ Assert.IsNotNull(testFeature);
+ Assert.IsNotNull(testFeature.Data.Id);
+ Assert.IsNotNull(testFeature.Data.Name);
+ Assert.IsNotNull(testFeature.Data.Properties);
+ Assert.IsNotNull(testFeature.Data.Type);
+ }
+
+ [RecordedTest]
+ public async Task Get()
+ {
+ Provider provider = await Client.DefaultSubscription.GetProviders().GetAsync("Microsoft.Compute");
+ Feature feature = await provider.GetFeatures().GetAsync("AHUB");
+ Assert.IsNotNull(feature);
+ Assert.IsNotNull(feature.Data.Id);
+ Assert.AreEqual("Microsoft.Compute/AHUB", feature.Data.Name);
+ Assert.IsNotNull(feature.Data.Properties);
+ Assert.IsNotNull(feature.Data.Type);
+ }
+
+ [RecordedTest]
+ public async Task TryGet()
+ {
+ Provider provider = await Client.DefaultSubscription.GetProviders().GetAsync("Microsoft.Compute");
+ Feature feature = await provider.GetFeatures().TryGetAsync("AHUB");
+ Assert.IsNotNull(feature);
+ Assert.IsNotNull(feature.Data.Id);
+ Assert.AreEqual("Microsoft.Compute/AHUB", feature.Data.Name);
+ Assert.IsNotNull(feature.Data.Properties);
+ Assert.IsNotNull(feature.Data.Type);
+ }
+
+ [RecordedTest]
+ public async Task DoesExist()
+ {
+ Provider provider = await Client.DefaultSubscription.GetProviders().GetAsync("Microsoft.Compute");
+ Assert.IsTrue(await provider.GetFeatures().DoesExistAsync("AHUB"));
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/FeatureOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/FeatureOperationsTests.cs
new file mode 100644
index 0000000000000..a20bd931f82ce
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/FeatureOperationsTests.cs
@@ -0,0 +1,71 @@
+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 FeatureOperationsTests : ResourceManagerTestBase
+ {
+ public FeatureOperationsTests(bool isAsync)
+ : base(isAsync)//, RecordedTestMode.Record)
+ {
+ }
+
+ [RecordedTest]
+ public async Task Get()
+ {
+ Provider provider = await Client.DefaultSubscription.GetProviders().GetAsync("Microsoft.Compute");
+ Feature featureFromContainer = await GetFirst(provider.GetFeatures().ListAsync());
+ Feature feature = await featureFromContainer.GetAsync();
+ Assert.AreEqual(featureFromContainer.Data.Id, feature.Data.Id);
+ Assert.AreEqual(featureFromContainer.Data.Name, feature.Data.Name);
+ Assert.AreEqual(featureFromContainer.Data.Properties.State, feature.Data.Properties.State);
+ Assert.AreEqual(featureFromContainer.Data.Type, feature.Data.Type);
+ }
+
+ private async Task GetFirst(AsyncPageable asyncPageable, bool? isRegistered = null)
+ {
+ Feature result = null;
+ await foreach (var feature in asyncPageable)
+ {
+ if(isRegistered.HasValue)
+ {
+ if(isRegistered.Value == (feature.Data.Properties.State == "Registered"))
+ {
+ result = feature;
+ break;
+ }
+ }
+ else
+ {
+ result = feature;
+ break;
+ }
+ }
+ return result;
+ }
+
+ [RecordedTest]
+ public async Task RegisterAndUnregister()
+ {
+ //testing both register and unregister in the same test to avoid feature creep in our test subscription
+ Provider provider = await Client.DefaultSubscription.GetProviders().GetAsync("Microsoft.Compute");
+ Feature feature = await provider.GetFeatures().GetAsync("AHUB");
+ Feature afterRegister = await feature.RegisterAsync();
+ Assert.AreEqual(feature.Data.Id, afterRegister.Data.Id);
+ Assert.AreEqual(feature.Data.Name, afterRegister.Data.Name);
+ Assert.AreEqual("Pending", afterRegister.Data.Properties.State);
+ Assert.AreEqual(feature.Data.Type, afterRegister.Data.Type);
+
+ Feature afterUnRegister = await feature.UnregisterAsync();
+ Assert.AreEqual(feature.Data.Id, afterUnRegister.Data.Id);
+ Assert.AreEqual(feature.Data.Name, afterUnRegister.Data.Name);
+ Assert.AreEqual("Unregistering", afterUnRegister.Data.Properties.State);
+ Assert.AreEqual(feature.Data.Type, afterUnRegister.Data.Type);
+ }
+ }
+}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ProviderContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ProviderContainerTests.cs
index 1c67d38f159b1..e68630f4ca778 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ProviderContainerTests.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ProviderContainerTests.cs
@@ -9,7 +9,7 @@ namespace Azure.ResourceManager.Core.Tests
public class ProviderContainerTests : ResourceManagerTestBase
{
public ProviderContainerTests(bool isAsync)
- : base(isAsync) //, RecordedTestMode.Record)
+ : base(isAsync) //, RecordedTestMode.Record)
{
}
@@ -22,15 +22,6 @@ public async Task GetFromSubscription(string resourceNamespace)
Assert.IsNotNull(result);
}
- [TestCase("microsoft.compute")]
- [RecordedTest]
- public async Task GetFromTenant(string resourceNamespace)
- {
- var providerContainer = Client.Tenant.GetProviders();
- var result = await providerContainer.GetAsync(resourceNamespace);
- Assert.IsNotNull(result);
- }
-
[TestCase]
[RecordedTest]
public void GetNullException()
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionContainerTests.cs
index c418edfbaae0a..890c82302723f 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionContainerTests.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionContainerTests.cs
@@ -28,10 +28,10 @@ public async Task List()
[RecordedTest]
public async Task TryGet()
{
- var foo = await Client.GetSubscriptions().TryGetAsync("/subscriptions/" + new Guid().ToString()).ConfigureAwait(false);
+ var foo = await Client.GetSubscriptions().TryGetAsync(new Guid().ToString()).ConfigureAwait(false);
Assert.IsNull(foo);
string subscriptionId = Client.DefaultSubscription.Id.SubscriptionId;
- var subscription = await Client.GetSubscriptions().TryGetAsync("/subscriptions/" + subscriptionId).ConfigureAwait(false);
+ var subscription = await Client.GetSubscriptions().TryGetAsync(subscriptionId).ConfigureAwait(false);
Assert.NotNull(subscription);
Assert.IsTrue(subscription.Id.SubscriptionId.Equals(subscriptionId));
}
@@ -51,10 +51,10 @@ public async Task Get()
[RecordedTest]
public async Task DoesExist()
{
- var expectFalse = await Client.GetSubscriptions().DoesExistAsync("/subscriptions/" + new Guid().ToString()).ConfigureAwait(false);
+ var expectFalse = await Client.GetSubscriptions().DoesExistAsync(new Guid().ToString()).ConfigureAwait(false);
Assert.IsFalse(expectFalse);
string subscriptionId = Client.DefaultSubscription.Id.SubscriptionId;
- var expectTrue = await Client.GetSubscriptions().DoesExistAsync("/subscriptions/" + subscriptionId).ConfigureAwait(false);
+ var expectTrue = await Client.GetSubscriptions().DoesExistAsync(subscriptionId).ConfigureAwait(false);
Assert.IsTrue(expectTrue);
}
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs
index 27837523de51c..92edb2130e11d 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs
@@ -155,5 +155,21 @@ private string GetLongString(int length)
}
return builder.ToString();
}
+
+ [RecordedTest]
+ public async Task ListFeatures()
+ {
+ Feature testFeature = null;
+ await foreach (var feature in Client.DefaultSubscription.ListFeaturesAsync())
+ {
+ testFeature = feature;
+ break;
+ }
+ Assert.IsNotNull(testFeature);
+ Assert.IsNotNull(testFeature.Data.Id);
+ Assert.IsNotNull(testFeature.Data.Name);
+ Assert.IsNotNull(testFeature.Data.Properties);
+ Assert.IsNotNull(testFeature.Data.Type);
+ }
}
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromTenant(%microsoft.compute%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExist.json
similarity index 66%
rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromTenant(%microsoft.compute%).json
rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExist.json
index 026de6a20d02e..a703f8c01aecd 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromTenant(%microsoft.compute%).json
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExist.json
@@ -6,11 +6,9 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "User-Agent": [
- "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1",
- "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )"
- ],
- "x-ms-client-request-id": "95694a2be1403c4628b413d53c3bf482",
+ "traceparent": "00-545ede224a08e34aa246f51c914fd9c3-5c96e9ecdb3ed547-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "c8933659897982c2ea991301ca52e97e",
"x-ms-return-client-request-id": "true"
},
"RequestBody": null,
@@ -19,15 +17,15 @@
"Cache-Control": "no-cache",
"Content-Length": "450",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 24 Jun 2021 08:24:23 GMT",
+ "Date": "Fri, 09 Jul 2021 17:34:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "3099f453-df25-412e-ade8-28a71186818f",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-request-id": "3099f453-df25-412e-ade8-28a71186818f",
- "x-ms-routing-request-id": "WESTUS:20210624T082424Z:3099f453-df25-412e-ade8-28a71186818f"
+ "x-ms-correlation-request-id": "144c490f-bedf-45e0-867e-be322313b1f3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-request-id": "144c490f-bedf-45e0-867e-be322313b1f3",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:144c490f-bedf-45e0-867e-be322313b1f3"
},
"ResponseBody": {
"id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c",
@@ -49,36 +47,73 @@
}
},
{
- "RequestUri": "https://management.azure.com/providers/microsoft.compute?api-version=2019-10-01",
+ "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.Core/1.0.0-alpha.20210624.1",
- "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )"
- ],
- "x-ms-client-request-id": "fd7f4e67ba41838e2af4209ff70e6c6e",
+ "traceparent": "00-778aef48d1083844813bc3defb29de12-b24f07a631740642-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "631d4a47691075ea4c39da1524961a71",
"x-ms-return-client-request-id": "true"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "70185",
+ "Content-Length": "54667",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 24 Jun 2021 08:24:24 GMT",
+ "Date": "Fri, 09 Jul 2021 17:34:12 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "eae4f73e-a128-4f66-ba64-8e72dc33f0dc",
- "x-ms-ratelimit-remaining-tenant-reads": "11999",
- "x-ms-request-id": "eae4f73e-a128-4f66-ba64-8e72dc33f0dc",
- "x-ms-routing-request-id": "WESTUS:20210624T082424Z:eae4f73e-a128-4f66-ba64-8e72dc33f0dc"
+ "x-ms-correlation-request-id": "fafd42c9-7bfd-4f74-93c4-de8183f977de",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-request-id": "fafd42c9-7bfd-4f74-93c4-de8183f977de",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:fafd42c9-7bfd-4f74-93c4-de8183f977de"
},
"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",
@@ -117,24 +152,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -171,7 +189,7 @@
"apiVersion": "2017-12-01"
}
],
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "virtualMachines",
@@ -210,24 +228,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -264,8 +265,161 @@
"apiVersion": "2017-12-01"
}
],
- "zoneMappings": [],
- "capabilities": "SupportsTags, SupportsLocation"
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
},
{
"resourceType": "virtualMachines/extensions",
@@ -304,24 +458,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -358,7 +495,7 @@
"apiVersion": "2017-12-01"
}
],
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "virtualMachineScaleSets",
@@ -397,24 +534,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -452,8 +572,161 @@
"apiVersion": "2017-12-01"
}
],
- "zoneMappings": [],
- "capabilities": "SupportsTags, SupportsLocation"
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
},
{
"resourceType": "virtualMachineScaleSets/extensions",
@@ -492,24 +765,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -586,24 +842,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -680,24 +919,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -773,24 +995,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -868,24 +1073,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -963,24 +1151,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1071,24 +1242,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1164,24 +1318,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1256,24 +1393,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1339,24 +1459,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1394,78 +1497,6 @@
],
"capabilities": "None"
},
- {
- "resourceType": "locations/systemInfo",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "apiVersions": [
- "2021-07-01",
- "2021-04-01",
- "2021-03-01",
- "2020-12-01",
- "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": "locations/virtualMachines",
"locations": [
@@ -1503,24 +1534,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1588,24 +1602,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1673,24 +1670,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1766,24 +1746,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1807,7 +1770,15 @@
"capabilities": "None"
},
{
- "resourceType": "virtualMachines/runCommands",
+ "resourceType": "locations/edgeZones",
+ "locations": [],
+ "apiVersions": [
+ "2020-12-01"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "locations/edgeZones/publishers",
"locations": [
"East US",
"East US 2",
@@ -1843,118 +1814,41 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "apiVersions": [
- "2021-07-01",
- "2021-04-01",
- "2021-03-01",
- "2020-12-01",
- "2020-06-01",
- "2019-12-01"
+ "West US 3"
],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/edgeZones",
- "locations": [],
"apiVersions": [
"2020-12-01"
],
"capabilities": "None"
},
{
- "resourceType": "locations/edgeZones/publishers",
+ "resourceType": "restorePointCollections",
"locations": [
- "East US",
+ "Southeast Asia",
"East US 2",
- "West US",
"Central US",
+ "West Europe",
+ "East US",
"North Central US",
"South Central US",
+ "West US",
"North Europe",
- "West Europe",
"East Asia",
- "Southeast Asia",
+ "Brazil South",
+ "West US 2",
+ "West Central US",
+ "UK West",
+ "UK South",
"Japan East",
"Japan West",
+ "Canada Central",
+ "Canada East",
+ "Central India",
+ "South India",
"Australia East",
"Australia Southeast",
- "Australia Central",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "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",
+ "Korea Central",
+ "Korea South",
"West India",
"France Central",
"South Africa North",
@@ -1964,24 +1858,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2038,24 +1915,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2111,24 +1971,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2144,7 +1987,7 @@
"2018-04-01"
],
"defaultApiVersion": "2020-06-01",
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "sshPublicKeys",
@@ -2183,24 +2026,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2213,140 +2039,6 @@
"defaultApiVersion": "2020-06-01",
"capabilities": "SupportsTags, SupportsLocation"
},
- {
- "resourceType": "capacityReservationGroups",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
- ],
- "apiVersions": [
- "2021-07-01",
- "2021-04-01",
- "2021-03-01",
- "2020-12-01",
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "zoneMappings": [],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "capacityReservationGroups/capacityReservations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
- ],
- "apiVersions": [
- "2021-07-01",
- "2021-04-01",
- "2021-03-01",
- "2020-12-01",
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "zoneMappings": [],
- "capabilities": "SupportsTags, SupportsLocation"
- },
{
"resourceType": "virtualMachines/metricDefinitions",
"locations": [
@@ -2375,33 +2067,16 @@
"West Central US",
"UK South",
"UK West",
- "East US 2 EUAP",
- "Central US EUAP",
"Korea Central",
"Korea South",
"France Central",
- "France South",
- "Australia Central 2",
"South Africa North",
- "South Africa West",
"UAE North",
- "UAE Central",
"Switzerland North",
- "Switzerland West",
- "Germany North",
"Germany West Central",
"Norway East",
- "Norway West",
- "Brazil Southeast",
"West US 3",
- "East US SLV",
- "Jio India West",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "Jio India West"
],
"apiVersions": [
"2014-04-01"
@@ -2445,24 +2120,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2511,24 +2169,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2577,24 +2218,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2663,13 +2287,7 @@
"Korea Central",
"France Central",
"Central US",
- "Australia Central",
- "France South",
- "Australia Central 2",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "Australia Central"
],
"apiVersions": [
"2017-10-15-preview"
@@ -2707,13 +2325,7 @@
"Korea Central",
"France Central",
"Central US",
- "Australia Central",
- "France South",
- "Australia Central 2",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "Australia Central"
],
"apiVersions": [
"2017-10-15-preview"
@@ -2751,13 +2363,7 @@
"Korea Central",
"France Central",
"Central US",
- "Australia Central",
- "France South",
- "Australia Central 2",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "Australia Central"
],
"apiVersions": [
"2017-10-15-preview"
@@ -2801,24 +2407,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -2868,24 +2457,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -2935,24 +2507,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -3002,24 +2557,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -3069,24 +2607,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -3100,52 +2621,8 @@
"capabilities": "None"
},
{
- "resourceType": "galleries/applications",
- "locations": [
- "West US",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "apiVersions": [
- "2019-07-01",
- "2019-03-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "galleries/applications/versions",
- "locations": [
- "West US",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "apiVersions": [
- "2019-07-01",
- "2019-03-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sharedVMExtensions",
+ "resourceType": "disks",
"locations": [
- "West US",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
"Southeast Asia",
"East US 2",
"Central US",
@@ -3153,70 +2630,7 @@
"East US",
"North Central US",
"South Central US",
- "North Europe",
- "East Asia",
- "Brazil South",
- "West US 2",
- "West Central US",
- "UK West",
- "UK South",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "Australia East",
- "Australia Southeast",
- "Korea Central",
- "Korea South",
- "West India",
- "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-09-30",
- "2019-12-01"
- ],
- "defaultApiVersion": "2019-12-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sharedVMExtensions/versions",
- "locations": [
"West US",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "West Europe",
- "East US",
- "North Central US",
- "South Central US",
"North Europe",
"East Asia",
"Brazil South",
@@ -3246,83 +2660,19 @@
"West US 3"
],
"apiVersions": [
- "2021-03-01",
+ "2021-04-01",
+ "2020-12-01",
"2020-09-30",
- "2019-12-01"
- ],
- "defaultApiVersion": "2019-12-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "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",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "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"
+ "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": [
@@ -3335,8 +2685,161 @@
"apiVersion": "2018-04-01"
}
],
- "zoneMappings": [],
- "capabilities": "SupportsTags, SupportsLocation"
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "snapshots",
@@ -3375,24 +2878,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-04-01",
@@ -3420,7 +2906,7 @@
"apiVersion": "2018-04-01"
}
],
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "locations/diskoperations",
@@ -3459,24 +2945,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-04-01",
@@ -3542,24 +3011,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-04-01",
@@ -3571,7 +3023,7 @@
"2019-07-01"
],
"defaultApiVersion": "2020-06-30",
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
},
{
"resourceType": "diskAccesses",
@@ -3610,24 +3062,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-04-01",
@@ -3639,144 +3074,6 @@
"defaultApiVersion": "2020-06-30",
"capabilities": "SupportsTags, SupportsLocation"
},
- {
- "resourceType": "restorePointCollections/restorePoints/diskRestorePoints",
- "locations": [
- "West US",
- "East US 2 EUAP",
- "Central US EUAP",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "West Europe",
- "East US",
- "North Central US",
- "South Central US",
- "North Europe",
- "East Asia",
- "Brazil South",
- "West US 2",
- "West Central US",
- "UK West",
- "UK South",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "Australia East",
- "Australia Southeast",
- "Korea Central",
- "Korea South",
- "West India",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
- ],
- "apiVersions": [
- "2021-04-01",
- "2020-12-01",
- "2020-09-30"
- ],
- "defaultApiVersion": "2020-09-30",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/vsmoperations",
- "locations": [
- "Southeast Asia",
- "East US 2",
- "Central US",
- "West Europe",
- "East US",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "East Asia",
- "Brazil South",
- "West US 2",
- "West Central US",
- "UK West",
- "UK South",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "Australia East",
- "Australia Southeast",
- "Korea Central",
- "Korea South",
- "West India",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
- ],
- "apiVersions": [
- "2020-06-01",
- "2019-12-01",
- "2019-07-01",
- "2019-03-01",
- "2018-10-01",
- "2018-06-01",
- "2018-04-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": "cloudServices",
"locations": [
@@ -3814,31 +3111,167 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
"2020-10-01-preview"
],
"defaultApiVersion": "2021-03-01",
- "zoneMappings": [],
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
"capabilities": "SupportsTags, SupportsLocation"
},
{
@@ -3878,24 +3311,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -3941,24 +3357,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -4004,24 +3403,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -4066,24 +3448,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01"
@@ -4128,24 +3493,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01"
@@ -4190,24 +3538,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -4252,24 +3583,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -4314,24 +3628,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -4376,24 +3673,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -4423,7 +3703,7 @@
"apiVersion": "2018-04-01"
}
],
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "locations/logAnalytics",
@@ -4462,24 +3742,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -4507,13 +3770,11 @@
"France Central",
"North Europe",
"West US 2",
- "East US 2 EUAP",
"East US",
"UK South",
"Japan East",
"Japan West",
"East Asia",
- "Central US EUAP",
"North Central US",
"South Central US",
"Canada East",
@@ -4536,22 +3797,7 @@
"Norway East",
"Australia East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -4565,7 +3811,160 @@
"2018-10-01"
],
"defaultApiVersion": "2020-06-01",
- "zoneMappings": [],
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
"capabilities": "SupportsTags, SupportsLocation"
},
{
@@ -4578,13 +3977,11 @@
"France Central",
"North Europe",
"West US 2",
- "East US 2 EUAP",
"East US",
"UK South",
"Japan East",
"Japan West",
"East Asia",
- "Central US EUAP",
"North Central US",
"South Central US",
"Canada East",
@@ -4607,22 +4004,7 @@
"Norway East",
"Australia East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -4636,15 +4018,207 @@
"2018-10-01"
],
"defaultApiVersion": "2020-06-01",
- "zoneMappings": [],
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
"capabilities": "SupportsTags, SupportsLocation"
}
- ]
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-ca46480b3ca2304a9b28003cecbae446-3c7db44a8bed114b-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "f605540c8adc4e197ca37adcbac9895b",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "249",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:12 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "fc3e390d-eb27-4ca7-9f2d-486b9c7e0952",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-request-id": "westus2:b8820fac-502d-4965-8b61-afec77b659db",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:fc3e390d-eb27-4ca7-9f2d-486b9c7e0952"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
}
}
],
"Variables": {
- "RandomSeed": "773369925",
+ "RandomSeed": "234965413",
"SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
}
}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromTenant(%microsoft.compute%)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExistAsync.json
similarity index 66%
rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromTenant(%microsoft.compute%)Async.json
rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExistAsync.json
index 901acccee3d84..124b2e4ede85c 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromTenant(%microsoft.compute%)Async.json
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExistAsync.json
@@ -6,11 +6,9 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "User-Agent": [
- "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1",
- "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )"
- ],
- "x-ms-client-request-id": "52f660c12e0168d61ff58c713016870e",
+ "traceparent": "00-4053d371e0e94c4ba2291cb7dd936db8-bd73e25b8338bb47-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "c8933659897982c2ea991301ca52e97e",
"x-ms-return-client-request-id": "true"
},
"RequestBody": null,
@@ -19,15 +17,15 @@
"Cache-Control": "no-cache",
"Content-Length": "450",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 24 Jun 2021 08:24:23 GMT",
+ "Date": "Fri, 09 Jul 2021 17:34:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "01739b5b-fda4-4f30-9c8b-ef868f16c88b",
- "x-ms-ratelimit-remaining-subscription-reads": "11996",
- "x-ms-request-id": "01739b5b-fda4-4f30-9c8b-ef868f16c88b",
- "x-ms-routing-request-id": "WESTUS:20210624T082424Z:01739b5b-fda4-4f30-9c8b-ef868f16c88b"
+ "x-ms-correlation-request-id": "7307240f-c534-4822-8ce4-5f620b445101",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-request-id": "7307240f-c534-4822-8ce4-5f620b445101",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:7307240f-c534-4822-8ce4-5f620b445101"
},
"ResponseBody": {
"id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c",
@@ -49,36 +47,73 @@
}
},
{
- "RequestUri": "https://management.azure.com/providers/microsoft.compute?api-version=2019-10-01",
+ "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.Core/1.0.0-alpha.20210624.1",
- "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )"
- ],
- "x-ms-client-request-id": "a350a4ccd59417779012558cc9fd4c4a",
+ "traceparent": "00-011a84e59de9514284fa286ee263e89e-11a7d47dcd8baf4a-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "631d4a47691075ea4c39da1524961a71",
"x-ms-return-client-request-id": "true"
},
"RequestBody": null,
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "70185",
+ "Content-Length": "54667",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Thu, 24 Jun 2021 08:24:23 GMT",
+ "Date": "Fri, 09 Jul 2021 17:34:13 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "14cfb985-703e-4c88-970f-932d45c90655",
- "x-ms-ratelimit-remaining-tenant-reads": "11999",
- "x-ms-request-id": "14cfb985-703e-4c88-970f-932d45c90655",
- "x-ms-routing-request-id": "WESTUS:20210624T082424Z:14cfb985-703e-4c88-970f-932d45c90655"
+ "x-ms-correlation-request-id": "99db128c-85ea-4c00-aafe-35401489deec",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-request-id": "99db128c-85ea-4c00-aafe-35401489deec",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:99db128c-85ea-4c00-aafe-35401489deec"
},
"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",
@@ -117,24 +152,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -171,7 +189,7 @@
"apiVersion": "2017-12-01"
}
],
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "virtualMachines",
@@ -210,24 +228,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -264,8 +265,161 @@
"apiVersion": "2017-12-01"
}
],
- "zoneMappings": [],
- "capabilities": "SupportsTags, SupportsLocation"
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
},
{
"resourceType": "virtualMachines/extensions",
@@ -304,24 +458,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -358,7 +495,7 @@
"apiVersion": "2017-12-01"
}
],
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "virtualMachineScaleSets",
@@ -397,24 +534,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -452,8 +572,161 @@
"apiVersion": "2017-12-01"
}
],
- "zoneMappings": [],
- "capabilities": "SupportsTags, SupportsLocation"
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
},
{
"resourceType": "virtualMachineScaleSets/extensions",
@@ -492,24 +765,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -586,24 +842,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -680,24 +919,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -773,24 +995,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -868,24 +1073,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -963,24 +1151,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1071,24 +1242,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1164,24 +1318,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1256,24 +1393,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1339,24 +1459,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1394,78 +1497,6 @@
],
"capabilities": "None"
},
- {
- "resourceType": "locations/systemInfo",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "apiVersions": [
- "2021-07-01",
- "2021-04-01",
- "2021-03-01",
- "2020-12-01",
- "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": "locations/virtualMachines",
"locations": [
@@ -1503,24 +1534,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1588,24 +1602,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1673,24 +1670,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1766,24 +1746,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -1807,7 +1770,15 @@
"capabilities": "None"
},
{
- "resourceType": "virtualMachines/runCommands",
+ "resourceType": "locations/edgeZones",
+ "locations": [],
+ "apiVersions": [
+ "2020-12-01"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "locations/edgeZones/publishers",
"locations": [
"East US",
"East US 2",
@@ -1843,118 +1814,41 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "apiVersions": [
- "2021-07-01",
- "2021-04-01",
- "2021-03-01",
- "2020-12-01",
- "2020-06-01",
- "2019-12-01"
+ "West US 3"
],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/edgeZones",
- "locations": [],
"apiVersions": [
"2020-12-01"
],
"capabilities": "None"
},
{
- "resourceType": "locations/edgeZones/publishers",
+ "resourceType": "restorePointCollections",
"locations": [
- "East US",
+ "Southeast Asia",
"East US 2",
- "West US",
"Central US",
+ "West Europe",
+ "East US",
"North Central US",
"South Central US",
+ "West US",
"North Europe",
- "West Europe",
"East Asia",
- "Southeast Asia",
+ "Brazil South",
+ "West US 2",
+ "West Central US",
+ "UK West",
+ "UK South",
"Japan East",
"Japan West",
+ "Canada Central",
+ "Canada East",
+ "Central India",
+ "South India",
"Australia East",
"Australia Southeast",
- "Australia Central",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "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",
+ "Korea Central",
+ "Korea South",
"West India",
"France Central",
"South Africa North",
@@ -1964,24 +1858,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2038,24 +1915,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2111,24 +1971,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2144,7 +1987,7 @@
"2018-04-01"
],
"defaultApiVersion": "2020-06-01",
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "sshPublicKeys",
@@ -2183,24 +2026,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2213,140 +2039,6 @@
"defaultApiVersion": "2020-06-01",
"capabilities": "SupportsTags, SupportsLocation"
},
- {
- "resourceType": "capacityReservationGroups",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
- ],
- "apiVersions": [
- "2021-07-01",
- "2021-04-01",
- "2021-03-01",
- "2020-12-01",
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "zoneMappings": [],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "capacityReservationGroups/capacityReservations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
- ],
- "apiVersions": [
- "2021-07-01",
- "2021-04-01",
- "2021-03-01",
- "2020-12-01",
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "zoneMappings": [],
- "capabilities": "SupportsTags, SupportsLocation"
- },
{
"resourceType": "virtualMachines/metricDefinitions",
"locations": [
@@ -2375,33 +2067,16 @@
"West Central US",
"UK South",
"UK West",
- "East US 2 EUAP",
- "Central US EUAP",
"Korea Central",
"Korea South",
"France Central",
- "France South",
- "Australia Central 2",
"South Africa North",
- "South Africa West",
"UAE North",
- "UAE Central",
"Switzerland North",
- "Switzerland West",
- "Germany North",
"Germany West Central",
"Norway East",
- "Norway West",
- "Brazil Southeast",
"West US 3",
- "East US SLV",
- "Jio India West",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "Jio India West"
],
"apiVersions": [
"2014-04-01"
@@ -2445,24 +2120,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2511,24 +2169,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2577,24 +2218,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -2663,13 +2287,7 @@
"Korea Central",
"France Central",
"Central US",
- "Australia Central",
- "France South",
- "Australia Central 2",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "Australia Central"
],
"apiVersions": [
"2017-10-15-preview"
@@ -2707,13 +2325,7 @@
"Korea Central",
"France Central",
"Central US",
- "Australia Central",
- "France South",
- "Australia Central 2",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "Australia Central"
],
"apiVersions": [
"2017-10-15-preview"
@@ -2751,13 +2363,7 @@
"Korea Central",
"France Central",
"Central US",
- "Australia Central",
- "France South",
- "Australia Central 2",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "Australia Central"
],
"apiVersions": [
"2017-10-15-preview"
@@ -2801,24 +2407,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -2868,24 +2457,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -2935,24 +2507,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -3002,24 +2557,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -3069,24 +2607,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -3100,52 +2621,8 @@
"capabilities": "None"
},
{
- "resourceType": "galleries/applications",
- "locations": [
- "West US",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "apiVersions": [
- "2019-07-01",
- "2019-03-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "galleries/applications/versions",
- "locations": [
- "West US",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "apiVersions": [
- "2019-07-01",
- "2019-03-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sharedVMExtensions",
+ "resourceType": "disks",
"locations": [
- "West US",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
"Southeast Asia",
"East US 2",
"Central US",
@@ -3153,70 +2630,7 @@
"East US",
"North Central US",
"South Central US",
- "North Europe",
- "East Asia",
- "Brazil South",
- "West US 2",
- "West Central US",
- "UK West",
- "UK South",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "Australia East",
- "Australia Southeast",
- "Korea Central",
- "Korea South",
- "West India",
- "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-09-30",
- "2019-12-01"
- ],
- "defaultApiVersion": "2019-12-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sharedVMExtensions/versions",
- "locations": [
"West US",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "West Europe",
- "East US",
- "North Central US",
- "South Central US",
"North Europe",
"East Asia",
"Brazil South",
@@ -3246,83 +2660,19 @@
"West US 3"
],
"apiVersions": [
- "2021-03-01",
+ "2021-04-01",
+ "2020-12-01",
"2020-09-30",
- "2019-12-01"
- ],
- "defaultApiVersion": "2019-12-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "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",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
- ],
- "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"
+ "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": [
@@ -3335,8 +2685,161 @@
"apiVersion": "2018-04-01"
}
],
- "zoneMappings": [],
- "capabilities": "SupportsTags, SupportsLocation"
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "snapshots",
@@ -3375,24 +2878,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-04-01",
@@ -3420,7 +2906,7 @@
"apiVersion": "2018-04-01"
}
],
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "locations/diskoperations",
@@ -3459,24 +2945,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-04-01",
@@ -3542,24 +3011,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-04-01",
@@ -3571,7 +3023,7 @@
"2019-07-01"
],
"defaultApiVersion": "2020-06-30",
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
},
{
"resourceType": "diskAccesses",
@@ -3610,24 +3062,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-04-01",
@@ -3639,144 +3074,6 @@
"defaultApiVersion": "2020-06-30",
"capabilities": "SupportsTags, SupportsLocation"
},
- {
- "resourceType": "restorePointCollections/restorePoints/diskRestorePoints",
- "locations": [
- "West US",
- "East US 2 EUAP",
- "Central US EUAP",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "West Europe",
- "East US",
- "North Central US",
- "South Central US",
- "North Europe",
- "East Asia",
- "Brazil South",
- "West US 2",
- "West Central US",
- "UK West",
- "UK South",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "Australia East",
- "Australia Southeast",
- "Korea Central",
- "Korea South",
- "West India",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
- ],
- "apiVersions": [
- "2021-04-01",
- "2020-12-01",
- "2020-09-30"
- ],
- "defaultApiVersion": "2020-09-30",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/vsmoperations",
- "locations": [
- "Southeast Asia",
- "East US 2",
- "Central US",
- "West Europe",
- "East US",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "East Asia",
- "Brazil South",
- "West US 2",
- "West Central US",
- "UK West",
- "UK South",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "Australia East",
- "Australia Southeast",
- "Korea Central",
- "Korea South",
- "West India",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
- ],
- "apiVersions": [
- "2020-06-01",
- "2019-12-01",
- "2019-07-01",
- "2019-03-01",
- "2018-10-01",
- "2018-06-01",
- "2018-04-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": "cloudServices",
"locations": [
@@ -3814,31 +3111,167 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
"2020-10-01-preview"
],
"defaultApiVersion": "2021-03-01",
- "zoneMappings": [],
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
"capabilities": "SupportsTags, SupportsLocation"
},
{
@@ -3878,24 +3311,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -3941,24 +3357,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -4004,24 +3403,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -4066,24 +3448,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01"
@@ -4128,24 +3493,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01"
@@ -4190,24 +3538,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -4252,24 +3583,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -4314,24 +3628,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "East US 2 EUAP",
- "Central US EUAP",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-03-01",
@@ -4376,24 +3673,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -4423,7 +3703,7 @@
"apiVersion": "2018-04-01"
}
],
- "capabilities": "SupportsTags, SupportsLocation"
+ "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
},
{
"resourceType": "locations/logAnalytics",
@@ -4462,24 +3742,7 @@
"Germany West Central",
"Norway East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG",
- "East US 2 EUAP",
- "Central US EUAP"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -4507,13 +3770,11 @@
"France Central",
"North Europe",
"West US 2",
- "East US 2 EUAP",
"East US",
"UK South",
"Japan East",
"Japan West",
"East Asia",
- "Central US EUAP",
"North Central US",
"South Central US",
"Canada East",
@@ -4536,22 +3797,7 @@
"Norway East",
"Australia East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -4565,7 +3811,160 @@
"2018-10-01"
],
"defaultApiVersion": "2020-06-01",
- "zoneMappings": [],
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
"capabilities": "SupportsTags, SupportsLocation"
},
{
@@ -4578,13 +3977,11 @@
"France Central",
"North Europe",
"West US 2",
- "East US 2 EUAP",
"East US",
"UK South",
"Japan East",
"Japan West",
"East Asia",
- "Central US EUAP",
"North Central US",
"South Central US",
"Canada East",
@@ -4607,22 +4004,7 @@
"Norway East",
"Australia East",
"Jio India West",
- "West US 3",
- "France South",
- "Australia Central 2",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West",
- "Brazil Southeast",
- "East US SLV",
- "Jio India Central",
- "Sweden Central",
- "Sweden South",
- "Qatar Central",
- "East US STG",
- "South Central US STG"
+ "West US 3"
],
"apiVersions": [
"2021-07-01",
@@ -4636,15 +4018,207 @@
"2018-10-01"
],
"defaultApiVersion": "2020-06-01",
- "zoneMappings": [],
+ "zoneMappings": [
+ {
+ "location": "East US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "France Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Southeast Asia",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "West US 2",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "North Europe",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "East US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "UK South",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Japan East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Australia East",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "South Africa North",
+ "zones": []
+ },
+ {
+ "location": "South Central US",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "location": "Canada Central",
+ "zones": [
+ "2",
+ "1",
+ "3"
+ ]
+ },
+ {
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
"capabilities": "SupportsTags, SupportsLocation"
}
- ]
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-3a42642e176d644d9e0acf7ae341ba89-8aeab751dfe31044-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "f605540c8adc4e197ca37adcbac9895b",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "249",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:13 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "d8da8aea-4474-4ff5-93c4-1f40a87a69ce",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-request-id": "westus2:bacd4067-3834-432d-9400-3965ea394d45",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:d8da8aea-4474-4ff5-93c4-1f40a87a69ce"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
}
}
],
"Variables": {
- "RandomSeed": "885766600",
+ "RandomSeed": "234965413",
"SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
}
}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/Get.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/Get.json
new file mode 100644
index 0000000000000..b33ebc783efc1
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/Get.json
@@ -0,0 +1,4224 @@
+{
+ "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": "|8563e1ea-4659c934ff7c2cf6.",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "7c61ad66171aab30cc6e8097ba9d3d4f",
+ "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, 09 Jul 2021 17:34:12 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "59db4861-c7ff-478c-983a-41bca0c3fbef",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-request-id": "59db4861-c7ff-478c-983a-41bca0c3fbef",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:59db4861-c7ff-478c-983a-41bca0c3fbef"
+ },
+ "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/providers/Microsoft.Compute?api-version=2019-10-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-89c7944c0eaae441b5482ab96fc4ce77-8863a3ab6bf03649-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "29351fe5e3a5a0ce2135f69af081772b",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "54667",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:13 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "4d3d5974-06fc-4834-b098-0e8e1292370b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-request-id": "4d3d5974-06fc-4834-b098-0e8e1292370b",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:4d3d5974-06fc-4834-b098-0e8e1292370b"
+ },
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ }
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-85526b7828a4eb489e23553643a974cd-a375551ef264f64a-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "0a1c8efb9042815b7403a64b818c5cf7",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "249",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:13 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "e12b8fe9-2990-42c7-90b8-a56d589f34bc",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-request-id": "westus2:0d5e9541-4c7e-4e39-9b16-0758d9bd8c5d",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:e12b8fe9-2990-42c7-90b8-a56d589f34bc"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "1257960956",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/GetAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/GetAsync.json
new file mode 100644
index 0000000000000..a0e428dc78158
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/GetAsync.json
@@ -0,0 +1,4223 @@
+{
+ "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.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "b0680e3e572f3fcd645277c1983b80aa",
+ "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, 09 Jul 2021 17:34:13 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "ed15d4d6-53b8-4637-8447-63b247f103c9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-request-id": "ed15d4d6-53b8-4637-8447-63b247f103c9",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:ed15d4d6-53b8-4637-8447-63b247f103c9"
+ },
+ "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/providers/Microsoft.Compute?api-version=2019-10-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-0d43117ca16611438172c8abb5622c30-24d3ac3f93543b45-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "b5ef9c500739e844717353d92fcbad5e",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "54667",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:13 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "1cbb3215-e13a-4970-b242-e6b835c2afc8",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-request-id": "1cbb3215-e13a-4970-b242-e6b835c2afc8",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:1cbb3215-e13a-4970-b242-e6b835c2afc8"
+ },
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ }
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-bb4a98d3d90b8149acb91a9be7d11c14-79c6cb114bf2a448-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "716469217f371c1b56c5f460546065b2",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "249",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:13 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "58eb8282-258a-4e2e-ad7a-9217d5f5670e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-request-id": "westus2:545199c4-39ac-4f12-a1fd-46b6471b3cc0",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:58eb8282-258a-4e2e-ad7a-9217d5f5670e"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "1750043679",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/List.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/List.json
new file mode 100644
index 0000000000000..4dc4ad83576a0
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/List.json
@@ -0,0 +1,5819 @@
+{
+ "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.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "ff86a9f7f9bff9c7cf1f3597ea44ee70",
+ "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, 09 Jul 2021 17:34:14 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "f3f9f8af-b2ad-468a-88e9-ce0bf3c161df",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-request-id": "f3f9f8af-b2ad-468a-88e9-ce0bf3c161df",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:f3f9f8af-b2ad-468a-88e9-ce0bf3c161df"
+ },
+ "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/providers/Microsoft.Compute?api-version=2019-10-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-98712df979c5ed4e863c008213de47dc-9aeb2372ab285e41-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "d9aa01126d8ef132d0ffee282fa933fe",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "54667",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:14 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "19f708be-1058-4aee-a61e-cc2723c9f67d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-request-id": "19f708be-1058-4aee-a61e-cc2723c9f67d",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:19f708be-1058-4aee-a61e-cc2723c9f67d"
+ },
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ }
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-2f82e52cdcd96144adeeb771dda7d400-f3f46133f1fb2448-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "b191b8b398ed072173422e4a3923d03a",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "56997",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:14 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "1588e89d-af17-4074-b419-4c6518083f84",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-request-id": "westus2:8fb0edaa-ecdc-43db-99a4-5f070b015b76",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:1588e89d-af17-4074-b419-4c6518083f84"
+ },
+ "ResponseBody": {
+ "value": [
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowManagedDisksReplaceOSDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowManagedDisksReplaceOSDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/armApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/armApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticOSUpgradeWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticOSUpgradeWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AvailabilitySetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AvailabilitySetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzureVirtualMachineSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzureVirtualMachineSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AZBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AZBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/BatchGetTenantInformantionRequests",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/BatchGetTenantInformantionRequests"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsPlan",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsPlan"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalAdvancedSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalAdvancedSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CAPSImagePublishing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CAPSImagePublishing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalStandardSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalStandardSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CorPersistence",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CorPersistence"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DedicatedNodeGroup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DedicatedNodeGroup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/disableDisksAndSnapshotsPerRGLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/disableDisksAndSnapshotsPerRGLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DsmsSecrets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DsmsSecrets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EnableCrossSubscriptionWithKeyVaultResources",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EnableCrossSubscriptionWithKeyVaultResources"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ExtensionsFastpath",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ExtensionsFastpath"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableDeadMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableDeadMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateDiskCopyForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateDiskCopyForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.StopMigrateSkipDiskCopyForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.StopMigrateSkipDiskCopyForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.VMPreprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.VMPreprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/Fabric.UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/Fabric.UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/FastPollingOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/FastPollingOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Foobar",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Foobar"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageBigBlob",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageBigBlob"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryApplicationPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryApplicationPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageHighScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageHighScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryRemoveUserSourceDependency",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryRemoveUserSourceDependency"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpedeFastPolling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpedeFastPolling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/IncrementalSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/IncrementalSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestVMUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestVMUpdate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LocalDiffDiskPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LocalDiffDiskPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/lowprioritysinglevm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/lowprioritysinglevm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedDisksPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedDisksPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedResourcesMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedResourcesMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MRProfile",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MRProfile"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/MultipleAvailabilityZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/MultipleAvailabilityZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NetworkPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NetworkPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NewAllocator",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NewAllocator"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NodeFlight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NodeFlight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OptOutScaleSetPipelinePreemption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OptOutScaleSetPipelinePreemption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OSUpgradeForServiceFabric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OSUpgradeForServiceFabric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/OverProvision",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/OverProvision"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverprovisionedExtensionDelay",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverprovisionedExtensionDelay"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalance",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalance"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithFDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithFDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PerfTestSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PerfTestSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ProximityPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ProximityPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RegionalUltraSSDVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RegionalUltraSSDVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RepairVMScaleSetInstancesPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RepairVMScaleSetInstancesPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/Reprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/Reprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePolicyOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePolicyOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RunScripts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RunScripts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEnablePremiumLRSReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEnablePremiumLRSReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/SpotMeterValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/SpotMeterValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/StandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/StandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TenantReserveActivate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TenantReserveActivate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TipNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TipNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraSSDWithVMSS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraSSDWithVMSS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionForVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionForVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionWithOSUpgrades",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionWithOSUpgrades"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UserImageSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UserImageSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VirtualMachineRuntimeServiceDisablePackageValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VirtualMachineRuntimeServiceDisablePackageValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMPipelineBatchingPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMPipelineBatchingPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewV2Access",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewV2Access"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ZRSImagesAndSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ZRSImagesAndSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ESXiDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ESXiDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MSvDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MSvDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SyncBookmark",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SyncBookmark"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DCSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DCSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/XLargeDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/XLargeDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DV3Sizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DV3Sizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGZ",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGZ"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLACC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLACC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DDAGen5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DDAGen5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ASeriesInternal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ASeriesInternal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Nested",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Nested"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Internal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Internal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Mv2SmallSizeSeries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Mv2SmallSizeSeries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorMultiFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorMultiFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorSingleFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorSingleFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedIdentityEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedIdentityEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoReserveActivateInColocation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoReserveActivateInColocation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ListOfPinnedFabricClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ListOfPinnedFabricClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/NPSSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/NPSSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EncryptionAtHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EncryptionAtHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TrustedVMBackfillEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TrustedVMBackfillEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchSubscriptionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchSubscriptionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/JediBetaTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/JediBetaTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CopyV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CopyV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CloudServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CloudServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithConfigurableRepairActions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithConfigurableRepairActions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SystemPriorityCopy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SystemPriorityCopy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisk512E",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisk512E"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGPhaseScaleOutCopies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGPhaseScaleOutCopies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForwardAzGatewayTags",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForwardAzGatewayTags"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreviewRebootless",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreviewRebootless"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGTrustedVM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGTrustedVM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithVMScaleSetsAtScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithVMScaleSetsAtScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradeSDPWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradeSDPWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoRollingUpgradeForSFAutoOSUpgrade",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoRollingUpgradeForSFAutoOSUpgrade"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseElasticPipelineOptimization",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseElasticPipelineOptimization"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.AzPE.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.AzPE.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointsRetrieveSAS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointsRetrieveSAS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservationOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservationOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMCustomImagePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMCustomImagePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPatchModeOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPatchModeOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutorotationForDiskEncryptionAtRest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutorotationForDiskEncryptionAtRest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMSSFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMSSFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMApps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMApps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTryRestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTryRestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointExcludeDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointExcludeDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMNetworkInterfaceConfigurations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMNetworkInterfaceConfigurations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotBlock",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotBlock"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LiveTierChange",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LiveTierChange"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EarlyStartVMSSRoleInstances",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EarlyStartVMSSRoleInstances"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMScaleSetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMScaleSetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisksMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisksMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowForceDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowForceDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CreateOptionClone",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CreateOptionClone"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForceDeletePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForceDeletePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedDisksForStandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedDisksForStandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoAssessmentVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoAssessmentVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SupportCurrentLinuxAgentOnly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SupportCurrentLinuxAgentOnly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVmssFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVmssFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseNrpPutVmssPerTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseNrpPutVmssPerTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTerminateScheduledEvent",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTerminateScheduledEvent"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CheckForVMEviction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CheckForVMEviction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraBuiltOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraBuiltOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLAV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLAV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SsdZrsManagedDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SsdZrsManagedDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Architecture",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Architecture"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSoftDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSoftDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Sig2SigInstantaneous",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Sig2SigInstantaneous"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CommunityGalleries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CommunityGalleries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMsForTrustedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMsForTrustedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseTenantsOfSizeFive",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseTenantsOfSizeFive"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGReplicateVMGS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGReplicateVMGS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGShallowReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGShallowReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpactfulExtensionUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpactfulExtensionUpdate"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PlatformSettingsOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PlatformSettingsOverride"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticExtensionUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticExtensionUpgradePreview"
+ }
+ ]
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "1490222451",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/ListAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/ListAsync.json
new file mode 100644
index 0000000000000..ecccb706f484d
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/ListAsync.json
@@ -0,0 +1,5820 @@
+{
+ "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": "|8563e1eb-4659c934ff7c2cf6.",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "ff86a9f7f9bff9c7cf1f3597ea44ee70",
+ "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, 09 Jul 2021 17:34:13 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "f34f3096-116d-47d4-8857-c82372f4a938",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-request-id": "f34f3096-116d-47d4-8857-c82372f4a938",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:f34f3096-116d-47d4-8857-c82372f4a938"
+ },
+ "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/providers/Microsoft.Compute?api-version=2019-10-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-de70214c4e00b24da2fee0cb7a50e1ad-99c68812832fb544-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "d9aa01126d8ef132d0ffee282fa933fe",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "54667",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:13 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "7efff043-dd7f-4102-b954-1aa7e41a2b28",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-request-id": "7efff043-dd7f-4102-b954-1aa7e41a2b28",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:7efff043-dd7f-4102-b954-1aa7e41a2b28"
+ },
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ }
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-905f47c71165534d8cee921ffff0521d-f7ae0c2d03795d4f-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "b191b8b398ed072173422e4a3923d03a",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "56997",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:13 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "bce5f1d0-dfcb-468f-b7bd-956c6d0dfc83",
+ "x-ms-ratelimit-remaining-subscription-reads": "11990",
+ "x-ms-request-id": "westus2:d444f6b4-84c3-4c71-a78a-5512ed3f051d",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:bce5f1d0-dfcb-468f-b7bd-956c6d0dfc83"
+ },
+ "ResponseBody": {
+ "value": [
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowManagedDisksReplaceOSDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowManagedDisksReplaceOSDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/armApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/armApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticOSUpgradeWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticOSUpgradeWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AvailabilitySetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AvailabilitySetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzureVirtualMachineSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzureVirtualMachineSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AZBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AZBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/BatchGetTenantInformantionRequests",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/BatchGetTenantInformantionRequests"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsPlan",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsPlan"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalAdvancedSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalAdvancedSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CAPSImagePublishing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CAPSImagePublishing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalStandardSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalStandardSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CorPersistence",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CorPersistence"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DedicatedNodeGroup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DedicatedNodeGroup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/disableDisksAndSnapshotsPerRGLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/disableDisksAndSnapshotsPerRGLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DsmsSecrets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DsmsSecrets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EnableCrossSubscriptionWithKeyVaultResources",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EnableCrossSubscriptionWithKeyVaultResources"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ExtensionsFastpath",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ExtensionsFastpath"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableDeadMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableDeadMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateDiskCopyForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateDiskCopyForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.StopMigrateSkipDiskCopyForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.StopMigrateSkipDiskCopyForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.VMPreprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.VMPreprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/Fabric.UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/Fabric.UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/FastPollingOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/FastPollingOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Foobar",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Foobar"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageBigBlob",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageBigBlob"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryApplicationPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryApplicationPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageHighScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageHighScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryRemoveUserSourceDependency",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryRemoveUserSourceDependency"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpedeFastPolling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpedeFastPolling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/IncrementalSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/IncrementalSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestVMUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestVMUpdate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LocalDiffDiskPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LocalDiffDiskPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/lowprioritysinglevm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/lowprioritysinglevm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedDisksPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedDisksPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedResourcesMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedResourcesMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MRProfile",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MRProfile"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/MultipleAvailabilityZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/MultipleAvailabilityZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NetworkPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NetworkPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NewAllocator",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NewAllocator"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NodeFlight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NodeFlight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OptOutScaleSetPipelinePreemption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OptOutScaleSetPipelinePreemption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OSUpgradeForServiceFabric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OSUpgradeForServiceFabric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/OverProvision",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/OverProvision"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverprovisionedExtensionDelay",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverprovisionedExtensionDelay"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalance",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalance"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithFDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithFDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PerfTestSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PerfTestSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ProximityPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ProximityPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RegionalUltraSSDVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RegionalUltraSSDVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RepairVMScaleSetInstancesPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RepairVMScaleSetInstancesPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/Reprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/Reprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePolicyOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePolicyOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RunScripts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RunScripts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEnablePremiumLRSReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEnablePremiumLRSReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/SpotMeterValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/SpotMeterValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/StandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/StandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TenantReserveActivate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TenantReserveActivate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TipNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TipNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraSSDWithVMSS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraSSDWithVMSS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionForVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionForVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionWithOSUpgrades",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionWithOSUpgrades"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UserImageSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UserImageSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VirtualMachineRuntimeServiceDisablePackageValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VirtualMachineRuntimeServiceDisablePackageValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMPipelineBatchingPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMPipelineBatchingPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewV2Access",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewV2Access"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ZRSImagesAndSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ZRSImagesAndSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ESXiDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ESXiDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MSvDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MSvDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SyncBookmark",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SyncBookmark"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DCSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DCSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/XLargeDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/XLargeDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DV3Sizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DV3Sizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGZ",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGZ"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLACC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLACC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DDAGen5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DDAGen5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ASeriesInternal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ASeriesInternal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Nested",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Nested"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Internal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Internal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Mv2SmallSizeSeries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Mv2SmallSizeSeries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorMultiFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorMultiFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorSingleFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorSingleFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedIdentityEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedIdentityEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoReserveActivateInColocation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoReserveActivateInColocation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ListOfPinnedFabricClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ListOfPinnedFabricClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/NPSSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/NPSSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EncryptionAtHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EncryptionAtHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TrustedVMBackfillEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TrustedVMBackfillEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchSubscriptionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchSubscriptionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/JediBetaTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/JediBetaTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CopyV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CopyV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CloudServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CloudServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithConfigurableRepairActions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithConfigurableRepairActions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SystemPriorityCopy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SystemPriorityCopy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisk512E",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisk512E"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGPhaseScaleOutCopies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGPhaseScaleOutCopies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForwardAzGatewayTags",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForwardAzGatewayTags"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreviewRebootless",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreviewRebootless"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGTrustedVM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGTrustedVM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithVMScaleSetsAtScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithVMScaleSetsAtScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradeSDPWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradeSDPWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoRollingUpgradeForSFAutoOSUpgrade",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoRollingUpgradeForSFAutoOSUpgrade"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseElasticPipelineOptimization",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseElasticPipelineOptimization"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.AzPE.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.AzPE.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointsRetrieveSAS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointsRetrieveSAS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservationOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservationOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMCustomImagePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMCustomImagePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPatchModeOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPatchModeOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutorotationForDiskEncryptionAtRest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutorotationForDiskEncryptionAtRest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMSSFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMSSFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMApps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMApps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTryRestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTryRestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointExcludeDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointExcludeDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMNetworkInterfaceConfigurations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMNetworkInterfaceConfigurations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotBlock",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotBlock"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LiveTierChange",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LiveTierChange"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EarlyStartVMSSRoleInstances",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EarlyStartVMSSRoleInstances"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMScaleSetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMScaleSetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisksMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisksMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowForceDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowForceDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CreateOptionClone",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CreateOptionClone"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForceDeletePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForceDeletePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedDisksForStandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedDisksForStandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoAssessmentVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoAssessmentVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SupportCurrentLinuxAgentOnly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SupportCurrentLinuxAgentOnly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVmssFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVmssFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseNrpPutVmssPerTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseNrpPutVmssPerTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTerminateScheduledEvent",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTerminateScheduledEvent"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CheckForVMEviction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CheckForVMEviction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraBuiltOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraBuiltOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLAV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLAV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SsdZrsManagedDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SsdZrsManagedDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Architecture",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Architecture"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSoftDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSoftDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Sig2SigInstantaneous",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Sig2SigInstantaneous"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CommunityGalleries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CommunityGalleries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMsForTrustedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMsForTrustedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseTenantsOfSizeFive",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseTenantsOfSizeFive"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGReplicateVMGS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGReplicateVMGS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGShallowReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGShallowReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpactfulExtensionUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpactfulExtensionUpdate"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PlatformSettingsOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PlatformSettingsOverride"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticExtensionUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticExtensionUpgradePreview"
+ }
+ ]
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "1490222451",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/TryGet.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/TryGet.json
new file mode 100644
index 0000000000000..699d90d4b0821
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/TryGet.json
@@ -0,0 +1,4224 @@
+{
+ "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-edcaab8395b0d74eb117c7f8b29ccee0-90e0bd3e6643d14c-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "7dd88e091c6e22eedd719cf3eaad8e74",
+ "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, 09 Jul 2021 17:34:14 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "d5bf896f-3a33-4f2c-abe6-4eef54e36739",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-request-id": "d5bf896f-3a33-4f2c-abe6-4eef54e36739",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:d5bf896f-3a33-4f2c-abe6-4eef54e36739"
+ },
+ "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/providers/Microsoft.Compute?api-version=2019-10-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-9767cea75813ad4eadbacc9d81b0c2b5-e83eb6a0aa40f141-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "a839de5ecb853bec5f921bc97234d938",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "54667",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:14 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "27bb904b-677e-4e4a-a2cf-93774a273c0c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-request-id": "27bb904b-677e-4e4a-a2cf-93774a273c0c",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173415Z:27bb904b-677e-4e4a-a2cf-93774a273c0c"
+ },
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ }
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-8ecd09edd77a0e4885802d6c3644d92b-25f316b6e579c141-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "c010dfe296aa98466c70889943b99094",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "249",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:14 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "5b5a7157-549c-46eb-8bc0-1b30a8189a4a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-request-id": "westus2:8d5d730f-81b1-495b-8a5f-89ca778ef36f",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173415Z:5b5a7157-549c-46eb-8bc0-1b30a8189a4a"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "1956370203",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/TryGetAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/TryGetAsync.json
new file mode 100644
index 0000000000000..f93197c3eb79e
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/TryGetAsync.json
@@ -0,0 +1,4224 @@
+{
+ "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": "|8563e1ec-4659c934ff7c2cf6.",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "9e0f46b6f64fccc02dc003ccca4ed250",
+ "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, 09 Jul 2021 17:34:13 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "142ec6e3-837b-4843-aa75-5e7d043a9a40",
+ "x-ms-ratelimit-remaining-subscription-reads": "11989",
+ "x-ms-request-id": "142ec6e3-837b-4843-aa75-5e7d043a9a40",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173414Z:142ec6e3-837b-4843-aa75-5e7d043a9a40"
+ },
+ "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/providers/Microsoft.Compute?api-version=2019-10-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-0857b30948dece46bcf840682e084282-04e345bb0e328141-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "31090e81c2b592da2164084a63fa5f16",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "54667",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:14 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "aa6b7657-71c2-445b-907d-8a72567de94e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11988",
+ "x-ms-request-id": "aa6b7657-71c2-445b-907d-8a72567de94e",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173415Z:aa6b7657-71c2-445b-907d-8a72567de94e"
+ },
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ }
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-6e9ef441df064d4dab57a7488918dd52-dd676f9e90571945-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "89e77539f03d46cd05c5eff3943f368a",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "249",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 17:34:14 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "5984fff3-881b-4799-9e8e-83a05955f9f9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11987",
+ "x-ms-request-id": "westus2:db595680-a172-43d6-bbd4-9a60923cfdec",
+ "x-ms-routing-request-id": "WESTUS2:20210709T173415Z:5984fff3-881b-4799-9e8e-83a05955f9f9"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "1604998312",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/Get.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/Get.json
new file mode 100644
index 0000000000000..812fcefeab193
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/Get.json
@@ -0,0 +1,5856 @@
+{
+ "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.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "ae5b9e41966009a36aa20313d1ffc4ae",
+ "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, 09 Jul 2021 18:42:35 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "110a4673-a6bf-4d30-8867-4f3c9065b26b",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-request-id": "110a4673-a6bf-4d30-8867-4f3c9065b26b",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184236Z:110a4673-a6bf-4d30-8867-4f3c9065b26b"
+ },
+ "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/providers/Microsoft.Compute?api-version=2019-10-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-db34f8831ba0ae42ac25286ce5a7666e-859542623b371c49-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "2dae0de7dbf3a4ca3a24140c75b70450",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "54667",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:42:36 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "bf299dc5-fb4d-4ff5-89a5-34f8e52a5596",
+ "x-ms-ratelimit-remaining-subscription-reads": "11993",
+ "x-ms-request-id": "bf299dc5-fb4d-4ff5-89a5-34f8e52a5596",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184237Z:bf299dc5-fb4d-4ff5-89a5-34f8e52a5596"
+ },
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ }
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-858c749ecd77fb43afe449c045998da8-f61b48611460c742-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "4ef1d091784d0410b1dc9ca06872f71f",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "56991",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:42:37 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "51a276d2-348f-4288-86d0-5af5885cd019",
+ "x-ms-ratelimit-remaining-subscription-reads": "11992",
+ "x-ms-request-id": "westus2:f324bdd8-0057-416d-ab65-fab59ae3ac0c",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184237Z:51a276d2-348f-4288-86d0-5af5885cd019"
+ },
+ "ResponseBody": {
+ "value": [
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowManagedDisksReplaceOSDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowManagedDisksReplaceOSDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/armApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/armApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticOSUpgradeWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticOSUpgradeWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AvailabilitySetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AvailabilitySetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzureVirtualMachineSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzureVirtualMachineSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AZBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AZBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/BatchGetTenantInformantionRequests",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/BatchGetTenantInformantionRequests"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsPlan",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsPlan"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalAdvancedSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalAdvancedSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CAPSImagePublishing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CAPSImagePublishing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalStandardSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalStandardSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CorPersistence",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CorPersistence"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DedicatedNodeGroup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DedicatedNodeGroup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/disableDisksAndSnapshotsPerRGLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/disableDisksAndSnapshotsPerRGLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DsmsSecrets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DsmsSecrets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EnableCrossSubscriptionWithKeyVaultResources",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EnableCrossSubscriptionWithKeyVaultResources"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ExtensionsFastpath",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ExtensionsFastpath"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableDeadMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableDeadMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateDiskCopyForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateDiskCopyForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.StopMigrateSkipDiskCopyForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.StopMigrateSkipDiskCopyForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.VMPreprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.VMPreprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/Fabric.UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/Fabric.UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/FastPollingOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/FastPollingOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Foobar",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Foobar"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageBigBlob",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageBigBlob"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryApplicationPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryApplicationPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageHighScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageHighScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryRemoveUserSourceDependency",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryRemoveUserSourceDependency"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpedeFastPolling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpedeFastPolling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/IncrementalSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/IncrementalSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestVMUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestVMUpdate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LocalDiffDiskPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LocalDiffDiskPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/lowprioritysinglevm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/lowprioritysinglevm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedDisksPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedDisksPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedResourcesMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedResourcesMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MRProfile",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MRProfile"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/MultipleAvailabilityZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/MultipleAvailabilityZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NetworkPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NetworkPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NewAllocator",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NewAllocator"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NodeFlight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NodeFlight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OptOutScaleSetPipelinePreemption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OptOutScaleSetPipelinePreemption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OSUpgradeForServiceFabric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OSUpgradeForServiceFabric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/OverProvision",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/OverProvision"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverprovisionedExtensionDelay",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverprovisionedExtensionDelay"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalance",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalance"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithFDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithFDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PerfTestSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PerfTestSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ProximityPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ProximityPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RegionalUltraSSDVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RegionalUltraSSDVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RepairVMScaleSetInstancesPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RepairVMScaleSetInstancesPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/Reprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/Reprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePolicyOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePolicyOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RunScripts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RunScripts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEnablePremiumLRSReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEnablePremiumLRSReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/SpotMeterValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/SpotMeterValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/StandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/StandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TenantReserveActivate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TenantReserveActivate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TipNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TipNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraSSDWithVMSS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraSSDWithVMSS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionForVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionForVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionWithOSUpgrades",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionWithOSUpgrades"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UserImageSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UserImageSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VirtualMachineRuntimeServiceDisablePackageValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VirtualMachineRuntimeServiceDisablePackageValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMPipelineBatchingPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMPipelineBatchingPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewV2Access",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewV2Access"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ZRSImagesAndSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ZRSImagesAndSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ESXiDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ESXiDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MSvDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MSvDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SyncBookmark",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SyncBookmark"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DCSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DCSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/XLargeDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/XLargeDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DV3Sizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DV3Sizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGZ",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGZ"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLACC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLACC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DDAGen5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DDAGen5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ASeriesInternal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ASeriesInternal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Nested",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Nested"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Internal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Internal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Mv2SmallSizeSeries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Mv2SmallSizeSeries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorMultiFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorMultiFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorSingleFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorSingleFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedIdentityEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedIdentityEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoReserveActivateInColocation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoReserveActivateInColocation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ListOfPinnedFabricClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ListOfPinnedFabricClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/NPSSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/NPSSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EncryptionAtHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EncryptionAtHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TrustedVMBackfillEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TrustedVMBackfillEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchSubscriptionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchSubscriptionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/JediBetaTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/JediBetaTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CopyV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CopyV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CloudServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CloudServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithConfigurableRepairActions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithConfigurableRepairActions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SystemPriorityCopy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SystemPriorityCopy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisk512E",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisk512E"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGPhaseScaleOutCopies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGPhaseScaleOutCopies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForwardAzGatewayTags",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForwardAzGatewayTags"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreviewRebootless",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreviewRebootless"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGTrustedVM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGTrustedVM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithVMScaleSetsAtScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithVMScaleSetsAtScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradeSDPWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradeSDPWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoRollingUpgradeForSFAutoOSUpgrade",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoRollingUpgradeForSFAutoOSUpgrade"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseElasticPipelineOptimization",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseElasticPipelineOptimization"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.AzPE.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.AzPE.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointsRetrieveSAS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointsRetrieveSAS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservationOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservationOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMCustomImagePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMCustomImagePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPatchModeOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPatchModeOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutorotationForDiskEncryptionAtRest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutorotationForDiskEncryptionAtRest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMSSFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMSSFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMApps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMApps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTryRestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTryRestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointExcludeDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointExcludeDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMNetworkInterfaceConfigurations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMNetworkInterfaceConfigurations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotBlock",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotBlock"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LiveTierChange",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LiveTierChange"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EarlyStartVMSSRoleInstances",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EarlyStartVMSSRoleInstances"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMScaleSetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMScaleSetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisksMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisksMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowForceDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowForceDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CreateOptionClone",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CreateOptionClone"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForceDeletePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForceDeletePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedDisksForStandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedDisksForStandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoAssessmentVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoAssessmentVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SupportCurrentLinuxAgentOnly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SupportCurrentLinuxAgentOnly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVmssFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVmssFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseNrpPutVmssPerTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseNrpPutVmssPerTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTerminateScheduledEvent",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTerminateScheduledEvent"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CheckForVMEviction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CheckForVMEviction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraBuiltOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraBuiltOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLAV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLAV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SsdZrsManagedDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SsdZrsManagedDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Architecture",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Architecture"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSoftDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSoftDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Sig2SigInstantaneous",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Sig2SigInstantaneous"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CommunityGalleries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CommunityGalleries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMsForTrustedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMsForTrustedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseTenantsOfSizeFive",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseTenantsOfSizeFive"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGReplicateVMGS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGReplicateVMGS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGShallowReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGShallowReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpactfulExtensionUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpactfulExtensionUpdate"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PlatformSettingsOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PlatformSettingsOverride"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticExtensionUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticExtensionUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ ]
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowManagedDisksReplaceOSDisk?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-19814dc1af53254c88c4cb0453d99087-0d8441afe2015247-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "32a68c2281a6657cd3b6743c829693b3",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "301",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:42:37 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "cedd01dc-bd0d-40e7-b560-1e2156ce485d",
+ "x-ms-ratelimit-remaining-subscription-reads": "11991",
+ "x-ms-request-id": "westus2:77b8b3c7-4266-4e06-9fed-6c3377db07f9",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184237Z:cedd01dc-bd0d-40e7-b560-1e2156ce485d"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowManagedDisksReplaceOSDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowManagedDisksReplaceOSDisk"
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "1554876579",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/GetAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/GetAsync.json
new file mode 100644
index 0000000000000..4320ad0874c81
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/GetAsync.json
@@ -0,0 +1,5856 @@
+{
+ "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.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "ae5b9e41966009a36aa20313d1ffc4ae",
+ "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, 09 Jul 2021 18:42:36 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "da06052e-d1df-4702-a686-daf84eab3de3",
+ "x-ms-ratelimit-remaining-subscription-reads": "11994",
+ "x-ms-request-id": "da06052e-d1df-4702-a686-daf84eab3de3",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184236Z:da06052e-d1df-4702-a686-daf84eab3de3"
+ },
+ "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/providers/Microsoft.Compute?api-version=2019-10-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-3f28f1ef40550b4392e2638edc709d95-5e229d6d0383e647-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "2dae0de7dbf3a4ca3a24140c75b70450",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "54667",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:42:36 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "ddb0f1d6-35fa-4991-8d69-21ce15db6ec9",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-request-id": "ddb0f1d6-35fa-4991-8d69-21ce15db6ec9",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184237Z:ddb0f1d6-35fa-4991-8d69-21ce15db6ec9"
+ },
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "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-07-01",
+ "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": []
+ },
+ {
+ "location": "Switzerland North",
+ "zones": []
+ }
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ }
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-4c7793ecb925e549ab48686c8605bc40-be6fd1d30e5c004d-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "4ef1d091784d0410b1dc9ca06872f71f",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "56991",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:42:36 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "caff5d9b-60e9-4566-b4d8-884eae232a02",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-request-id": "westus2:b6a7af8e-2852-47bf-be45-c1b3968e0dbe",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184237Z:caff5d9b-60e9-4566-b4d8-884eae232a02"
+ },
+ "ResponseBody": {
+ "value": [
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowManagedDisksReplaceOSDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowManagedDisksReplaceOSDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/armApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/armApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticOSUpgradeWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticOSUpgradeWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AvailabilitySetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AvailabilitySetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzureVirtualMachineSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzureVirtualMachineSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AZBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AZBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/BatchGetTenantInformantionRequests",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/BatchGetTenantInformantionRequests"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsPlan",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsPlan"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalAdvancedSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalAdvancedSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CAPSImagePublishing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CAPSImagePublishing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalStandardSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalStandardSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CorPersistence",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CorPersistence"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DedicatedNodeGroup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DedicatedNodeGroup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/disableDisksAndSnapshotsPerRGLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/disableDisksAndSnapshotsPerRGLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DsmsSecrets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DsmsSecrets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EnableCrossSubscriptionWithKeyVaultResources",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EnableCrossSubscriptionWithKeyVaultResources"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ExtensionsFastpath",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ExtensionsFastpath"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableDeadMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableDeadMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateDiskCopyForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateDiskCopyForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.StopMigrateSkipDiskCopyForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.StopMigrateSkipDiskCopyForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.VMPreprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.VMPreprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/Fabric.UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/Fabric.UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/FastPollingOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/FastPollingOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Foobar",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Foobar"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageBigBlob",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageBigBlob"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryApplicationPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryApplicationPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageHighScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageHighScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryRemoveUserSourceDependency",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryRemoveUserSourceDependency"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpedeFastPolling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpedeFastPolling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/IncrementalSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/IncrementalSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestVMUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestVMUpdate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LocalDiffDiskPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LocalDiffDiskPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/lowprioritysinglevm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/lowprioritysinglevm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedDisksPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedDisksPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedResourcesMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedResourcesMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MRProfile",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MRProfile"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/MultipleAvailabilityZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/MultipleAvailabilityZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NetworkPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NetworkPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NewAllocator",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NewAllocator"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NodeFlight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NodeFlight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OptOutScaleSetPipelinePreemption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OptOutScaleSetPipelinePreemption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OSUpgradeForServiceFabric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OSUpgradeForServiceFabric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/OverProvision",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/OverProvision"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverprovisionedExtensionDelay",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverprovisionedExtensionDelay"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalance",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalance"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithFDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithFDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PerfTestSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PerfTestSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ProximityPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ProximityPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RegionalUltraSSDVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RegionalUltraSSDVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RepairVMScaleSetInstancesPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RepairVMScaleSetInstancesPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/Reprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/Reprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePolicyOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePolicyOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RunScripts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RunScripts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEnablePremiumLRSReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEnablePremiumLRSReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/SpotMeterValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/SpotMeterValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/StandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/StandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TenantReserveActivate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TenantReserveActivate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TipNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TipNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraSSDWithVMSS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraSSDWithVMSS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionForVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionForVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionWithOSUpgrades",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionWithOSUpgrades"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UserImageSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UserImageSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VirtualMachineRuntimeServiceDisablePackageValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VirtualMachineRuntimeServiceDisablePackageValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMPipelineBatchingPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMPipelineBatchingPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewV2Access",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewV2Access"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ZRSImagesAndSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ZRSImagesAndSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ESXiDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ESXiDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MSvDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MSvDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SyncBookmark",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SyncBookmark"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DCSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DCSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/XLargeDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/XLargeDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DV3Sizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DV3Sizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGZ",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGZ"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLACC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLACC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DDAGen5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DDAGen5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ASeriesInternal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ASeriesInternal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Nested",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Nested"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Internal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Internal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Mv2SmallSizeSeries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Mv2SmallSizeSeries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorMultiFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorMultiFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorSingleFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorSingleFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedIdentityEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedIdentityEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoReserveActivateInColocation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoReserveActivateInColocation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ListOfPinnedFabricClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ListOfPinnedFabricClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/NPSSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/NPSSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EncryptionAtHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EncryptionAtHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TrustedVMBackfillEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TrustedVMBackfillEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchSubscriptionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchSubscriptionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/JediBetaTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/JediBetaTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CopyV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CopyV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CloudServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CloudServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithConfigurableRepairActions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithConfigurableRepairActions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SystemPriorityCopy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SystemPriorityCopy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisk512E",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisk512E"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGPhaseScaleOutCopies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGPhaseScaleOutCopies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForwardAzGatewayTags",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForwardAzGatewayTags"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreviewRebootless",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreviewRebootless"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGTrustedVM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGTrustedVM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithVMScaleSetsAtScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithVMScaleSetsAtScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradeSDPWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradeSDPWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoRollingUpgradeForSFAutoOSUpgrade",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoRollingUpgradeForSFAutoOSUpgrade"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseElasticPipelineOptimization",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseElasticPipelineOptimization"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.AzPE.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.AzPE.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointsRetrieveSAS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointsRetrieveSAS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservationOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservationOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMCustomImagePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMCustomImagePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPatchModeOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPatchModeOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutorotationForDiskEncryptionAtRest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutorotationForDiskEncryptionAtRest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMSSFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMSSFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMApps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMApps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTryRestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTryRestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointExcludeDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointExcludeDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMNetworkInterfaceConfigurations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMNetworkInterfaceConfigurations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotBlock",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotBlock"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LiveTierChange",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LiveTierChange"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EarlyStartVMSSRoleInstances",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EarlyStartVMSSRoleInstances"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMScaleSetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMScaleSetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisksMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisksMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowForceDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowForceDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CreateOptionClone",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CreateOptionClone"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForceDeletePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForceDeletePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedDisksForStandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedDisksForStandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoAssessmentVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoAssessmentVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SupportCurrentLinuxAgentOnly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SupportCurrentLinuxAgentOnly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVmssFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVmssFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseNrpPutVmssPerTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseNrpPutVmssPerTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTerminateScheduledEvent",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTerminateScheduledEvent"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CheckForVMEviction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CheckForVMEviction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraBuiltOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraBuiltOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLAV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLAV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SsdZrsManagedDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SsdZrsManagedDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Architecture",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Architecture"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSoftDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSoftDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Sig2SigInstantaneous",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Sig2SigInstantaneous"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CommunityGalleries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CommunityGalleries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMsForTrustedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMsForTrustedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseTenantsOfSizeFive",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseTenantsOfSizeFive"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGReplicateVMGS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGReplicateVMGS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGShallowReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGShallowReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpactfulExtensionUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpactfulExtensionUpdate"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PlatformSettingsOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PlatformSettingsOverride"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticExtensionUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticExtensionUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ ]
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowManagedDisksReplaceOSDisk?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-9bcfb54072ec394a8e9ecfa8a87199b0-adcf73eb3db37a4f-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "32a68c2281a6657cd3b6743c829693b3",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "301",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:42:36 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "b8c16c90-15fd-448a-828b-dca5f25205b5",
+ "x-ms-ratelimit-remaining-subscription-reads": "11995",
+ "x-ms-request-id": "westus2:27d6f3a3-aa51-4223-beca-dcbfaa5ae4c1",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184237Z:b8c16c90-15fd-448a-828b-dca5f25205b5"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowManagedDisksReplaceOSDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowManagedDisksReplaceOSDisk"
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "1554876579",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/RegisterAndUnregister.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/RegisterAndUnregister.json
new file mode 100644
index 0000000000000..a02dd29cc95bd
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/RegisterAndUnregister.json
@@ -0,0 +1,3373 @@
+{
+ "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.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "b3167cf6d8789160acce7a1ede55d0a6",
+ "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, 09 Jul 2021 18:44:27 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "5726bf02-273d-486f-8d56-e5e1389b620e",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-request-id": "5726bf02-273d-486f-8d56-e5e1389b620e",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184428Z:5726bf02-273d-486f-8d56-e5e1389b620e"
+ },
+ "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/providers/Microsoft.Compute?api-version=2019-10-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-730dad39b7cf2744a2c82d2b35230ebd-26d082e8fdd2ba42-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "d2b7e53b9f14034b874d0ee433511b67",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "48325",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:44:27 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "69efe20f-7f90-4e09-90ed-d1b8bc587f75",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-request-id": "69efe20f-7f90-4e09-90ed-d1b8bc587f75",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184428Z:69efe20f-7f90-4e09-90ed-d1b8bc587f75"
+ },
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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, 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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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": "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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"
+ }
+ ],
+ "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",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "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-07-01",
+ "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",
+ "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-07-01",
+ "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",
+ "capabilities": "SupportsTags, SupportsLocation"
+ }
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-4688c7fe9d36114095eff315db020d3c-4bb9c2ed6c81c44f-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "f50fd73edf9f62b1bfa95f04fc4c8d6f",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "243",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:44:27 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "6f2be6c8-d5f9-4fbd-a385-34db42fe623c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-request-id": "westus2:6cdca1f8-282b-428c-b8da-b7a246c9e679",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184428Z:6f2be6c8-d5f9-4fbd-a385-34db42fe623c"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB/register?api-version=2015-12-01",
+ "RequestMethod": "POST",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-a2bc7afacf2d2e47ad14574cd51c24fd-d672a725c69ec24f-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "d6eed47c536357fb30122c2bca7b5d5b",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "243",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:44:28 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "e03ea264-c8e7-4011-a791-d699be2cc11a",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-request-id": "westus2:afbbab18-595d-4b6a-8656-5c4e0331841d",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184429Z:e03ea264-c8e7-4011-a791-d699be2cc11a"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB/unregister?api-version=2015-12-01",
+ "RequestMethod": "POST",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-45b8d379eb606943a7cede9912298776-b4c00ae858295f44-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "07e013b3da465c063355126b3f47073b",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "249",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:44:29 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "204317c2-3072-4838-9844-1d3b3aa9fdb0",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-request-id": "westus2:5e01962a-6bf0-47d8-9149-01fb4b76fca6",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184430Z:204317c2-3072-4838-9844-1d3b3aa9fdb0"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "Unregistering"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "102497493",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/RegisterAndUnregisterAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/RegisterAndUnregisterAsync.json
new file mode 100644
index 0000000000000..a19af5ff13aa4
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureOperationsTests/RegisterAndUnregisterAsync.json
@@ -0,0 +1,3373 @@
+{
+ "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.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "5730f917857f000d1cb3f17d2686f506",
+ "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, 09 Jul 2021 18:44:36 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "033bf0e1-51ae-426a-b03b-bb6ba4bd2bab",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-request-id": "033bf0e1-51ae-426a-b03b-bb6ba4bd2bab",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184437Z:033bf0e1-51ae-426a-b03b-bb6ba4bd2bab"
+ },
+ "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/providers/Microsoft.Compute?api-version=2019-10-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-de37261efeab214e8f2416e31c7ddb59-55aaa7dad2e9d849-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "b906fc516089b14035b80dc3140feb19",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "48325",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:44:37 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "43e5b913-bfd9-4fb8-918a-2736b6e21f19",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-request-id": "43e5b913-bfd9-4fb8-918a-2736b6e21f19",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184437Z:43e5b913-bfd9-4fb8-918a-2736b6e21f19"
+ },
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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, 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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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": "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-03-01",
+ "2018-10-01",
+ "2018-06-01",
+ "2018-04-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "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-07-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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-07-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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": [
+ "2021-03-01",
+ "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"
+ }
+ ],
+ "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",
+ "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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "2020-06-01",
+ "2019-12-01",
+ "2019-07-01",
+ "2019-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-07-01",
+ "2021-04-01",
+ "2021-03-01",
+ "2020-12-01",
+ "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-07-01",
+ "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",
+ "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-07-01",
+ "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",
+ "capabilities": "SupportsTags, SupportsLocation"
+ }
+ ],
+ "registrationState": "Registered",
+ "registrationPolicy": "RegistrationRequired"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-fbc85b446fb87141aa1071a50b2d8597-4eba84dfc174c24d-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "fd3e7621cca6f92c9961c3496e576d04",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "249",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:44:37 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "7e20035f-2892-4c38-a490-b8317d421b21",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-request-id": "westus2:aaf06045-ff7e-42f9-a555-4e1117255ff8",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184437Z:7e20035f-2892-4c38-a490-b8317d421b21"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "Unregistering"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB/register?api-version=2015-12-01",
+ "RequestMethod": "POST",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-851d9d666dd30e4db23e664208b67d32-a6474b025b375c4d-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "8abb5f0baa0eb67ab87f21c67849ec0c",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "243",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:44:37 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "9e317a4d-5229-487b-9138-000a7bee7393",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-request-id": "westus2:bc80879f-6e52-41ad-8d12-91c8148a09de",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184438Z:9e317a4d-5229-487b-9138-000a7bee7393"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ },
+ {
+ "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB/unregister?api-version=2015-12-01",
+ "RequestMethod": "POST",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-26b23defd089324b8f289ecf57ae1348-037b282c624f1b44-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "b05bd7c7f8478560cf0d1f289df642de",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "249",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:44:38 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "9fb3bef3-c6c5-4993-9585-44480ab37b6e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1198",
+ "x-ms-request-id": "westus2:0def7374-8c64-4540-a964-48a76bd5ba95",
+ "x-ms-routing-request-id": "WESTUS2:20210709T184439Z:9fb3bef3-c6c5-4993-9585-44480ab37b6e"
+ },
+ "ResponseBody": {
+ "properties": {
+ "state": "Unregistering"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "285288360",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace().json
index 5eea51e557764..7e32a889bc4e0 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace().json
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace().json
@@ -6,7 +6,8 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "traceparent": "00-b94e99d4d57f1e4faea69cd8c1cb75af-4903a4be8dfdf044-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.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"
},
@@ -16,15 +17,15 @@
"Cache-Control": "no-cache",
"Content-Length": "450",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 14 Jun 2021 23:38:25 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "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"
+ "x-ms-correlation-request-id": "ecf5bf95-ce6e-4973-aed8-455ca805f015",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-request-id": "ecf5bf95-ce6e-4973-aed8-455ca805f015",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:ecf5bf95-ce6e-4973-aed8-455ca805f015"
},
"ResponseBody": {
"id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c",
@@ -53,8 +54,8 @@
"Authorization": "Sanitized",
"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 )",
+ "traceparent": "00-d8ee6970bd66a44d8804e484e5262358-a8546553b910e74c-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.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"
},
@@ -67,15 +68,15 @@
"Cache-Control": "no-cache",
"Content-Length": "228",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 14 Jun 2021 23:38:25 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "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"
+ "x-ms-correlation-request-id": "ddc786d8-4111-479d-9bed-f88371c277b2",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-request-id": "ddc786d8-4111-479d-9bed-f88371c277b2",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:ddc786d8-4111-479d-9bed-f88371c277b2"
},
"ResponseBody": {
"id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9022",
@@ -88,61 +89,15 @@
}
}
},
- {
- "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-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": "450",
- "Content-Type": "application/json; charset=utf-8",
- "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": "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",
- "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/providers/Microsoft.NotAValidNameSpace123?api-version=2019-10-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "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",
+ "traceparent": "00-5b9ad6c0adfffc41bbc04e70b733181e-484a62f4255c8f4d-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.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,
@@ -151,16 +106,16 @@
"Cache-Control": "no-cache",
"Content-Length": "126",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 14 Jun 2021 23:38:26 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "7ef68835-9b58-4152-a0ae-f4113ef1fd97",
+ "x-ms-correlation-request-id": "cb1fe38e-fc7a-420e-b13d-d2e52410da81",
"x-ms-failure-cause": "gateway",
- "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"
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-request-id": "cb1fe38e-fc7a-420e-b13d-d2e52410da81",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:cb1fe38e-fc7a-420e-b13d-d2e52410da81"
},
"ResponseBody": {
"error": {
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace()Async.json
index d6d2f8ae4c7ed..e9bc63b40f6e8 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace()Async.json
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace()Async.json
@@ -6,8 +6,8 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "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 )",
+ "traceparent": "00-a48179c32ec38345a5d12bff099962e9-43fbcc606cdba34f-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.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"
},
@@ -17,15 +17,15 @@
"Cache-Control": "no-cache",
"Content-Length": "450",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 14 Jun 2021 23:38:25 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "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"
+ "x-ms-correlation-request-id": "bd1d42f6-6fbb-40ab-9598-9ff7b4a87271",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-request-id": "bd1d42f6-6fbb-40ab-9598-9ff7b4a87271",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:bd1d42f6-6fbb-40ab-9598-9ff7b4a87271"
},
"ResponseBody": {
"id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c",
@@ -54,8 +54,8 @@
"Authorization": "Sanitized",
"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 )",
+ "traceparent": "00-6903ed71be9a2b4199c3a544f18595bc-f86a21d03dfdce46-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.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"
},
@@ -68,15 +68,15 @@
"Cache-Control": "no-cache",
"Content-Length": "226",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 14 Jun 2021 23:38:25 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "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"
+ "x-ms-correlation-request-id": "75a4779f-d79c-4ad3-85c8-992c13b6577e",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-request-id": "75a4779f-d79c-4ad3-85c8-992c13b6577e",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:75a4779f-d79c-4ad3-85c8-992c13b6577e"
},
"ResponseBody": {
"id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg356",
@@ -89,60 +89,15 @@
}
}
},
- {
- "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-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": "450",
- "Content-Type": "application/json; charset=utf-8",
- "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": "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",
- "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/providers/Microsoft.NotAValidNameSpace123?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": "2e082036635b8d8e19032ac810dc1241",
+ "traceparent": "00-cbb460168ad1ae4b9e26704d85d6d237-676a76e06eeef541-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.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,
@@ -151,16 +106,16 @@
"Cache-Control": "no-cache",
"Content-Length": "126",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Mon, 14 Jun 2021 23:38:25 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "54fc7c13-c942-4745-909c-dce982f818c3",
+ "x-ms-correlation-request-id": "0c1d2d90-4bfb-4417-938f-30b4165d51f8",
"x-ms-failure-cause": "gateway",
- "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"
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-request-id": "0c1d2d90-4bfb-4417-938f-30b4165d51f8",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:0c1d2d90-4bfb-4417-938f-30b4165d51f8"
},
"ResponseBody": {
"error": {
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json
index 21ba6c8ce07c6..876d2db5d3005 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json
@@ -6,7 +6,7 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
"x-ms-client-request-id": "aa51013d54407fd4230a57392c708ca6",
"x-ms-return-client-request-id": "true"
},
@@ -16,15 +16,15 @@
"Cache-Control": "no-cache",
"Content-Length": "450",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 16 Jun 2021 00:01:05 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "44f7c27d-95da-4b95-beec-e1ff77ba967e",
- "x-ms-ratelimit-remaining-subscription-reads": "11980",
- "x-ms-request-id": "44f7c27d-95da-4b95-beec-e1ff77ba967e",
- "x-ms-routing-request-id": "WESTUS2:20210616T000106Z:44f7c27d-95da-4b95-beec-e1ff77ba967e"
+ "x-ms-correlation-request-id": "7606e529-de3a-4b7e-b962-c9945626ead7",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-request-id": "7606e529-de3a-4b7e-b962-c9945626ead7",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:7606e529-de3a-4b7e-b962-c9945626ead7"
},
"ResponseBody": {
"id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c",
@@ -53,8 +53,8 @@
"Authorization": "Sanitized",
"Content-Length": "34",
"Content-Type": "application/json",
- "traceparent": "00-5368264b331c0d40a5e7038698b80ebd-77e173e4ba070d4a-00",
- "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "traceparent": "00-0d6809e473ac534a989016fbcd9ceb7d-051b7d1a66445b40-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
"x-ms-client-request-id": "f7042e52bd2a4bb1f0cc1dc04b133791",
"x-ms-return-client-request-id": "true"
},
@@ -67,15 +67,15 @@
"Cache-Control": "no-cache",
"Content-Length": "228",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 16 Jun 2021 00:01:06 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "6b4c450a-a430-42cd-9b78-4afd27e7cc3b",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-request-id": "6b4c450a-a430-42cd-9b78-4afd27e7cc3b",
- "x-ms-routing-request-id": "WESTUS2:20210616T000107Z:6b4c450a-a430-42cd-9b78-4afd27e7cc3b"
+ "x-ms-correlation-request-id": "6e00be54-413c-4846-a558-b9f1c2b341e3",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-request-id": "6e00be54-413c-4846-a558-b9f1c2b341e3",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:6e00be54-413c-4846-a558-b9f1c2b341e3"
},
"ResponseBody": {
"id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1226",
@@ -89,12 +89,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers?$expand=metadata\u0026api-version=2019-10-01",
+ "RequestUri": "https://management.azure.com/providers/Microsoft.Resources?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 )",
+ "traceparent": "00-563c716ce87f9e4fa5c27429874dc742-2e7e3125e369dc4d-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
"x-ms-client-request-id": "9973a89644702293435b54b17472bbe6",
"x-ms-return-client-request-id": "true"
},
@@ -102,86785 +103,1258 @@
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "1339892",
+ "Content-Length": "17442",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 16 Jun 2021 00:01:08 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "58c41bf2-24bb-4d44-ac1e-4bfd17152899",
- "x-ms-ratelimit-remaining-subscription-reads": "11979",
- "x-ms-request-id": "58c41bf2-24bb-4d44-ac1e-4bfd17152899",
- "x-ms-routing-request-id": "WESTUS2:20210616T000109Z:58c41bf2-24bb-4d44-ac1e-4bfd17152899"
+ "x-ms-correlation-request-id": "d1234c51-07a4-4ecc-931d-f4e1660e95fb",
+ "x-ms-ratelimit-remaining-tenant-reads": "11999",
+ "x-ms-request-id": "d1234c51-07a4-4ecc-931d-f4e1660e95fb",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000334Z:d1234c51-07a4-4ecc-931d-f4e1660e95fb"
},
"ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.insights",
- "namespace": "microsoft.insights",
- "authorizations": [
- {
- "applicationId": "6bccf540-eb86-4037-af03-7fa058c2db75",
- "roleDefinitionId": "89dcede2-9219-403a-9723-d3c6473f9472"
- },
- {
- "applicationId": "11c174dc-1945-4a9a-a36b-c79a0f246b9b",
- "roleDefinitionId": "dd9d4347-f397-45f2-b538-85f21c90037b"
- },
- {
- "applicationId": "035f9e1d-4f00-4419-bf50-bf2d87eb4878",
- "roleDefinitionId": "323795fe-ba3d-4f5a-ad42-afb4e1ea9485"
- },
- {
- "applicationId": "f5c26e74-f226-4ae8-85f0-b4af0080ac9e",
- "roleDefinitionId": "529d7ae6-e892-4d43-809d-8547aeb90643"
- },
- {
- "applicationId": "b503eb83-1222-4dcc-b116-b98ed5216e05",
- "roleDefinitionId": "68699c37-c689-44d4-9248-494b782d46ae"
- },
- {
- "applicationId": "ca7f3f0b-7d91-482c-8e09-c5d840d0eac5",
- "roleDefinitionId": "5d5a2e56-9835-44aa-93db-d2f19e155438"
- },
- {
- "applicationId": "3af5a1e8-2459-45cb-8683-bcd6cccbcc13",
- "roleDefinitionId": "b1309299-720d-4159-9897-6158a61aee41"
- },
- {
- "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da",
- "roleDefinitionId": "d2eda64b-c5e6-4930-8642-2d80ecd7c2e2"
- },
- {
- "applicationId": "707be275-6b9d-4ee7-88f9-c0c2bd646e0f",
- "roleDefinitionId": "fa027d90-6ba0-4c33-9a54-59edaf2327e7"
- },
- {
- "applicationId": "461e8683-5575-4561-ac7f-899cc907d62a",
- "roleDefinitionId": "68699c37-c689-44d4-9248-494b782d46ae"
- },
- {
- "applicationId": "562db366-1b96-45d2-aa4a-f2148cef2240",
- "roleDefinitionId": "4109c8be-c1c8-4be0-af52-9d3c76c140ab"
- },
- {
- "applicationId": "e933bd07-d2ee-4f1d-933c-3752b819567b",
- "roleDefinitionId": "abbcfd44-e662-419a-9b5a-478f8e2f57c9"
- },
- {
- "applicationId": "f6b60513-f290-450e-a2f3-9930de61c5e7",
- "roleDefinitionId": "4ef11659-08ac-48af-98a7-25fb6b1e1bc4"
- },
- {
- "applicationId": "12743ff8-d3de-49d0-a4ce-6c91a4245ea0",
- "roleDefinitionId": "207b20a7-6802-4ae4-aaa2-1a36dd45bba0"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "components",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Canada Central",
- "Central India",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast",
- "Australia Central 2",
- "Germany West Central",
- "Switzerland West",
- "UAE Central",
- "UK West",
- "Japan West",
- "Brazil Southeast",
- "UAE North",
- "Australia Central",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-02-02-preview",
- "2020-02-02",
- "2018-05-01-preview",
- "2015-05-01",
- "2014-12-01-preview",
- "2014-08-01",
- "2014-04-01"
- ],
- "metadata": {
- "portal": {
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/ApplicationInsights.svg",
- "kinds": [
- {
- "kind": "web",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Web.svg",
- "blade": {
- "name": "AspNetOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "phone",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Phone.svg",
- "blade": {
- "name": "DeviceOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "store",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Store.svg",
- "blade": {
- "name": "DeviceOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "java",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Java.svg",
- "blade": {
- "name": "JavaWebOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "other",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/ApplicationInsights.svg",
- "blade": {
- "name": "OtherOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "android",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Android.svg",
- "blade": {
- "name": "DeviceOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "ios",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Ios.svg",
- "blade": {
- "name": "DeviceOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "devices",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Phone.svg",
- "blade": {
- "name": "DeviceOverview",
- "extension": "AppInsightsExtension"
- }
- }
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.AppId",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ApplicationInsights_PROD_",
- "sourceMdmNamespace": "ApplicationInsights"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "ApplicationInsights",
- "onbehalfSupportedLogCategories": [
- "AppAvailabilityResults",
- "AppBrowserTimings",
- "AppDependencies",
- "AppEvents",
- "AppExceptions",
- "AppMetrics",
- "AppPageViews",
- "AppPerformanceCounters",
- "AppRequests",
- "AppSystemEvents",
- "AppTraces"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "components/query",
- "locations": [],
- "apiVersions": [
- "2018-04-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "components/metadata",
- "locations": [],
- "apiVersions": [
- "2018-04-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "components/metrics",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "East US 2",
- "East Asia",
- "West US",
- "Central US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Australia Southeast",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2018-04-20",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "components/events",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "East US 2",
- "East Asia",
- "West US",
- "Central US",
- "South Africa North",
- "North Central US"
- ],
- "apiVersions": [
- "2018-04-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "webtests",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast",
- "Australia Central 2",
- "Germany West Central",
- "Switzerland West",
- "UAE Central",
- "UK West",
- "Brazil Southeast",
- "Japan West",
- "UAE North",
- "Australia Central",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2018-05-01-preview",
- "2015-05-01",
- "2014-08-01",
- "2014-04-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "webtests/getTestResultFile",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "East US 2",
- "East Asia",
- "West US",
- "Central US",
- "South Africa North",
- "North Central US"
- ],
- "apiVersions": [
- "2020-02-10-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "scheduledqueryrules",
- "locations": [
- "Global",
- "West Central US",
- "Australia East",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Japan East",
- "North Europe",
- "South Africa North",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US 2",
- "Central India",
- "Canada Central",
- "Australia Southeast",
- "South Central US",
- "Australia Central",
- "Korea Central",
- "East Asia",
- "West US",
- "North Central US",
- "Brazil South",
- "UK West",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Germany West Central",
- "Australia Central 2",
- "Brazil SouthEast",
- "Norway East",
- "UAE North",
- "Japan West",
- "South India",
- "France South",
- "Norway West"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-05-01-preview",
- "2018-04-16",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-04-16",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "components/pricingPlans",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "migrateToNewPricingModel",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "rollbackToLegacyPricingModel",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listMigrationdate",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "logprofiles",
- "locations": [],
- "apiVersions": [
- "2016-03-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "migratealertrules",
- "locations": [],
- "apiVersions": [
- "2018-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "metricalerts",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2018-03-01",
- "2017-09-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "alertrules",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2016-03-01",
- "2015-04-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "autoscalesettings",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "Australia East",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2015-04-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2015-04-01",
- "operations": "2015-04-01"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Autoscale",
- "onbehalfSupportedLogCategories": [
- "AutoscaleEvaluations",
- "AutoscaleScaleActions"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "eventtypes",
- "locations": [],
- "apiVersions": [
- "2017-03-01-preview",
- "2016-09-01-preview",
- "2015-04-01",
- "2014-11-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2015-04-01",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [],
- "apiVersions": [
- "2015-04-01",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "vmInsightsOnboardingStatuses",
- "locations": [],
- "apiVersions": [
- "2018-11-27-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-04-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "diagnosticSettings",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01-preview",
- "2017-05-01-preview",
- "2016-09-01",
- "2015-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-09-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "diagnosticSettingsCategories",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01-preview",
- "2017-05-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "extendedDiagnosticSettings",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2017-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-02-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "metricDefinitions",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Canada East",
- "Canada Central",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "North Europe",
- "West US 2",
- "Jio India West",
- "West US 3",
- "West Central US",
- "Korea South",
- "Korea Central",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2018-01-01",
- "2017-12-01-preview",
- "2017-09-01-preview",
- "2017-05-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-01-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "logDefinitions",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central"
- ],
- "apiVersions": [
- "2015-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-07-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "eventCategories",
- "locations": [],
- "apiVersions": [
- "2015-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "metrics",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Canada East",
- "Canada Central",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "North Europe",
- "West US 2",
- "Jio India West",
- "West US 3",
- "West Central US",
- "Korea South",
- "Korea Central",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2019-07-01",
- "2018-01-01",
- "2017-12-01-preview",
- "2017-09-01-preview",
- "2017-05-01-preview",
- "2016-09-01",
- "2016-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-01-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "metricbatch",
- "locations": [],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "metricNamespaces",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Canada East",
- "Canada Central",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "North Europe",
- "West US 2",
- "Jio India West",
- "West US 3",
- "West Central US",
- "Korea South",
- "Korea Central",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2017-12-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "actiongroups",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-06-01",
- "2019-03-01",
- "2018-09-01",
- "2018-03-01",
- "2017-04-01",
- "2017-03-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "activityLogAlerts",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2017-04-01",
- "2017-03-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "baseline",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Canada East",
- "Canada Central",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "North Europe",
- "Norway East",
- "Germany West Central",
- "Switzerland North",
- "West US 2",
- "West Central US",
- "Korea South",
- "Korea Central",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01",
- "2017-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "metricbaselines",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Canada East",
- "Canada Central",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "North Europe",
- "Norway East",
- "Germany West Central",
- "Switzerland North",
- "West US 2",
- "West Central US",
- "Korea South",
- "Korea Central",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2019-03-01",
- "2018-09-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "calculatebaseline",
- "locations": [],
- "apiVersions": [
- "2018-09-01",
- "2017-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "workbooks",
- "locations": [
- "West Europe",
- "South Central US",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West US 2",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "Canada Central",
- "Central India",
- "UK South",
- "UK West",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast",
- "Australia Central 2",
- "Germany West Central",
- "Switzerland West",
- "UAE Central",
- "Japan West",
- "Brazil Southeast",
- "UAE North",
- "Australia Central",
- "France South",
- "South India",
- "West Central US",
- "West US 3",
- "Korea South"
- ],
- "apiVersions": [
- "2021-03-08",
- "2020-10-20",
- "2020-02-12",
- "2018-06-17-preview",
- "2018-06-01-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da"
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workbooktemplates",
- "locations": [
- "West Europe",
- "South Central US",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West US 2",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "Canada Central",
- "Central India",
- "UK South",
- "UK West",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast",
- "Australia Central 2",
- "Germany West Central",
- "Switzerland West",
- "UAE Central",
- "Japan West",
- "Brazil Southeast",
- "UAE North",
- "Australia Central",
- "France South",
- "South India",
- "West Central US",
- "West US 3",
- "Korea South"
- ],
- "apiVersions": [
- "2020-11-20",
- "2019-10-17-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "myWorkbooks",
- "locations": [
- "West Europe",
- "South Central US",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Canada Central",
- "Central India",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2021-03-08",
- "2020-10-20",
- "2020-02-12",
- "2018-06-17-preview",
- "2018-06-15-preview",
- "2018-06-01-preview",
- "2016-06-15-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da"
- }
- },
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "logs",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "Australia Central",
- "South Africa North"
- ],
- "apiVersions": [
- "2018-08-01-preview",
- "2018-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "transactions",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "East US 2",
- "East Asia",
- "West US",
- "Central US",
- "South Africa North",
- "North Central US"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "topology",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "East US 2",
- "East Asia",
- "West US",
- "Central US",
- "South Africa North",
- "North Central US"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "generateLiveToken",
- "locations": [],
- "apiVersions": [
- "2020-06-02-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "dataCollectionRules",
- "locations": [
- "Australia Southeast",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Central India",
- "Germany West Central",
- "North Central US",
- "South Central US",
- "East US",
- "Central US",
- "West Europe",
- "West US 2",
- "Southeast Asia",
- "East US 2",
- "UK South",
- "North Europe",
- "West US",
- "Australia Central",
- "West Central US",
- "East Asia",
- "UK West",
- "Korea Central",
- "France Central",
- "South Africa North",
- "Switzerland North",
- "Australia Central 2",
- "Brazil Southeast",
- "France South",
- "Norway West",
- "UAE North",
- "Japan West",
- "Norway East",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2019-11-01-preview"
- ],
- "defaultApiVersion": "2019-11-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dataCollectionRuleAssociations",
- "locations": [
- "Australia Southeast",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Central India",
- "Germany West Central",
- "North Central US",
- "South Central US",
- "East US",
- "Central US",
- "West Europe",
- "West US 2",
- "Southeast Asia",
- "East US 2",
- "UK South",
- "North Europe",
- "West US",
- "Australia Central",
- "West Central US",
- "East Asia",
- "UK West",
- "Korea Central",
- "France Central",
- "South Africa North",
- "Switzerland North",
- "Brazil South",
- "Australia Central 2",
- "Brazil Southeast",
- "Canada East",
- "France South",
- "Korea South",
- "Norway West",
- "UAE North",
- "Japan West",
- "Norway East",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2019-11-01-preview"
- ],
- "defaultApiVersion": "2019-11-01-preview",
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "privateLinkScopes",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateLinkScopes/privateEndpointConnections",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateLinkScopes/privateEndpointConnectionProxies",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateLinkScopes/scopedResources",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "components/linkedstorageaccounts",
- "locations": [
- "East US",
- "West Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Canada Central",
- "Central India",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateLinkScopeOperationStatuses",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "monitoringServiceProperties": {
- "mdsAccount": "MdsGeneric",
- "mdsEnvironment": null
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2015-07-01",
- "components": "2015-05-01",
- "autoscalesettings": "2015-04-01",
- "operations": "2015-04-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzMonitoringAutoscale",
- "sourceMdmNamespace": "AzureMonitoring/Autoscale"
- }
- ]
- }
- },
- "notifications": {
- "sources": [
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmsas1",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- },
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmsas2",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- },
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmsus1",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- },
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmsus2",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- },
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmseu1",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- },
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmseu2",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- }
- ]
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": ""
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ContainerRegistry",
- "namespace": "Microsoft.ContainerRegistry",
- "authorizations": [
- {
- "applicationId": "6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26",
- "roleDefinitionId": "78e18383-93eb-418a-9887-bc9271046576"
- },
- {
- "applicationId": "737d58c1-397a-46e7-9d12-7d8c830883c2",
- "roleDefinitionId": "716bb53a-0390-4428-bf41-b1bedde7d751"
- },
- {
- "applicationId": "918d0db8-4a38-4938-93c1-9313bdfe0272",
- "roleDefinitionId": "dcd2d2c9-3f80-4d72-95a8-2593111b4b12"
- },
- {
- "applicationId": "d2fa1650-4805-4a83-bcb9-cf41fe63539c",
- "roleDefinitionId": "c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"
- },
- {
- "applicationId": "a4c95b9e-3994-40cc-8953-5dc66d48348d",
- "roleDefinitionId": "dc88c655-90fa-48d9-8d51-003cc8738508"
- },
- {
- "applicationId": "62c559cd-db0c-4da0-bab2-972528c65d42",
- "roleDefinitionId": "437b639a-6d74-491d-959f-d172e8c5c1fc"
- },
- {
- "applicationId": "a3747411-ce7c-4888-9ddc-3a230786ca19",
- "roleDefinitionId": "b29ead14-d6d9-4957-bdf1-494b07fe2e87"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "registries",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-03-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/connectedRegistries",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/connectedRegistries/deactivate",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/scopeMaps",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/tokens",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/generateCredentials",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/privateEndpointConnections",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/privateEndpointConnectionProxies",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/privateEndpointConnectionProxies/validate",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/privateLinkResources",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/importImage",
- "locations": [
- "South Central US",
- "West Central US",
- "East US",
- "West Europe",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/exportPipelines",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "registries/importPipelines",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "registries/pipelineRuns",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/listBuildSourceUploadUrl",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/scheduleRun",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/runs",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/taskRuns",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "defaultApiVersion": "2019-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "registries/taskRuns/listDetails",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/agentPools",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Europe"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "defaultApiVersion": "2019-06-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/agentPools/listQueueStatus",
- "locations": [
- "East US",
- "West US 2",
- "South Central US",
- "Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/runs/listLogSasUrl",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/runs/cancel",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/tasks",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2019-04-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/tasks/listDetails",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/getBuildSourceUploadUrl",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/queueBuild",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/builds",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/builds/getLogLink",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/builds/cancel",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/buildTasks",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/buildTasks/listSourceRepositoryProperties",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/buildTasks/steps",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/buildTasks/steps/listBuildArguments",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/replications",
- "locations": [
- "South Central US",
- "West Central US",
- "East US",
- "West Europe",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/webhooks",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/webhooks/ping",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/webhooks/getCallbackConfig",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/webhooks/listEvents",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/setupAuth",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/authorize",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "France Central",
- "Central US",
- "South Africa North",
- "UAE North",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/GetCredentials",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2016-06-27-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/listCredentials",
- "locations": [
- "South Central US",
- "East US",
- "West US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/regenerateCredential",
- "locations": [
- "South Central US",
- "West US",
- "East US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/listUsages",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/listPolicies",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/updatePolicies",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/regenerateCredentials",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2016-06-27-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/eventGridFilters",
- "locations": [
- "South Central US",
- "West Central US",
- "East US",
- "West Europe",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "South Central US",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-06-01-preview",
- "2017-03-01",
- "2016-06-27-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "South Central US",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-06-01-preview",
- "2017-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "South Central US",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-06-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-10-01",
- "operations": "2017-10-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftContainerRegistryShoebox",
- "sourceMdmNamespace": "MicrosoftContainerRegistryMdmNamespace"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.ContainerRegistry",
- "onbehalfSupportedLogCategories": [
- "ContainerRegistryRepositoryEvents",
- "ContainerRegistryLoginEvents"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "d2fa1650-4805-4a83-bcb9-cf41fe63539c"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ContainerService",
- "namespace": "Microsoft.ContainerService",
- "authorizations": [
- {
- "applicationId": "7319c514-987d-4e9b-ac3d-d38c4f427f4c",
- "roleDefinitionId": "1b4a0c7f-2217-416f-acfa-cf73452fdc1c",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635",
- "managedByAuthorization": {
- "allowManagedByInheritance": true
- }
- },
- {
- "applicationId": "6dae42f8-4368-4678-94ff-3960e28e3630",
- "roleDefinitionId": "831388fc-33b1-4dd1-b64c-40fdcaf96654"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "containerServices",
- "locations": [
- "Japan East",
- "Central US",
- "East US 2",
- "Japan West",
- "East Asia",
- "South Central US",
- "North Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Southeast Asia",
- "West US",
- "West Europe",
- "North Europe",
- "East US",
- "UK West",
- "UK South",
- "West Central US",
- "West US 2",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "Korea South",
- "Korea Central",
- "South Africa North"
- ],
- "apiVersions": [
- "2017-07-01",
- "2017-01-31",
- "2016-09-30",
- "2016-03-30"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managedClusters",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "France Central",
- "France South",
- "Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "West US",
- "West US 2",
- "Australia East",
- "Australia Central",
- "North Europe",
- "Japan East",
- "Japan West",
- "East US 2",
- "South Central US",
- "North Central US",
- "Southeast Asia",
- "Australia Southeast",
- "UK West",
- "South India",
- "Central India",
- "East Asia",
- "Korea South",
- "Korea Central",
- "South Africa North",
- "Brazil South",
- "Brazil Southeast",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "UAE North",
- "UAE Central",
- "Norway East",
- "Norway West",
- "West US 3",
- "Jio India Central",
- "Jio India West",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2021-02-01",
- "2020-12-01",
- "2020-11-01",
- "2020-09-01",
- "2020-07-01",
- "2020-06-01",
- "2020-04-01",
- "2020-03-01",
- "2020-02-01",
- "2020-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-08-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-08-01-preview",
- "2018-03-31",
- "2017-08-31"
- ],
- "defaultApiVersion": "2019-04-01",
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "openShiftManagedClusters",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "France Central",
- "Canada East",
- "Southeast Asia",
- "Japan East"
- ],
- "apiVersions": [
- "2019-09-30-preview",
- "2019-04-30"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/openShiftClusters",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "Canada East",
- "Southeast Asia",
- "Japan East"
- ],
- "apiVersions": [
- "2019-09-30-preview",
- "2019-04-30",
- "2018-09-30-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2017-08-31",
- "2017-01-31",
- "2016-09-30",
- "2016-03-30",
- "2015-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "East US",
- "West Europe",
- "France Central",
- "France South",
- "Central US",
- "UK West",
- "West Central US",
- "West US",
- "West US 2",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "Korea South",
- "Korea Central",
- "UK South",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "North Europe",
- "Japan East",
- "Japan West",
- "East US 2",
- "South Central US",
- "North Central US",
- "Southeast Asia",
- "East Asia",
- "South Africa North",
- "Brazil South",
- "Brazil Southeast",
- "Australia Central 2",
- "Jio India Central",
- "Jio India West",
- "West US 3",
- "Germany North",
- "Germany West Central",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UAE Central",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2017-08-31",
- "2016-03-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "France Central",
- "France South",
- "East US",
- "West Europe",
- "Central US",
- "Canada East",
- "UK West",
- "UK South",
- "West Central US",
- "West US 2",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Korea South",
- "Korea Central",
- "West US",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "North Europe",
- "Japan East",
- "Japan West",
- "East US 2",
- "South Central US",
- "North Central US",
- "Southeast Asia",
- "East Asia",
- "South Africa North",
- "Brazil South",
- "Brazil Southeast",
- "Australia Central 2",
- "Jio India Central",
- "Jio India West",
- "West US 3",
- "Germany North",
- "Germany West Central",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UAE Central",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2016-03-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-10-31",
- "2018-03-31",
- "2017-08-31",
- "2017-07-01",
- "2017-01-31",
- "2016-09-30",
- "2016-03-30",
- "2015-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/orchestrators",
- "locations": [
- "East US",
- "West Europe",
- "France Central",
- "France South",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "West Central US",
- "West US",
- "West US 2",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "North Europe",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "East US 2",
- "South Central US",
- "North Central US",
- "Southeast Asia",
- "South India",
- "Central India",
- "East Asia",
- "South Africa North",
- "Brazil South",
- "Brazil Southeast",
- "Australia Central 2",
- "Jio India Central",
- "Jio India West",
- "West US 3",
- "Germany North",
- "Germany West Central",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UAE Central",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2021-02-01",
- "2020-12-01",
- "2020-11-01",
- "2020-09-01",
- "2020-07-01",
- "2020-06-01",
- "2020-04-01",
- "2020-03-01",
- "2020-02-01",
- "2020-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-08-01",
- "2019-06-01",
- "2019-04-01",
- "2017-09-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/osOptions",
- "locations": [
- "East US",
- "West Europe",
- "France Central",
- "France South",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "West Central US",
- "West US",
- "West US 2",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "North Europe",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "East US 2",
- "South Central US",
- "North Central US",
- "Southeast Asia",
- "South India",
- "Central India",
- "East Asia",
- "South Africa North",
- "Brazil South",
- "Brazil Southeast",
- "Australia Central 2",
- "Jio India Central",
- "Jio India West",
- "West US 3",
- "Germany North",
- "Germany West Central",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UAE Central",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "7319c514-987d-4e9b-ac3d-d38c4f427f4c"
- },
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-08-31",
- "operations": "2017-07-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AKSCustomerData"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftContainerServiceShoebox",
- "sourceMdmNamespace": "Prometheus"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AKSCustomerData",
- "onbehalfSupportedLogCategories": [
- "kube-apiserver",
- "kube-controller-manager",
- "kube-scheduler",
- "kube-audit",
- "guard"
- ]
- }
- ],
- "categories": [
- {
- "Name": "cluster-autoscaler"
- },
- {
- "Name": "guard"
- },
- {
- "Name": "kube-apiserver"
- },
- {
- "Name": "kube-audit"
- },
- {
- "Name": "kube-controller-manager"
- },
- {
- "Name": "kube-scheduler"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Sql",
- "namespace": "Microsoft.Sql",
- "authorizations": [
- {
- "applicationId": "e4ab13ed-33cb-41b4-9140-6e264582cf85",
- "roleDefinitionId": "ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"
- },
- {
- "applicationId": "0130cc9f-7ac5-4026-bd5f-80a08a54e6d9",
- "roleDefinitionId": "45e8abf8-0ec4-44f3-9c37-cff4f7779302"
- },
- {
- "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d",
- "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29"
- },
- {
- "applicationId": "76c7f279-7959-468f-8943-3954880e0d8c",
- "roleDefinitionId": "7f7513a8-73f9-4c5f-97a2-c41f0ea783ef",
- "managedByRoleDefinitionId": "f2f79976-90be-4501-89c6-7caf12474683"
- },
- {
- "applicationId": "022907d3-0f1b-48f7-badc-1ba6abab6d66"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capabilities",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/databaseAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/databaseOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/keys",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/encryptionProtector",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/encryptionProtectorOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/encryptionProtectorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceKeyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceKeyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceEncryptionProtectorOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceEncryptionProtectorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/tdeCertificates",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/tdeCertAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/tdeCertOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01",
- "2014-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/databases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-01-01",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "metadata": {
- "portal": {
- "kinds": [
- {
- "kind": "system",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "v12.0,system",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "v12.0,user"
- },
- {
- "kind": "v12.0,user,vcore"
- },
- {
- "kind": "v12.0,user,datawarehouse",
- "blade": {
- "name": "DataWarehouseBlade",
- "extension": "SqlAzureExtension"
- }
- },
- {
- "kind": "v12.0,user,stretch",
- "blade": {
- "name": "StretchDatabaseBlade",
- "extension": "SqlAzureExtension"
- }
- }
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2014-01-01"
- },
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftSqlShoebox",
- "sourceMdmNamespace": "MicrosoftSql"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "logFilterPathSelector": "kind",
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "onbehalfSupportedLogCategories": [
- "SQLInsights",
- "AutomaticTuning",
- "QueryStoreRuntimeStatistics",
- "QueryStoreWaitStatistics",
- "Errors",
- "DatabaseWaitStatistics",
- "Timeouts",
- "Blocks",
- "Deadlocks",
- "DmsWorkers",
- "ExecRequests",
- "RequestSteps",
- "SqlRequests",
- "Waits"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/serviceObjectives",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/communicationLinks",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/administrators",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/administratorOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverAdministratorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverAdministratorOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/restorableDroppedDatabases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/recoverableDatabases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/geoBackupPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/import",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/importExportOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/operationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/backupLongTermRetentionPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/backupShortTermRetentionPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databaseSecurityPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/automaticTuning",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/automaticTuning",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/transparentDataEncryption",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/ledgerDigestUploads",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/ledgerDigestUploadsOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/recommendedElasticPools",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/dataMaskingPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/dataMaskingPolicies/rules",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/securityAlertPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/securityAlertPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/auditingSettings",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/auditingSettings",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/extendedAuditingSettings",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/devOpsAuditingSettings",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/auditingSettingsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/auditingSettingsOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/extendedAuditingSettingsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/extendedAuditingSettingsOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/devOpsAuditingSettingsOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/devOpsAuditingSettingsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/elasticPoolAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/elasticPoolOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/elasticpools",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-09-01-preview",
- "2015-05-01-preview",
- "2015-05-01",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2014-01-01"
- },
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftSqlShoebox",
- "sourceMdmNamespace": "MicrosoftSqlElasticPools"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "mdsEnvironment": "prod"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/jobAccounts",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/jobAgents",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/jobAgentOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/jobAgentAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/jobAgents/jobs",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/jobAgents/jobs/steps",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/jobAgents/jobs/executions",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/disasterRecoveryConfiguration",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/dnsAliases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/dnsAliasAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/dnsAliasOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/failoverGroups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/failoverGroupAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/failoverGroupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/firewallRulesOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/firewallRulesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/virtualNetworkRules",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/virtualNetworkRulesOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/virtualNetworkRulesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnetsOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/databaseRestoreAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/usages",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/metricDefinitions",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/metrics",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/aggregatedDatabaseMetrics",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/elasticpools/metrics",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/elasticpools/metricdefinitions",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/topQueries",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/topQueries/queryText",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/advisors",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/elasticPools/advisors",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/advisors",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/extensions",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/elasticPoolEstimates",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/auditRecords",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/VulnerabilityAssessmentScans",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/workloadGroups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/vulnerabilityAssessments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/vulnerabilityAssessments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/databases/vulnerabilityAssessments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/vulnerabilityAssessments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/VulnerabilityAssessmentSettings",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/VulnerabilityAssessment",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/vulnerabilityAssessmentScanAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/vulnerabilityAssessmentScanOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/recommendedSensitivityLabels",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/syncGroups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/syncGroups/syncMembers",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/syncAgents",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "instancePools",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/importExportOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-08-01",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/importExportAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-08-01",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instancePoolOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instancePoolAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2014-01-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftSqlShoebox",
- "sourceMdmNamespace": "MicrosoftSqlManagedInstance"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "onbehalfSupportedLogCategories": [
- "ResourceUsageStats"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managedInstances/administrators",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/databases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2014-01-01"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "onbehalfSupportedLogCategories": [
- "SQLInsights",
- "QueryStoreRuntimeStatistics",
- "QueryStoreWaitStatistics",
- "Errors"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managedInstances/recoverableDatabases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/metrics",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/metricDefinitions",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/databases/backupLongTermRetentionPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/sqlAgent",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstancePrivateEndpointConnectionProxyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstancePrivateEndpointConnectionOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionManagedInstances",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionManagedInstanceBackups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceLongTermRetentionPolicyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionManagedInstanceBackupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseRestoreAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseRestoreOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseCompleteRestoreAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseCompleteRestoreOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedServerSecurityAlertPoliciesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/tdeCertificates",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceTdeCertAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceTdeCertOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedServerSecurityAlertPoliciesOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualClusters",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/virtualClusterAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/virtualClusterOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/syncGroupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/syncMemberOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/syncAgentOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/syncDatabaseIds",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionServers",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionBackups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionPolicyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionBackupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionBackupAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/shortTermRetentionPolicyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedShortTermRetentionPolicyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceFailoverGroups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceFailoverGroupAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceFailoverGroupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/outboundFirewallRulesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/outboundFirewallRulesOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/notifyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverTrustGroups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverTrustGroupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverTrustGroupAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseMoveOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseMoveAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/connectionPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2014-01-01",
- "servers/databases": "2018-06-01-preview",
- "servers/elasticpools": "2018-06-01-preview",
- "managedInstances": "2018-06-01-preview",
- "managedInstances/databases": "2017-03-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftSqlShoebox",
- "sourceMdmNamespace": "MicrosoftSql"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "mdsEnvironment": "prod"
- }
- ]
- }
- }
- },
- "Microsoft.managedIdentity": {
- "applicationId": "0a929f38-4ca4-4168-8d99-4a4fa344fb98"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Logic",
- "namespace": "Microsoft.Logic",
- "authorization": {
- "applicationId": "7cd684f4-8a78-49b0-91ec-6a35d38739ba",
- "roleDefinitionId": "cb3ef1fb-6e31-49e2-9d87-ed821053fe58"
- },
- "resourceTypes": [
- {
- "resourceType": "workflows",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Brazil Southeast",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-05-01",
- "2018-07-01-preview",
- "2017-07-01",
- "2016-10-01",
- "2016-06-01",
- "2015-08-01-preview",
- "2015-02-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLogic"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "LogicApp",
- "sourceMdmNamespace": "FlowMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLogic",
- "onbehalfSupportedLogCategories": [
- "WorkflowRuntime"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/workflows",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Brazil Southeast",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-05-01",
- "2018-07-01-preview",
- "2017-07-01",
- "2016-10-01",
- "2016-06-01",
- "2015-08-01-preview",
- "2015-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "North Central US"
- ],
- "apiVersions": [
- "2019-05-01",
- "2018-07-01-preview",
- "2017-07-01",
- "2016-10-01",
- "2016-06-01",
- "2015-08-01-preview",
- "2015-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Brazil Southeast",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-05-01",
- "2018-07-01-preview",
- "2017-07-01",
- "2016-10-01",
- "2016-06-01",
- "2015-08-01-preview",
- "2015-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "integrationAccounts",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Brazil Southeast",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-05-01",
- "2018-07-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLogic",
- "onbehalfSupportedLogCategories": [
- "IntegrationAccountTrackingEvents"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "integrationServiceEnvironments",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "Canada Central",
- "West US 2",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-05-01",
- "2018-07-01-preview",
- "2018-03-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-07-01-preview",
- "operations": "2016-06-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLogic"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "LogicApp",
- "sourceMdmNamespace": "FlowISEMetrics"
- }
- ]
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.integrationServiceEnvironmentId"
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "integrationServiceEnvironments/managedApis",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-05-01",
- "2018-07-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-07-01-preview",
- "operations": "2016-06-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLogic"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "LogicApp",
- "sourceMdmNamespace": "FlowISEMetrics"
- }
- ]
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.integrationServiceEnvironmentId"
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "7cd684f4-8a78-49b0-91ec-6a35d38739ba"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-06-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "LogicApp",
- "sourceMdmNamespace": "FlowMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Portal",
- "namespace": "Microsoft.Portal",
- "resourceTypes": [
- {
- "resourceType": "dashboards",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "Switzerland West",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2020-09-01-alpha",
- "2019-01-01-preview",
- "2018-10-01-preview",
- "2015-08-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "tenantconfigurations",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "Switzerland West",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listTenantConfigurationViolations",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "Switzerland West",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East"
- ],
- "apiVersions": [
- "2015-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-04-01-preview",
- "2018-10-01",
- "2017-12-01-preview",
- "2017-08-01-preview",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "consoles",
- "locations": [],
- "apiVersions": [
- "2020-04-01-preview",
- "2018-10-01",
- "2017-12-01-preview",
- "2017-08-01-preview",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/consoles",
- "locations": [
- "West US",
- "East US",
- "Central India",
- "North Europe",
- "West Europe",
- "South Central US",
- "Southeast Asia",
- "East US 2",
- "Central US"
- ],
- "apiVersions": [
- "2020-04-01-preview",
- "2018-10-01",
- "2017-12-01-preview",
- "2017-08-01-preview",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "userSettings",
- "locations": [],
- "apiVersions": [
- "2020-04-01-preview",
- "2018-10-01",
- "2017-12-01-preview",
- "2017-08-01-preview",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/userSettings",
- "locations": [
- "West US",
- "East US",
- "Central India",
- "North Europe",
- "West Europe",
- "South Central US",
- "Southeast Asia",
- "East US 2",
- "Central US"
- ],
- "apiVersions": [
- "2020-04-01-preview",
- "2018-10-01",
- "2017-12-01-preview",
- "2017-08-01-preview",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OperationsManagement",
- "namespace": "Microsoft.OperationsManagement",
- "authorization": {
- "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77",
- "roleDefinitionId": "aa249101-6816-4966-aafa-08175d795f14"
- },
- "resourceTypes": [
- {
- "resourceType": "solutions",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia East",
- "Australia Central",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central Us",
- "East Us 2",
- "East Asia",
- "West Us",
- "South Central Us",
- "North Central US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Australia Central 2",
- "Germany West Central",
- "Japan West",
- "UAE North",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2015-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managementconfigurations",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia East",
- "Australia Central",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central Us",
- "East Us 2",
- "East Asia",
- "West Us",
- "South Central Us",
- "North Central US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2015-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managementassociations",
- "locations": [],
- "apiVersions": [
- "2015-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "views",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia East",
- "Australia Central",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central Us",
- "East Us 2",
- "East Asia",
- "West Us",
- "South Central Us",
- "North Central US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2017-08-21-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AppConfiguration",
- "namespace": "Microsoft.AppConfiguration",
- "authorizations": [
- {
- "applicationId": "35ffadb3-7fc1-497e-b61b-381d28e744cc",
- "roleDefinitionId": "fffa409e-a8cc-4cbf-8e1c-6d940b33040e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "configurationStores",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "configurationStores/keyValues",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "configurationStores/eventGridFilters",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "35ffadb3-7fc1-497e-b61b-381d28e744cc"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-10-01",
- "operations": "2021-03-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "AppConfig",
- "sourceMdmNamespace": "AzConfig"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.AppConfiguration",
- "onbehalfSupportedLogCategories": [
- "HttpRequest",
- "Audit"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HardwareSecurityModules",
- "namespace": "Microsoft.HardwareSecurityModules",
- "authorizations": [
- {
- "applicationId": "0eb690b7-d23e-4fb0-b43e-cd161ac80cc3",
- "roleDefinitionId": "48397dc8-3910-486a-8165-ab2df987447f"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-10-31-preview",
- "2018-10-31"
- ],
- "defaultApiVersion": "2018-10-31",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "West US 2",
- "South India",
- "Central India",
- "Japan East",
- "Japan West",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2018-10-31-preview",
- "2018-10-31"
- ],
- "defaultApiVersion": "2018-10-31",
- "capabilities": "None"
- },
- {
- "resourceType": "dedicatedHSMs",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "South India",
- "Central India",
- "Japan East",
- "Japan West",
- "Switzerland North",
- "Switzerland West",
- "South Central US",
- "West US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2018-10-31-preview",
- "2018-10-31"
- ],
- "defaultApiVersion": "2018-10-31",
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": []
- },
- {
- "location": "West Europe",
- "zones": []
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": []
- },
- {
- "location": "North Europe",
- "zones": []
- },
- {
- "location": "East US",
- "zones": []
- },
- {
- "location": "UK South",
- "zones": []
- },
- {
- "location": "Japan East",
- "zones": []
- },
- {
- "location": "Australia East",
- "zones": []
- },
- {
- "location": "South Central US",
- "zones": []
- },
- {
- "location": "Canada Central",
- "zones": []
- },
- {
- "location": "Central India",
- "zones": []
- },
- {
- "location": "East Asia",
- "zones": []
- }
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "South India",
- "Central India",
- "Japan East",
- "Japan West",
- "Switzerland North",
- "Switzerland West",
- "South Central US",
- "West US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2018-10-31-preview",
- "2018-10-31"
- ],
- "defaultApiVersion": "2018-10-31",
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WindowsIoT",
- "namespace": "Microsoft.WindowsIoT",
- "resourceTypes": [
- {
- "resourceType": "DeviceServices",
- "locations": [
- "West US",
- "East US"
- ],
- "apiVersions": [
- "2019-06-01",
- "2018-02-16-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2019-06-01",
- "2018-02-16-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforPostgreSQL",
- "namespace": "Microsoft.DBforPostgreSQL",
- "authorizations": [
- {
- "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d",
- "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29"
- },
- {
- "applicationId": "93efed00-6552-4119-833a-422b297199f9",
- "roleDefinitionId": "a864a0a2-ab66-47a6-97a8-223dc1379f87"
- },
- {
- "applicationId": "5ed8fe41-c1bc-4c06-a531-d91e1f1c2fac",
- "roleDefinitionId": "95173bdd-3b59-46f3-be65-7cee4193b078"
- },
- {
- "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serversv2",
- "locations": [
- "East US 2",
- "East US",
- "North Central US",
- "Canada Central",
- "Australia East",
- "UK South",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "North Europe"
- ],
- "apiVersions": [
- "2018-03-29-privatepreview"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "MicrosoftSqlElasticServersShoebox",
- "sourceMdmNamespace": "MicrosoftOrcasBreadthServers"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "onbehalfSupportedLogCategories": [
- "PostgreSQLLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serverGroupsv2",
- "locations": [
- "East US 2",
- "East US",
- "North Central US",
- "Canada Central",
- "Australia East",
- "UK South",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "North Europe"
- ],
- "apiVersions": [
- "2020-10-05-privatepreview"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDBForPGHyperShoeboxProd",
- "sourceMdmNamespace": "CustomerFacingMetrics"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "onbehalfSupportedLogCategories": [
- "PostgreSQLLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serverGroups",
- "locations": [
- "East US 2",
- "East US",
- "North Central US",
- "Canada Central",
- "Australia East",
- "UK South",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "North Europe"
- ],
- "apiVersions": [
- "2018-03-29-privatepreview"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "flexibleServers",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Korea Central",
- "Japan East",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "West US",
- "West US 2",
- "West Europe"
- ],
- "apiVersions": [
- "2021-04-10-privatepreview",
- "2020-11-05-preview",
- "2020-02-14-privatepreview",
- "2020-02-14-preview"
- ],
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": []
- },
- {
- "location": "Canada Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Brazil South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Korea Central",
- "zones": []
- },
- {
- "location": "Norway East",
- "zones": []
- }
- ],
- "metadata": {
- "portal": {
- "kinds": []
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDBForPGFlexShoeboxProd",
- "sourceMdmNamespace": "CustomerFacingMetrics"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "onbehalfSupportedLogCategories": [
- "PostgreSQLLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "37ef5504-7ac2-4c18-ad5a-09b4c66ce5f9"
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/capabilities",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-11-05-preview",
- "2020-02-14-privatepreview",
- "2020-02-14-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-11-05-preview",
- "2020-02-14-privatepreview",
- "2020-02-14-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/recoverableServers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/virtualNetworkRules",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "getPrivateDnsZoneSuffix",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Europe",
- "North Central US",
- "Norway East",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-31-privatepreview",
- "2020-10-05-privatepreview",
- "2018-03-29-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/azureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkVirtualNetworkSubnetUsage",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan West",
- "Japan East",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-11-05-preview",
- "2020-02-14-privatepreview",
- "2020-02-14-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/performanceTiers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/topQueryStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/queryTexts",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/waitStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/resetQueryPerformanceInsightData",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/advisors",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateLinkResources",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnections",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnectionProxies",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/keys",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-12-01",
- "serversv2": "2018-03-29-privatepreview",
- "flexibleServers": "2020-02-14-privatepreview",
- "serverGroupsv2": "2020-10-05-privatepreview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "AzureDBProduction",
- "sourceMdmNamespace": "MicrosoftSqlElasticServers"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "onbehalfSupportedLogCategories": [
- "PostgreSQLLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.managedIdentity": {
- "applicationId": "c39e7899-4b62-43a9-8a02-3f99028555f9"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DesktopVirtualization",
- "namespace": "Microsoft.DesktopVirtualization",
- "authorizations": [
- {
- "applicationId": "50e95039-b200-4007-bc97-8d5790743a63",
- "roleDefinitionId": "CAD30215-AD1C-43BF-BE90-7BFA8B493E62"
- },
- {
- "applicationId": "9cdead84-a844-4324-93f2-b2e6bb768d07"
- },
- {
- "applicationId": "a85cf173-4192-42f8-81fa-777a763e6e2c"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-01-23-preview",
- "operations": "2019-01-23-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.DesktopVirtualization",
- "onbehalfSupportedLogCategories": [
- "Feed"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationgroups",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationgroups/applications",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationgroups/desktops",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationgroups/startmenuitems",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostpools",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-01-23-preview",
- "operations": "2019-01-23-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.DesktopVirtualization",
- "onbehalfSupportedLogCategories": [
- "Connection",
- "HostRegistration",
- "AgentHealthStatus"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "hostpools/msixpackages",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostpools/sessionhosts",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostpools/sessionhosts/usersessions",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostpools/usersessions",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "scalingplans",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "build": "",
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-12-10-preview",
- "operations": "2019-12-10-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.DesktopVirtualization",
- "onbehalfSupportedLogCategories": [
- "Management",
- "Checkpoint",
- "Error"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Attestation",
- "namespace": "Microsoft.Attestation",
- "authorizations": [
- {
- "applicationId": "c61423b7-1d1f-430d-b444-0eee53298103",
- "roleDefinitionId": "7299b0b1-11da-4858-8943-7db197005959"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "attestationProviders",
- "locations": [
- "East US 2",
- "Central US",
- "UK South",
- "East US",
- "Canada Central",
- "Canada East",
- "UK West",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-10-01",
- "2018-09-01-preview",
- "2018-09-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "attestationProviders": "2018-09-01-preview",
- "operations": "2018-09-01-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Attestation",
- "onbehalfSupportedLogCategories": [
- "INF",
- "WRN",
- "ERR",
- "AuditEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "defaultProviders",
- "locations": [
- "East US 2",
- "Central US",
- "UK South",
- "East US",
- "Canada Central",
- "Canada East",
- "UK West",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-10-01",
- "2018-09-01-preview",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-10-01",
- "2018-09-01-preview",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/defaultProvider",
- "locations": [
- "East US 2",
- "Central US",
- "UK South",
- "East US",
- "Canada Central",
- "Canada East",
- "UK West",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-10-01",
- "2018-09-01-preview",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-10-01",
- "2018-09-01-preview",
- "2018-09-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "attestationProviders": "2018-09-01-preview",
- "operations": "2018-09-01-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Attestation",
- "onbehalfSupportedLogCategories": [
- "INF",
- "WRN",
- "ERR",
- "AuditEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.GuestConfiguration",
- "namespace": "Microsoft.GuestConfiguration",
- "authorizations": [
- {
- "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9",
- "roleDefinitionId": "9c6ffa40-421e-4dc0-9739-76b0699a11de"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "guestConfigurationAssignments",
- "locations": [],
- "apiVersions": [
- "2020-06-25",
- "2018-11-20",
- "2018-06-30-preview",
- "2018-01-20-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "software",
- "locations": [
- "East US 2",
- "South Central US"
- ],
- "apiVersions": [
- "2018-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "softwareUpdates",
- "locations": [
- "East US 2",
- "South Central US"
- ],
- "apiVersions": [
- "2018-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "softwareUpdateProfile",
- "locations": [
- "East US 2",
- "South Central US"
- ],
- "apiVersions": [
- "2018-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-06-25",
- "2018-11-20",
- "2018-06-30-preview",
- "2018-01-20-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftGuestConfiguration"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "mdsEnvironment": "prod",
- "serviceIdentity": "MicrosoftGuestConfiguration"
- }
- ]
- },
- "version": "1.0"
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Relay",
- "namespace": "Microsoft.Relay",
- "authorizations": [
- {
- "applicationId": "91bb937c-29c2-4275-982f-9465f0caf03d",
- "roleDefinitionId": "6ea9e989-a5f4-4187-8d11-c8db3dd04da1"
- },
- {
- "applicationId": "80369ed6-5f11-4dd9-bef3-692475845e77"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "namespaces",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2016-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "namespaces/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/privateEndpointConnections",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/hybridconnections",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/hybridconnections/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/wcfrelays",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/wcfrelays/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01"
- ],
- "defaultApiVersion": "2017-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-04-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.metricId",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "servicebus",
- "sourceMdmNamespace": "OperationQoSMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus",
- "onbehalfSupportedLogCategories": [
- "HybridConnectionsLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Communication",
- "namespace": "Microsoft.Communication",
- "authorizations": [
- {
- "applicationId": "632ec9eb-fad7-4cbd-993a-e72973ba2acc",
- "roleDefinitionId": "6c5c31b0-3a00-47ea-9555-f233670ba313"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "CommunicationServices",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "defaultApiVersion": "2020-08-20-preview",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "CommunicationServices/eventGridFilters",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "defaultApiVersion": "2020-08-20-preview",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "defaultApiVersion": "2020-08-20-preview",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/operationStatuses",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "CheckNameAvailability",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataShare",
- "namespace": "Microsoft.DataShare",
- "authorization": {
- "applicationId": "799f1985-1517-4fe1-af2b-ba3d87d4996b",
- "roleDefinitionId": "0146496b-e06f-439a-83be-49fac884edf5"
- },
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-11-01",
- "operations": "2018-11-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataShare"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDataShareShoebox",
- "sourceMdmNamespace": "RP"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataShare",
- "onbehalfsupportedLogCategories": [
- "Shares",
- "ShareSubcriptions",
- "SentShareSnapshots",
- "ReceivedShareSnapshots"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/shares",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/shares/datasets",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/shares/synchronizationSettings",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/shares/invitations",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/sharesubscriptions",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/shares/providersharesubscriptions",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/sharesubscriptions/datasetmappings",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/sharesubscriptions/triggers",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/sharesubscriptions/consumerSourceDataSets",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listinvitations",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "Southeast Asia",
- "UK South",
- "West Central US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-11-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East US 2"
- ],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-09-01",
- "2019-11-01",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/rejectInvitation",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-09-01",
- "2019-11-01",
- "2018-11-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/consumerInvitations",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-09-01",
- "2019-11-01",
- "2018-11-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-09-01",
- "2019-11-01",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "799f1985-1517-4fe1-af2b-ba3d87d4996b"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-11-01",
- "operations": "2018-11-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataShare"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDataShareShoebox",
- "sourceMdmNamespace": "RP"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SignalRService",
- "namespace": "Microsoft.SignalRService",
- "authorizations": [
- {
- "applicationId": "cdad765c-f191-43ba-b9f5-7aef392f811d",
- "roleDefinitionId": "346b504e-4aec-45d1-be25-a6e10f3cb4fe"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "SignalR",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "WebPubSub",
- "locations": [
- "East US",
- "North Europe",
- "Southeast Asia",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-05-01"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "WebPubSub",
- "onbehalfSupportedLogCategories": [
- "AllLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Central US EUAP",
- "West Central US",
- "West US 2",
- "East US",
- "East US 2",
- "West US",
- "Central US"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "SignalR/eventGridFilters",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "SignalR": "2018-10-01",
- "WebPubSub": "2021-04-01-preview",
- "operations": "2018-10-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.SignalRService"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSignalRServiceShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.SignalRService",
- "onbehalfSupportedLogCategories": [
- "AllLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "cdad765c-f191-43ba-b9f5-7aef392f811d"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforMySQL",
- "namespace": "Microsoft.DBforMySQL",
- "authorizations": [
- {
- "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d",
- "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29"
- },
- {
- "applicationId": "e6f9f783-1fdb-4755-acaf-abed6c642885",
- "roleDefinitionId": "a864a0a2-ab66-47a6-97a8-223dc1379f87"
- },
- {
- "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "flexibleServers",
- "locations": [
- "East US 2",
- "West US 2",
- "Brazil South",
- "France Central",
- "Southeast Asia",
- "North Europe",
- "AUSTRALIA EAST",
- "JAPAN EAST",
- "KOREA CENTRAL",
- "UK SOUTH",
- "WEST EUROPE",
- "CANADA CENTRAL",
- "CENTRAL US",
- "EAST US",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-07-01-privatepreview",
- "2020-07-01-preview"
- ],
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "CENTRAL US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "WEST EUROPE",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "EAST US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK SOUTH",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "JAPAN EAST",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "AUSTRALIA EAST",
- "zones": []
- },
- {
- "location": "CANADA CENTRAL",
- "zones": []
- },
- {
- "location": "Brazil South",
- "zones": []
- },
- {
- "location": "KOREA CENTRAL",
- "zones": []
- }
- ],
- "metadata": {
- "portal": {
- "kinds": []
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-07-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDBForMySQLFlexShoeboxProd",
- "sourceMdmNamespace": "CustomerFacingMetrics"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "onbehalfSupportedLogCategories": [
- "MySqlSlowLogs",
- "MySqlAuditLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "cb43afba-eb6b-4cef-bf00-758b6c233beb"
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/recoverableServers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "Central India",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/virtualNetworkRules",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capabilities",
- "locations": [
- "East US 2",
- "West US 2",
- "Brazil South",
- "France Central",
- "Southeast Asia",
- "North Europe",
- "AUSTRALIA EAST",
- "JAPAN EAST",
- "KOREA CENTRAL",
- "UK SOUTH",
- "WEST EUROPE",
- "CANADA CENTRAL",
- "CENTRAL US",
- "EAST US",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-07-01-privatepreview",
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-07-01-privatepreview",
- "2020-07-01-preview",
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkVirtualNetworkSubnetUsage",
- "locations": [
- "East US 2",
- "West US 2",
- "Brazil South",
- "France Central",
- "Southeast Asia",
- "North Europe",
- "AUSTRALIA EAST",
- "JAPAN EAST",
- "KOREA CENTRAL",
- "UK SOUTH",
- "WEST EUROPE",
- "CANADA CENTRAL",
- "CENTRAL US",
- "EAST US",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-07-01-privatepreview",
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/azureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/performanceTiers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "UAE North",
- "Norway East",
- "Switzerland North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/topQueryStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/queryTexts",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/waitStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/resetQueryPerformanceInsightData",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/advisors",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateLinkResources",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnections",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnectionProxies",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/keys",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/start",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/stop",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/upgrade",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-12-01",
- "flexibleServers": "2020-07-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "AzureDBProduction",
- "sourceMdmNamespace": "MicrosoftSqlElasticServers"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "onbehalfSupportedLogCategories": [
- "MySqlSlowLogs",
- "MySqlAuditLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.managedIdentity": {
- "applicationId": "ff39e39d-6b44-4bd0-8ef5-a4d02e0e53f6"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache",
- "namespace": "Microsoft.Cache",
- "authorization": {
- "applicationId": "96231a05-34ce-4eb4-aa6a-70759cbb5e83",
- "roleDefinitionId": "4f731528-ba85-45c7-acfb-cd0a9b3cf31b"
- },
- "resourceTypes": [
- {
- "resourceType": "Redis",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-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": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Redis/privateEndpointConnectionProxies",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Redis/privateEndpointConnectionProxies/validate",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Redis/privateEndpointConnections",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Redis/privateLinkResources",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/asyncOperations",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-12-01",
- "2020-06-01",
- "2020-04-01-preview",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "South India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2020-04-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01-alpha",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-12-01",
- "2020-10-01-preview",
- "2020-06-01",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01-alpha",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "redisEnterprise",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2020-04-01-preview"
- }
- ],
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central India",
- "zones": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftCache"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "RedisEnterpriseAzureMonitor",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "RedisEnterprise/privateEndpointConnectionProxies",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RedisEnterprise/privateEndpointConnectionProxies/validate",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RedisEnterprise/privateEndpointConnectionProxies/operationresults",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RedisEnterprise/privateEndpointConnections",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RedisEnterprise/privateEndpointConnections/operationresults",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RedisEnterprise/privateLinkResources",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "redisEnterprise/databases",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "Redis/EventGridFilters",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "South India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "Korea Central",
- "Korea South",
- "France South",
- "France Central",
- "Australia Central",
- "Australia Central 2",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany North",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftCache"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "redisinsightsprod",
- "sourceMdmNamespace": "ShoeBox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network",
- "namespace": "Microsoft.Network",
- "authorizations": [
- {
- "applicationId": "2cf9eb86-36b5-49dc-86ae-9a63135dfa8c",
- "roleDefinitionId": "13ba9ab4-19f0-4804-adc4-14ece36cc7a1"
- },
- {
- "applicationId": "7c33bfcb-8d33-48d6-8e60-dc6404003489",
- "roleDefinitionId": "ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"
- },
- {
- "applicationId": "1e3e4475-288f-4018-a376-df66fd7fac5f",
- "roleDefinitionId": "1d538b69-3d87-4e56-8ff8-25786fd48261"
- },
- {
- "applicationId": "a0be0c72-870e-46f0-9c49-c98333a996f7",
- "roleDefinitionId": "7ce22727-ffce-45a9-930c-ddb2e56fa131"
- },
- {
- "applicationId": "486c78bf-a0f7-45f1-92fd-37215929e116",
- "roleDefinitionId": "98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"
- },
- {
- "applicationId": "19947cfd-0303-466c-ac3c-fcc19a7a1570",
- "roleDefinitionId": "d813ab6c-bfb7-413e-9462-005b21f0ce09"
- },
- {
- "applicationId": "341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd",
- "roleDefinitionId": "8141843c-c51c-4c1e-a5bf-0d351594b86c"
- },
- {
- "applicationId": "328fd23b-de6e-462c-9433-e207470a5727",
- "roleDefinitionId": "79e29e06-4056-41e5-a6b2-959f1f47747e"
- },
- {
- "applicationId": "6d057c82-a784-47ae-8d12-ca7b38cf06b4",
- "roleDefinitionId": "c27dd31e-c1e5-4ab0-93e1-a12ba34f182e"
- },
- {
- "applicationId": "b4ca0290-4e73-4e31-ade0-c82ecfaabf6a",
- "roleDefinitionId": "18363e25-ff21-4159-ae8d-7dfecb5bd001"
- },
- {
- "applicationId": "79d7fb34-4bef-4417-8184-ff713af7a679",
- "roleDefinitionId": "1c1f11ef-abfa-4abe-a02b-226771d07fc7"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "virtualNetworks",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "CNSec",
- "onbehalfSupportedLogCategories": [
- "VMProtectionAlerts"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "virtualNetworks/taggedTrafficConsumers",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "natGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01"
- ],
- "defaultApiVersion": "2020-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": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "slbv2",
- "sourceMdmNamespace": "NatService"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "publicIPAddresses",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": []
- },
- {
- "location": "South Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Canada Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "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": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "metrics": {
- "metricsFilterPathSelector": "sku.name",
- "mdsInfo": [
- {
- "serviceIdentity": "NetMon"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "CNS",
- "sourceMdmNamespace": "ShoeboxProd"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "NetMon",
- "onbehalfSupportedLogCategories": [
- "DDoSProtectionNotifications",
- "DDoSMitigationFlowLogs",
- "DDoSMitigationReports"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "customIpPrefixes",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-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": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "NetMon"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "CNS",
- "sourceMdmNamespace": "BYOIP"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "NetMon",
- "onbehalfSupportedLogCategories": [
- "BYOIPNotifications",
- "BYOIPReports"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkInterfaces",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-04-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "VfpMdm",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dscpConfigurations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateEndpoints",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "VNetMDMShoebox",
- "sourceMdmNamespace": "VNetAzureMonitoring"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateEndpointRedirectMaps",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "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": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "loadBalancers",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "NetMon",
- "onbehalfSupportedLogCategories": [
- "LoadBalancerAlertEvents",
- "LoadBalancerProbeHealthStatus"
- ]
- }
- ]
- },
- "metrics": {
- "metricsFilterPathSelector": "sku.name",
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "slbv2",
- "sourceMdmNamespace": "Health"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkSecurityGroups",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "LNMAgentService",
- "onbehalfSupportedLogCategories": [
- "NetworkSecurityGroupEvent",
- "NetworkSecurityGroupRuleCounter",
- "NetworkSecurityGroupFlowEvent"
- ]
- }
- ],
- "categories": [
- {
- "Name": "NetworkSecurityGroupFlowEvent",
- "requiredFeatures": [
- "Microsoft.Network/AllowNsgFlowLogging"
- ],
- "excludeFromEventHub": true
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationSecurityGroups",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serviceEndpointPolicies",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkIntentPolicies",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "routeTables",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "publicIPPrefixes",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01"
- ],
- "defaultApiVersion": "2020-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": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ddosCustomPolicies",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkWatchers",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkWatchers/connectionMonitors",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "NetworkAnalytics",
- "sourceMdmNamespace": "NodePluginHost"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkWatchers/flowLogs",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkWatchers/pingMeshes",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "NetAnalyticsPingMesh",
- "sourceMdmNamespace": "PingMesh"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "virtualNetworkGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "metricsFilterPathSelector": "properties.gatewayType",
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "BrkGWTShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid",
- "onbehalfSupportedLogCategories": [
- "GatewayDiagnosticLog",
- "TunnelDiagnosticLog",
- "RouteDiagnosticLog",
- "IKEDiagnosticLog",
- "P2SDiagnosticLog"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "localNetworkGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "connections",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "HybridGWShoeboxProd",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-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": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-09-01"
- },
- "metrics": {
- "metricsFilterPathSelector": "properties.sku.tier",
- "mdmInfo": [
- {
- "sourceMdmAccount": "AppGWT",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureApplicationGatewayService",
- "onbehalfSupportedLogCategories": [
- "ApplicationGatewayAccessLog",
- "ApplicationGatewayPerformanceLog",
- "ApplicationGatewayFirewallLog"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationGatewayWebApplicationFirewallPolicies",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/CheckDnsNameAvailability",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/setLoadBalancerFrontendPublicIpAddresses",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/virtualNetworkAvailableEndpointServices",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/availableDelegations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serviceTags",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/availablePrivateEndpointTypes",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/availableServiceAliases",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkPrivateLinkServiceVisibility",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/autoApprovedPrivateLinkServices",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/batchValidatePrivateEndpointsForResourceMove",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/batchNotifyPrivateEndpointsForResourceMove",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/supportedVirtualMachineSizes",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/setAzureNetworkManagerConfiguration",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/getAzureNetworkManagerConfiguration",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkAcceleratedNetworkingSupport",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/validateResourceOwnership",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/setResourceOwnership",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/effectiveResourceOwnership",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-04-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-04-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-04-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "CloudDNSShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dnsOperationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnsOperationStatuses",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "getDnsResourceReference",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "internalNotify",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/A",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/AAAA",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/CNAME",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/PTR",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/MX",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/TXT",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/SRV",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/SOA",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/NS",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/CAA",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/recordsets",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/all",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "PrivateDnsShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateDnsZones/virtualNetworkLinks",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateDnsOperationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsOperationStatuses",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZonesInternal",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01"
- ],
- "defaultApiVersion": "2020-01-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/A",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/AAAA",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/CNAME",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/PTR",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/MX",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/TXT",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/SRV",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/SOA",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/all",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "virtualNetworks/privateDnsZoneLinks",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "trafficmanagerprofiles",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-08-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2017-05-01",
- "2017-03-01",
- "2015-11-01",
- "2015-04-28-preview"
- ],
- "defaultApiVersion": "2018-08-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "TrafficManagerShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "TrafficManager",
- "onbehalfSupportedLogCategories": [
- "ProbeHealthStatusEvents"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "trafficmanagerprofiles/heatMaps",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-08-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkTrafficManagerNameAvailability",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-08-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2017-05-01",
- "2017-03-01",
- "2015-11-01",
- "2015-04-28-preview"
- ],
- "defaultApiVersion": "2018-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "trafficManagerUserMetricsKeys",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-08-01",
- "2018-04-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "trafficManagerGeographicHierarchies",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-08-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2017-05-01",
- "2017-03-01"
- ],
- "defaultApiVersion": "2018-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "expressRouteCircuits",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "metricsFilterPathSelector": "properties.globalReachEnabled",
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureERShoeboxProd",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid",
- "onbehalfSupportedLogCategories": [
- "PeeringRouteLog"
- ]
- }
- ]
- },
- "apiVersions": {
- "bastionHosts": "2019-08-01"
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "expressRouteServiceProviders",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationGatewayAvailableWafRuleSets",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationGatewayAvailableSslOptions",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationGatewayAvailableServerVariables",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationGatewayAvailableRequestHeaders",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationGatewayAvailableResponseHeaders",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "routeFilters",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "bgpServiceCommunities",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualWans",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "vpnSites",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "vpnServerConfigurations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "virtualHubs",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "vpnGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "BrkGWTShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid",
- "onbehalfSupportedLogCategories": [
- "GatewayDiagnosticLog",
- "TunnelDiagnosticLog",
- "RouteDiagnosticLog",
- "IKEDiagnosticLog"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "p2sVpnGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "BrkGWTShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid",
- "onbehalfSupportedLogCategories": [
- "GatewayDiagnosticLog",
- "IKEDiagnosticLog",
- "P2SDiagnosticLog"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "expressRouteGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureERShoeboxProd",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "expressRoutePortsLocations",
- "locations": [
- "France Central"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "firewallPolicies",
- "locations": [
- "UAE North",
- "Australia Central 2",
- "UAE Central",
- "Germany North",
- "Central India",
- "Korea South",
- "Switzerland North",
- "Switzerland West",
- "Japan West",
- "France South",
- "South Africa West",
- "West India",
- "Canada East",
- "South India",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "South Africa North",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Brazil South",
- "Brazil Southeast",
- "Japan East",
- "UK West",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West Central US",
- "South Central US",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "UK South",
- "East US 2",
- "West US 2",
- "North Central US",
- "Canada Central",
- "France Central",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01"
- ],
- "defaultApiVersion": "2020-04-01",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "328fd23b-de6e-462c-9433-e207470a5727"
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ipGroups",
- "locations": [
- "UAE North",
- "Australia Central 2",
- "UAE Central",
- "Germany North",
- "Central India",
- "Korea South",
- "Switzerland North",
- "Switzerland West",
- "Japan West",
- "France South",
- "South Africa West",
- "West India",
- "Canada East",
- "South India",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "South Africa North",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Brazil South",
- "Japan East",
- "UK West",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "South Central US",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "UK South",
- "East US 2",
- "West US 2",
- "North Central US",
- "Canada Central",
- "France Central",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "azureWebCategories",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/nfvOperations",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/nfvOperationResults",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "securityPartnerProviders",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "azureFirewalls",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "France Central",
- "Australia Central",
- "Japan West",
- "Japan East",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "defaultApiVersion": "2020-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": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-06-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFirewall"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureFirewallShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFirewall",
- "onbehalfSupportedLogCategories": [
- "AzureFirewallApplicationRule",
- "AzureFirewallNetworkRule",
- "AzureFirewallDnsProxy"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "azureFirewallFqdnTags",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualNetworkTaps",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateLinkServices",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "VNetMDMShoebox",
- "sourceMdmNamespace": "VNetAzureMonitoring"
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/privateLinkServices",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ddosProtectionPlans",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkProfiles",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "frontdoorOperationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-11-01",
- "2020-07-01",
- "2020-05-01",
- "2020-04-01",
- "2020-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkFrontdoorNameAvailability",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-07-01",
- "2020-05-01",
- "2020-01-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "frontdoors",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-07-01",
- "2020-05-01",
- "2020-04-01",
- "2020-01-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureFrontdoorShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor",
- "onbehalfSupportedLogCategories": [
- "FrontdoorAccessLog",
- "FrontdoorWebApplicationFirewallLog"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "frontdoors/frontendEndpoints",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-07-01",
- "2020-05-01",
- "2020-04-01",
- "2020-01-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "frontdoors/frontendEndpoints/customHttpsConfiguration",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-07-01",
- "2020-05-01",
- "2020-04-01",
- "2020-01-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "frontdoorWebApplicationFirewallPolicies",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-11-01",
- "2020-04-01",
- "2019-10-01",
- "2019-03-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-11-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "frontdoorWebApplicationFirewallManagedRuleSets",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-11-01",
- "2020-04-01",
- "2019-10-01",
- "2019-03-01"
- ],
- "defaultApiVersion": "2020-11-01",
- "capabilities": "None"
- },
- {
- "resourceType": "networkExperimentProfiles",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "West US 2",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2019-11-01"
- ],
- "defaultApiVersion": "2019-11-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/bareMetalTenants",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "bastionHosts",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureBastionHostService"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "BrkBastionHost",
- "sourceMdmNamespace": "BrkBastion"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureBastionHostService",
- "onbehalfSupportedLogCategories": [
- "BastionAuditLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "virtualRouters",
- "locations": [
- "UAE North",
- "Australia Central 2",
- "UAE Central",
- "Germany North",
- "Central India",
- "Korea South",
- "Switzerland North",
- "Switzerland West",
- "Japan West",
- "France South",
- "South Africa West",
- "West India",
- "Canada East",
- "South India",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "South Africa North",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Brazil South",
- "Japan East",
- "UK West",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West Central US",
- "South Central US",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "UK South",
- "East US 2",
- "West US 2",
- "North Central US",
- "Canada Central",
- "France Central",
- "Central US"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01"
- ],
- "defaultApiVersion": "2020-04-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureERShoeboxProd",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkVirtualAppliances",
- "locations": [
- "UAE North",
- "Australia Central 2",
- "UAE Central",
- "Germany North",
- "Central India",
- "Korea South",
- "Switzerland North",
- "Switzerland West",
- "Japan West",
- "France South",
- "South Africa West",
- "West India",
- "Canada East",
- "South India",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "South Africa North",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Brazil South",
- "Japan East",
- "UK West",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West Central US",
- "South Central US",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "UK South",
- "East US 2",
- "West US 2",
- "North Central US",
- "Canada Central",
- "France Central",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01"
- ],
- "defaultApiVersion": "2020-04-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureERShoeboxProd",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ipAllocations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/commitInternalAzureNetworkManagerConfiguration",
- "locations": [
- "West Central US",
- "North Central US",
- "West US",
- "West Europe",
- "UAE Central",
- "Germany North",
- "East US",
- "West India",
- "East US 2",
- "Australia Central",
- "Australia Central 2",
- "South Africa West",
- "Brazil South",
- "UK West",
- "North Europe",
- "Central US",
- "UAE North",
- "Germany West Central",
- "Switzerland West",
- "East Asia",
- "Jio India West",
- "South Africa North",
- "UK South",
- "South India",
- "Australia Southeast",
- "France South",
- "West US 2",
- "Japan West",
- "Norway East",
- "France Central",
- "West US 3",
- "Central India",
- "Korea South",
- "Brazil Southeast",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Norway West",
- "Australia East",
- "Japan East",
- "Canada East",
- "Canada Central",
- "Switzerland North"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2019-12-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/internalAzureVirtualNetworkManagerOperation",
- "locations": [
- "West Central US",
- "North Central US",
- "West US",
- "West Europe",
- "UAE Central",
- "Germany North",
- "East US",
- "West India",
- "East US 2",
- "Australia Central",
- "Australia Central 2",
- "South Africa West",
- "Brazil South",
- "UK West",
- "North Europe",
- "Central US",
- "UAE North",
- "Germany West Central",
- "Switzerland West",
- "East Asia",
- "Jio India West",
- "South Africa North",
- "UK South",
- "South India",
- "Australia Southeast",
- "France South",
- "West US 2",
- "Japan West",
- "Norway East",
- "France Central",
- "West US 3",
- "Central India",
- "Korea South",
- "Brazil Southeast",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Norway West",
- "Australia East",
- "Japan East",
- "Canada East",
- "Canada Central",
- "Switzerland North"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "networkVirtualApplianceSkus",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-09-01",
- "trafficmanagerprofiles": "2018-08-01",
- "secureGateways": "2018-04-01",
- "azureFirewalls": "2018-06-01",
- "frontdoors": "2019-04-01",
- "expressRouteCircuits": "2019-04-01",
- "bastionHosts": "2019-08-01",
- "networkWatchers/connectionMonitors": "2017-09-01",
- "vpnGateways": "2019-11-01",
- "p2SVpnGateways": "2019-11-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "AppGWT",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "2cf9eb86-36b5-49dc-86ae-9a63135dfa8c"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Web",
- "namespace": "Microsoft.Web",
- "authorization": {
- "applicationId": "abfa0a7c-a6b6-4736-8310-5855508787cd",
- "roleDefinitionId": "f47ed98b-b063-4a5b-9e10-4b9b44fa7735"
- },
- "resourceTypes": [
- {
- "resourceType": "publishingUsers",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ishostnameavailable",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validate",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "isusernameavailable",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "generateGithubAccessTokenForAppserviceCLI",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "East US",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "West Europe",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sourceControls",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "availableStacks",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "webAppStacks",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/webAppStacks",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "functionAppStacks",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/functionAppStacks",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "staticSites",
- "locations": [
- "West US 2",
- "Central US",
- "East US 2",
- "West Europe",
- "East Asia"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-12-01-preview",
- "2019-08-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2016-03-01",
- "staticSites": "2019-08-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "id",
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "WAWS Shoebox",
- "sourceMdmNamespace": "Microsoft/Web/StaticSites"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/previewStaticSiteWorkflowFile",
- "locations": [
- "West US 2",
- "Central US",
- "East US 2",
- "West Europe",
- "East Asia"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-12-01-preview",
- "2019-08-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "staticSites/userProvidedFunctionApps",
- "locations": [
- "West US 2",
- "Central US",
- "East US 2",
- "West Europe",
- "East Asia"
- ],
- "apiVersions": [
- "2020-12-01"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "staticSites/builds",
- "locations": [
- "West US 2",
- "Central US",
- "East US 2",
- "West Europe",
- "East Asia"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-12-01-preview",
- "2019-08-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "staticSites/builds/userProvidedFunctionApps",
- "locations": [
- "West US 2",
- "Central US",
- "East US 2",
- "West Europe",
- "East Asia"
- ],
- "apiVersions": [
- "2020-12-01"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "listSitesAssignedToHostName",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/getNetworkPolicies",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "France Central",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2016-08-01"
- ],
- "defaultApiVersion": "2018-02-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US 2",
- "East US 2",
- "East US",
- "UK South",
- "Southeast Asia",
- "North Europe",
- "Japan East",
- "West Europe",
- "East Asia",
- "West US",
- "Australia East",
- "Brazil South",
- "Central US",
- "Japan West",
- "Central India",
- "Canada East",
- "Korea Central",
- "France Central",
- "West India",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-12-01-preview",
- "2019-08-01",
- "2019-01-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01"
- ],
- "defaultApiVersion": "2019-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US 2",
- "East US 2",
- "East US",
- "UK South",
- "Southeast Asia",
- "North Europe",
- "Japan East",
- "West Europe",
- "East Asia",
- "West US",
- "Australia East",
- "Brazil South",
- "Central US",
- "Japan West",
- "Central India",
- "Canada East",
- "Korea Central",
- "France Central",
- "West India",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-12-01-preview",
- "2019-08-01",
- "2019-01-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01"
- ],
- "defaultApiVersion": "2019-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/networkConfig",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/slots/networkConfig",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/hostNameBindings",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/slots/hostNameBindings",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "certificates",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serverFarms",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "portal": {
- "kinds": [
- {
- "kind": "entitlement",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "functionapp",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/DynamicAppServicePlan.svg"
- }
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.mdmId",
- "metrics": {
- "metricsFilterPathSelector": "sku.tier",
- "mdmInfo": [
- {
- "sourceMdmAccount": "WAWS Shoebox",
- "sourceMdmNamespace": "Microsoft/Web/AppServicePlans"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sites",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-08-01",
- "2016-03-01",
- "2015-11-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2015-01-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "portal": {
- "kinds": [
- {
- "kind": "gateway",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "microservice",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "apiApp",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "api",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/apiapps.svg"
- },
- {
- "kind": "api,entitlement",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/apiapps.svg"
- },
- {
- "kind": "entitlement",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webapp.svg",
- "blade": {
- "name": "EntitlementAppBlade",
- "extension": "WebsitesExtension"
- }
- },
- {
- "kind": "mobileapp",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/mobileapps.svg"
- },
- {
- "kind": "mobileapp,entitlement",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/mobileapps.svg",
- "blade": {
- "name": "EntitlementAppBlade",
- "extension": "WebsitesExtension"
- }
- },
- {
- "kind": "webjob",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webjobs.svg"
- },
- {
- "kind": "webjob,entitlement",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webjobs.svg",
- "blade": {
- "name": "EntitlementAppBlade",
- "extension": "WebsitesExtension"
- }
- },
- {
- "kind": "functionapp",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/Functions.svg",
- "blade": {
- "name": "FunctionsIFrameBlade",
- "extension": "WebsitesExtension"
- }
- },
- {
- "kind": "functionappdev",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/Functions.svg",
- "blade": {
- "name": "FunctionsIFrameBlade",
- "extension": "WebsitesExtension"
- }
- }
- ]
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sites/slots",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-08-01",
- "2016-03-01",
- "2015-11-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2015-01-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "portal": {
- "kinds": [
- {
- "kind": "microservice",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "apiApp",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "gateway",
- "browseConfig": {
- "visibility": "hidden"
- }
- }
- ]
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "runtimes",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "recommendations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceHealthMetadata",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "georegions",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/premieraddons",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "hostingEnvironments",
- "locations": [
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Central US",
- "West US 3",
- "South Africa North",
- "West US 2",
- "East US 2",
- "UK South",
- "Southeast Asia",
- "North Europe",
- "Japan East",
- "East Asia",
- "West US",
- "Australia East",
- "Brazil South",
- "Central US",
- "Japan West",
- "Central India",
- "Canada East",
- "Korea Central",
- "France Central",
- "West India",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2019-02-01",
- "2019-01-01",
- "2018-11-01",
- "2018-08-01",
- "2018-05-01-preview",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2016-03-01",
- "hostingEnvironments": "2019-01-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "id",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Web",
- "onbehalfSupportedLogCategories": [
- "AppServiceEnvironmentPlatformLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "hostingEnvironments/multiRolePools",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2019-02-01",
- "2018-11-01",
- "2018-08-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.mdmId",
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "WAWS Shoebox",
- "sourceMdmNamespace": "Microsoft/Web/AppServiceEnvironments"
- }
- ]
- }
- }
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "hostingEnvironments/workerPools",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2019-02-01",
- "2018-11-01",
- "2018-08-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.mdmId",
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "WAWS Shoebox",
- "sourceMdmNamespace": "Microsoft/Web/AppServiceEnvironments"
- }
- ]
- }
- }
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "kubeEnvironments",
- "locations": [
- "North Central US (Stage)",
- "West Central US",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2019-02-01",
- "2019-01-01",
- "2018-11-01",
- "2018-08-01",
- "2018-05-01-preview",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {},
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "deploymentLocations",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deletedSites",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deletedSites",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "defaultApiVersion": "2018-02-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ishostingenvironmentnameavailable",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-11-01",
- "2016-08-01",
- "2016-03-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "defaultApiVersion": "2018-02-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "connections",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Brazil Southeast",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-01-preview",
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "customApis",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Brazil Southeast",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-01-preview",
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-07-01-preview",
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/listWsdlInterfaces",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/extractApiDefinitionFromWsdl",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedApis",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Brazil Southeast",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-01-preview",
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/runtimes",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/apiOperations",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Brazil Southeast",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-01-preview",
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "connectionGateways",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/connectionGatewayInstallations",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingMeters",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "verifyHostingEnvironmentVnet",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "serverFarms/eventGridFilters",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway West",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "South Africa West",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/eventGridFilters",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway West",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "South Africa West",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-08-01",
- "2016-03-01",
- "2015-11-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2015-01-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/slots/eventGridFilters",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway West",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "South Africa West",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-08-01",
- "2016-03-01",
- "2015-11-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2015-01-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostingEnvironments/eventGridFilters",
- "locations": [
- "West US",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada East",
- "UK West",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US 2",
- "East US 2",
- "UK South",
- "Southeast Asia",
- "North Europe",
- "Japan East",
- "East Asia",
- "Australia East",
- "Central US",
- "Japan West",
- "Central India",
- "Korea Central",
- "France Central",
- "West India",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2019-02-01",
- "2019-01-01",
- "2018-11-01",
- "2018-08-01",
- "2018-05-01-preview",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "serverFarms/firstPartyApps",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "East US",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway West",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "West Europe",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "South Africa West"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "serverFarms/firstPartyApps/keyVaultSettings",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "East US",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway West",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "West Europe",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "South Africa West"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workerApps",
- "locations": [
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-12-01"
- ],
- "defaultApiVersion": "2021-02-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "dnsSuffix": "azurewebsites.net",
- "Microsoft.managedIdentity": {
- "applicationId": "abfa0a7c-a6b6-4736-8310-5855508787cd"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.defaultHostName",
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "WAWS Shoebox",
- "sourceMdmNamespace": "Microsoft/Web/WebApps"
- }
- ]
- },
- "logs": {
- "logFilterPathSelector": "kind",
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Web",
- "onbehalfSupportedLogCategories": [
- "FunctionAppLogs",
- "AppServiceHTTPLogs",
- "AppServiceFileAuditLogs",
- "AppServiceAuditLogs",
- "AppServiceConsoleLogs",
- "AppServicePlatformLogs",
- "AppServiceIPSecAuditLogs",
- "AppServiceAntivirusScanAuditLogs",
- "AppServiceAppLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "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": []
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId"
- }
- }
- },
- "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": [
- "2021-03-01",
- "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": [
- "2021-03-01",
- "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": [
- "2021-03-01",
- "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": [
- "2021-03-01",
- "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": [
- "2021-03-01",
- "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",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af"
- }
- },
- "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": []
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId"
- }
- }
- },
- "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",
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId"
- }
- }
- },
- "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": []
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.hostId"
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356"
- },
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.vmId",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "AzComputeShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ManagedIdentity",
- "namespace": "Microsoft.ManagedIdentity",
- "resourceTypes": [
- {
- "resourceType": "Identities",
- "locations": [
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "Central India",
- "West India",
- "Jio India West",
- "South India",
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "North Europe",
- "West Europe",
- "UK West",
- "UK South",
- "Switzerland North",
- "Germany West Central",
- "Central US",
- "North Central US",
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "West US 2",
- "West US 3",
- "West Central US",
- "France Central",
- "Norway East"
- ],
- "apiVersions": [
- "2018-11-30",
- "2015-08-31-PREVIEW"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "userAssignedIdentities",
- "locations": [
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "Central India",
- "West India",
- "Jio India West",
- "South India",
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "North Europe",
- "West Europe",
- "UK West",
- "UK South",
- "Switzerland North",
- "Germany West Central",
- "Central US",
- "North Central US",
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "West US 2",
- "West US 3",
- "West Central US",
- "France Central",
- "Norway East"
- ],
- "apiVersions": [
- "2018-11-30",
- "2015-08-31-PREVIEW"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "Central India",
- "West India",
- "Jio India West",
- "South India",
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "North Europe",
- "West Europe",
- "UK West",
- "UK South",
- "Switzerland North",
- "Germany West Central",
- "Central US",
- "North Central US",
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "West US 2",
- "West US 3",
- "West Central US",
- "France Central",
- "Norway East"
- ],
- "apiVersions": [
- "2018-11-30",
- "2015-08-31-PREVIEW"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OperationalInsights",
- "namespace": "Microsoft.OperationalInsights",
- "authorizations": [
- {
- "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77",
- "roleDefinitionId": "86695298-2eb9-48a7-9ec3-2fdb38b6878b"
- },
- {
- "applicationId": "ca7f3f0b-7d91-482c-8e09-c5d840d0eac5",
- "roleDefinitionId": "5d5a2e56-9835-44aa-93db-d2f19e155438"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview",
- "2017-04-26-preview",
- "2017-03-15-preview",
- "2017-03-03-preview",
- "2017-01-01-preview",
- "2015-11-01-preview",
- "2015-03-20"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-03-01-preview",
- "operations": "2020-03-01-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.OperationalInsights",
- "onbehalfSupportedLogCategories": [
- "Audit"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "querypacks",
- "locations": [
- "West Central US",
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Canada Central",
- "Central India",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Australia Southeast",
- "Australia Central 2",
- "Germany West Central",
- "Switzerland West",
- "UAE Central",
- "UK West",
- "Brazil Southeast",
- "Japan West",
- "UAE North",
- "Australia Central",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2019-09-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview",
- "2017-04-26-preview",
- "2017-03-15-preview",
- "2017-03-03-preview",
- "2017-01-01-preview",
- "2015-11-01-preview",
- "2015-03-20"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview",
- "2017-04-26-preview",
- "2017-03-15-preview",
- "2017-03-03-preview",
- "2017-01-01-preview",
- "2015-11-01-preview",
- "2015-03-20"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/scopedPrivateLinkProxies",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-03-01-preview",
- "2019-08-01-preview",
- "2015-11-01-preview"
- ],
- "defaultApiVersion": "2020-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/query",
- "locations": [],
- "apiVersions": [
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/metadata",
- "locations": [],
- "apiVersions": [
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/dataSources",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2015-11-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/linkedStorageAccounts",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/tables",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia East",
- "Australia Central",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2017-04-26-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/storageInsightConfigs",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia East",
- "Australia Central",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2017-04-26-preview",
- "2017-03-15-preview",
- "2017-03-03-preview",
- "2017-01-01-preview",
- "2015-11-01-preview",
- "2015-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageInsightConfigs",
- "locations": [],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2014-10-10"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "workspaces/linkedServices",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview",
- "2015-11-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "linkTargets",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2020-03-01-preview",
- "2015-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deletedWorkspaces",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview",
- "2015-11-01-preview",
- "2014-11-10"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "Brazil South",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/dataExports",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77"
- },
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-03-01-preview",
- "workspaces": "2020-03-01-preview",
- "operations": "2020-03-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.OperationalInsights"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "OmsShoeboxMetrics",
- "sourceMdmNamespace": "OmsShoeboxMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Advisor",
- "namespace": "Microsoft.Advisor",
- "authorization": {
- "applicationId": "c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7",
- "roleDefinitionId": "8a63b04c-3731-409b-9765-f1175c047872"
- },
- "resourceTypes": [
- {
- "resourceType": "suppressions",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2017-04-19",
- "2017-03-31",
- "2016-07-12-preview",
- "2016-05-09-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "configurations",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2017-04-19",
- "2017-03-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "recommendations",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2017-04-19",
- "2017-03-31",
- "2016-07-12-preview",
- "2016-05-09-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "generateRecommendations",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2017-04-19",
- "2017-03-31",
- "2016-07-12-preview",
- "2016-05-09-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview",
- "2020-01-01",
- "2017-04-19",
- "2017-03-31",
- "2016-07-12-preview",
- "2016-05-09-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AlertsManagement",
- "namespace": "Microsoft.AlertsManagement",
- "authorizations": [
- {
- "applicationId": "3af5a1e8-2459-45cb-8683-bcd6cccbcc13",
- "roleDefinitionId": "b1309299-720d-4159-9897-6158a61aee41"
- },
- {
- "applicationId": "161a339d-b9f5-41c5-8856-6a6669acac64",
- "roleDefinitionId": "b61a6c11-d848-4eec-8c37-fb13ab7d5729"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "resourceHealthAlertRules",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2020-08-04-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "alerts",
- "locations": [],
- "apiVersions": [
- "2019-05-05-preview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-11-02-privatepreview",
- "2018-05-05-preview",
- "2018-05-05",
- "2017-11-15-privatepreview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "alertsSummary",
- "locations": [],
- "apiVersions": [
- "2019-05-05-preview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-05-05-preview",
- "2018-05-05",
- "2017-11-15-privatepreview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "smartGroups",
- "locations": [],
- "apiVersions": [
- "2019-05-05-preview",
- "2018-05-05-preview",
- "2018-05-05",
- "2017-11-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "smartDetectorAlertRules",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-04-01",
- "2019-06-01",
- "2019-03-01",
- "2018-02-01-privatepreview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrateFromSmartDetection",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "actionRules",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2019-05-05-preview",
- "2018-11-02-privatepreview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "alertsList",
- "locations": [],
- "apiVersions": [
- "2018-11-02-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "alertsSummaryList",
- "locations": [],
- "apiVersions": [
- "2018-11-02-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "alertsMetaData",
- "locations": [],
- "apiVersions": [
- "2019-05-05-preview",
- "2019-03-01-preview",
- "2019-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-05-05-preview",
- "2018-05-05",
- "2017-11-15-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ApiManagement",
- "namespace": "Microsoft.ApiManagement",
- "authorization": {
- "applicationId": "8602e328-9b72-4f2d-a4ae-1387d013a2b3",
- "roleDefinitionId": "e263b525-2e60-4418-b655-420bae0b172e"
- },
- "resourceTypes": [
- {
- "resourceType": "service",
- "locations": [
- "Central India",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "West Central US",
- "Norway East",
- "Switzerland North",
- "Korea South",
- "West India",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Brazil South",
- "East Asia",
- "South India",
- "Canada Central",
- "Canada East",
- "Australia Southeast",
- "Japan East",
- "North Central US",
- "Southeast Asia",
- "West US 2",
- "Central US",
- "UK South",
- "Australia East",
- "Japan West",
- "West US",
- "France Central",
- "South Central US",
- "East US 2",
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview",
- "2019-12-01-preview",
- "2019-12-01",
- "2019-01-01",
- "2018-06-01-preview",
- "2018-01-01",
- "2017-03-01",
- "2016-10-10",
- "2016-07-07",
- "2015-09-15",
- "2014-02-14"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "deletedServices",
- "locations": [
- "Central India",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "West Central US",
- "Norway East",
- "Switzerland North",
- "Korea South",
- "West India",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Brazil South",
- "East Asia",
- "South India",
- "Canada Central",
- "Canada East",
- "Australia Southeast",
- "Japan East",
- "North Central US",
- "Southeast Asia",
- "West US 2",
- "Central US",
- "UK South",
- "Australia East",
- "Japan West",
- "West US",
- "France Central",
- "South Central US",
- "East US 2",
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deletedServices",
- "locations": [
- "Central India",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "West Central US",
- "Norway East",
- "Switzerland North",
- "Korea South",
- "West India",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Brazil South",
- "East Asia",
- "South India",
- "Canada Central",
- "Canada East",
- "Australia Southeast",
- "Japan East",
- "North Central US",
- "Southeast Asia",
- "West US 2",
- "Central US",
- "UK South",
- "Australia East",
- "Japan West",
- "West US",
- "France Central",
- "South Central US",
- "East US 2",
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "validateServiceName",
- "locations": [],
- "apiVersions": [
- "2015-09-15",
- "2014-02-14"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkServiceNameAvailability",
- "locations": [],
- "apiVersions": [
- "2015-09-15",
- "2014-02-14"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Central India",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "West Central US",
- "Norway East",
- "Switzerland North",
- "Korea South",
- "West India",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Brazil South",
- "East Asia",
- "South India",
- "Canada Central",
- "Canada East",
- "Australia Southeast",
- "Japan East",
- "North Central US",
- "Southeast Asia",
- "West US 2",
- "Central US",
- "UK South",
- "Australia East",
- "Japan West",
- "West US",
- "France Central",
- "South Central US",
- "East US 2",
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview",
- "2019-12-01-preview",
- "2019-12-01",
- "2019-01-01",
- "2018-06-01-preview",
- "2018-01-01",
- "2017-03-01",
- "2016-10-10",
- "2016-07-07",
- "2015-09-15",
- "2014-02-14"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "reportFeedback",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview",
- "2019-12-01-preview",
- "2019-12-01",
- "2019-01-01",
- "2018-06-01-preview",
- "2018-01-01",
- "2017-03-01",
- "2016-10-10",
- "2016-07-07",
- "2015-09-15",
- "2014-02-14"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkFeedbackRequired",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview",
- "2019-12-01-preview",
- "2019-12-01",
- "2019-01-01",
- "2018-06-01-preview",
- "2018-01-01",
- "2017-03-01",
- "2016-10-10",
- "2016-07-07",
- "2015-09-15",
- "2014-02-14"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview",
- "2019-12-01-preview",
- "2019-12-01",
- "2019-01-01",
- "2018-06-01-preview",
- "2018-01-01",
- "2017-03-01",
- "2016-10-10",
- "2016-07-07",
- "2015-09-15",
- "2014-02-14"
- ],
- "defaultApiVersion": "2019-12-01",
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "ApiManagement"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "ApiManagementProd",
- "sourceMdmNamespace": "Proxy"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "ApiManagement",
- "onbehalfSupportedLogCategories": [
- "GatewayLogs"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "getDomainOwnershipIdentifier",
- "locations": [
- "Central India",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "West Central US",
- "Norway East",
- "Switzerland North",
- "Korea South",
- "West India",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Brazil South",
- "East Asia",
- "South India",
- "Canada Central",
- "Canada East",
- "Australia Southeast",
- "Japan East",
- "North Central US",
- "Southeast Asia",
- "West US 2",
- "Central US",
- "UK South",
- "Australia East",
- "Japan West",
- "West US",
- "France Central",
- "South Central US",
- "East US 2",
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "8602e328-9b72-4f2d-a4ae-1387d013a2b3"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-12-01",
- "operations": "2019-12-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "ApiManagement"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "ApiManagementProd",
- "sourceMdmNamespace": "Proxy"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "ApiManagement",
- "onbehalfSupportedLogCategories": [
- "GatewayLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Authorization",
- "namespace": "Microsoft.Authorization",
- "authorizations": [
- {
- "applicationId": "de926fbf-e23b-41f9-ae15-c943a9cfa630"
- },
- {
- "applicationId": "01fc33a7-78ba-4d2f-a4b7-768e336e890e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "roleAssignments",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-08-01-preview",
- "2020-04-01-preview",
- "2020-03-01-preview",
- "2019-04-01-preview",
- "2018-12-01-preview",
- "2018-09-01-preview",
- "2018-07-01",
- "2018-01-01-preview",
- "2017-10-01-preview",
- "2017-09-01",
- "2017-05-01",
- "2016-07-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01-preview",
- "2014-10-01-preview",
- "2014-07-01-preview",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2015-07-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "roleDefinitions",
- "locations": [],
- "apiVersions": [
- "2018-07-01",
- "2018-01-01-preview",
- "2017-09-01",
- "2017-05-01",
- "2016-07-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01-preview",
- "2014-10-01-preview",
- "2014-07-01-preview",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-05-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2015-07-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "classicAdministrators",
- "locations": [],
- "apiVersions": [
- "2015-06-01",
- "2015-05-01-preview",
- "2014-10-01-preview",
- "2014-07-01-preview",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "permissions",
- "locations": [],
- "apiVersions": [
- "2018-07-01",
- "2018-01-01-preview",
- "2017-05-01",
- "2016-07-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01-preview",
- "2014-10-01-preview",
- "2014-07-01-preview",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-05-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2015-07-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "denyAssignments",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview",
- "2018-07-01-preview",
- "2018-07-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "locks",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-09-01",
- "2015-06-01",
- "2015-05-01-preview",
- "2015-01-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-09-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-05-01",
- "2016-07-01",
- "2015-07-01",
- "2015-01-01",
- "2014-10-01-preview",
- "2014-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "policyDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-08-01",
- "2020-03-01",
- "2019-09-01",
- "2019-06-01",
- "2019-01-01",
- "2018-05-01",
- "2018-03-01",
- "2016-12-01",
- "2016-04-01",
- "2015-10-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-12-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "policySetDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-08-01",
- "2020-03-01",
- "2019-09-01",
- "2019-06-01",
- "2019-01-01",
- "2018-05-01",
- "2018-03-01",
- "2017-06-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "policyAssignments",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-08-01",
- "2020-03-01",
- "2019-09-01",
- "2019-06-01",
- "2019-01-01",
- "2018-05-01",
- "2018-03-01",
- "2017-06-01-preview",
- "2016-12-01",
- "2016-04-01",
- "2015-10-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-12-01"
- }
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsExtension"
- },
- {
- "resourceType": "policyExemptions",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "dataAliases",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-03-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providerOperations",
- "locations": [],
- "apiVersions": [
- "2018-07-01",
- "2018-01-01-preview",
- "2017-05-01",
- "2016-07-01",
- "2015-07-01-preview",
- "2015-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-05-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2015-07-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "elevateAccess",
- "locations": [],
- "apiVersions": [
- "2017-05-01",
- "2016-07-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01-preview",
- "2014-10-01-preview",
- "2014-07-01-preview",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkAccess",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "findOrphanRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2019-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "roleAssignmentsUsageMetrics",
- "locations": [],
- "apiVersions": [
- "2019-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "privateLinkAssociations",
- "locations": [],
- "apiVersions": [
- "2020-05-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "resourceManagementPrivateLinks",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-05-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operationStatus",
- "locations": [],
- "apiVersions": [
- "2020-05-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.managedIdentity": {
- "applicationId": "1dcb1bc7-c721-498e-b2fa-bcddcea44171"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Batch",
- "namespace": "Microsoft.Batch",
- "authorization": {
- "applicationId": "ddbf3205-c6bd-46ae-8127-60eb93363864",
- "roleDefinitionId": "b7f84953-1d03-4eab-9ea4-45f065258ff8"
- },
- "resourceTypes": [
- {
- "resourceType": "batchAccounts",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01",
- "2017-01-01",
- "2015-12-01",
- "2015-09-01",
- "2015-07-01",
- "2014-05-01-privatepreview"
- ],
- "defaultApiVersion": "2021-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "batchAccounts/pools",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2021-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "batchAccounts/certificates",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01",
- "2017-01-01",
- "2015-12-01",
- "2015-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01",
- "2017-01-01",
- "2015-12-01",
- "2015-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/quotas",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01",
- "2017-01-01",
- "2015-12-01",
- "2015-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01"
- ],
- "defaultApiVersion": "2021-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/accountOperationResults",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01",
- "2017-01-01",
- "2015-12-01",
- "2015-09-01",
- "2015-07-01",
- "2014-05-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureBatch"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "BatchProdShoebox",
- "sourceMdmNamespace": "BatchShoeboxMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureBatch",
- "onbehalfSupportedLogCategories": [
- "ServiceLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "ddbf3205-c6bd-46ae-8127-60eb93363864",
- "delegationAppIds": [
- "ddbf3205-c6bd-46ae-8127-60eb93363864"
- ]
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cdn",
- "namespace": "Microsoft.Cdn",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "profiles",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "metadata": {
- "portal": {
- "kinds": [
- {
- "kind": "frontdoor",
- "icon": "https://afdxportalprod.blob.core.windows.net/portalicons/frontdoor.svg",
- "blade": {
- "name": "ProfileBlade",
- "extension": "Microsoft_Azure_Cdn"
- }
- },
- {
- "kind": "cdn",
- "icon": "https://afdxportalprod.blob.core.windows.net/portalicons/cdn.svg",
- "blade": {
- "name": "ProfileBlade",
- "extension": "Microsoft_Azure_Cdn"
- }
- }
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-10-12"
- },
- "metrics": {
- "metricsFilterPathSelector": "sku.name",
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureFrontdoorShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "logFilterPathSelector": "sku.name",
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor",
- "onbehalfSupportedLogCategories": [
- "AzureCdnAccessLog",
- "FrontDoorHealthProbeLog",
- "FrontDoorAccessLog",
- "FrontDoorWebApplicationFirewallLog"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "profiles/endpoints",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-10-02"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureCdn",
- "onbehalfSupportedLogCategories": [
- "CoreAnalytics"
- ]
- }
- ]
- },
- "regionLess": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "profiles/endpoints/origins",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/endpoints/origingroups",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31"
- ],
- "defaultApiVersion": "2019-12-31",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/endpoints/customdomains",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/endpointresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/endpointresults/originresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/endpointresults/origingroupresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31"
- ],
- "defaultApiVersion": "2019-12-31",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/endpointresults/customdomainresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "checkResourceUsage",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "validateProbe",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "edgenodes",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "CdnWebApplicationFirewallPolicies",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2019-06-15-preview"
- ],
- "defaultApiVersion": "2019-06-15-preview",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-06-15-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureFrontdoorShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor",
- "onbehalfSupportedLogCategories": [
- "WebApplicationFirewallLogs"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "CdnWebApplicationFirewallManagedRuleSets",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2019-06-15-preview"
- ],
- "defaultApiVersion": "2019-06-15-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/afdendpoints",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "profiles/afdendpoints/routes",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/customdomains",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/origingroups",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/origingroups/origins",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/rulesets",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/rulesets/rules",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/secrets",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/securitypolicies",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/afdendpointresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/afdendpointresults/routeresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/customdomainresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/origingroupresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/origingroupresults/originresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/rulesetresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/rulesetresults/ruleresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/secretresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/securitypoliciesresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-10-02",
- "CdnWebApplicationFirewallPolicies": "2019-06-15-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureFrontdoorShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CertificateRegistration",
- "namespace": "Microsoft.CertificateRegistration",
- "authorization": {
- "applicationId": "f3c21649-0979-4721-ac85-b0216b2cf413",
- "roleDefinitionId": "933fba7e-2ed3-4da8-973d-8bd8298a9b40"
- },
- "resourceTypes": [
- {
- "resourceType": "certificateOrders",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-08-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "certificateOrders/certificates",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-08-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validateCertificateRegistrationInformation",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-08-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-08-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicCompute",
- "namespace": "Microsoft.ClassicCompute",
- "resourceTypes": [
- {
- "resourceType": "domainNames",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01",
- "2020-02-01",
- "2018-06-01",
- "2017-11-15",
- "2017-11-01",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "CrossResourceGroupResourceMove, SupportsLocation"
- },
- {
- "resourceType": "domainNames/internalLoadBalancers",
- "locations": [],
- "apiVersions": [
- "2017-11-01",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkDomainNameAvailability",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/slots",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Norway East",
- "Jio India West",
- "West US 3",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-02-01",
- "2018-06-01",
- "2017-11-15",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/slots/roles",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/slots/roles/metricDefinitions",
- "locations": [],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/slots/roles/metrics",
- "locations": [
- "North Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Canada East",
- "West US",
- "West US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Central US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "Japan East",
- "Japan West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "Korea Central",
- "Korea South",
- "France Central",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualMachines",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "CrossResourceGroupResourceMove, SupportsLocation"
- },
- {
- "resourceType": "capabilities",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/capabilities",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/serviceCertificates",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "quotas",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualMachines/diagnosticSettings",
- "locations": [
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "West US 2",
- "West Central US",
- "South India",
- "Central India",
- "West India",
- "Korea Central",
- "Korea South",
- "East US 2 (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualMachines/metricDefinitions",
- "locations": [
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "West US 2",
- "West Central US",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "South India",
- "Central India",
- "West India",
- "Korea Central",
- "Korea South",
- "Jio India West",
- "East US 2 (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualMachines/metrics",
- "locations": [
- "North Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Canada East",
- "West US",
- "West US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Central US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "Japan East",
- "Japan West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "Korea Central",
- "Korea South",
- "France Central",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceTypes",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "moveSubscriptionResources",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validateSubscriptionMoveAvailability",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationStatuses",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operatingSystems",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operatingSystemFamilies",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2014-06-01",
- "operations": "2017-04-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "AzComputeShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicNetwork",
- "namespace": "Microsoft.ClassicNetwork",
- "resourceTypes": [
- {
- "resourceType": "virtualNetworks",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Jio India West",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2017-11-15",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "SupportsLocation"
- },
- {
- "resourceType": "virtualNetworks/virtualNetworkPeerings",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "East US 2 (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2016-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualNetworks/remoteVirtualNetworkPeeringProxies",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "East US 2 (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2016-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservedIps",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Jio India West",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "SupportsLocation"
- },
- {
- "resourceType": "quotas",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "gatewaySupportedDevices",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01-beta",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "networkSecurityGroups",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Jio India West",
- "Australia Central",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01"
- ],
- "defaultApiVersion": "2015-06-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.networkSecurityGroupId",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "LNMAgentService",
- "onbehalfSupportedLogCategories": [
- "NetworkSecurityGroupFlowEvent"
- ]
- }
- ],
- "categories": [
- {
- "Name": "NetworkSecurityGroupFlowEvent",
- "requiredFeatures": [
- "Microsoft.Network/AllowNsgFlowLogging"
- ],
- "excludeFromEventHub": true
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsLocation"
- },
- {
- "resourceType": "capabilities",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "expressRouteCrossConnections",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "expressRouteCrossConnections/peerings",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2015-06-01"
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicStorage",
- "namespace": "Microsoft.ClassicStorage",
- "resourceTypes": [
- {
- "resourceType": "storageAccounts",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01-beta",
- "2014-04-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "CrossResourceGroupResourceMove, SupportsLocation"
- },
- {
- "resourceType": "quotas",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkStorageAccountAvailability",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/services",
- "locations": [
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "West US 2",
- "West Central US",
- "Jio India West",
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/services/diagnosticSettings",
- "locations": [
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "West US 2",
- "West Central US",
- "Jio India West",
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/services/metricDefinitions",
- "locations": [],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/services/metrics",
- "locations": [
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/metricDefinitions",
- "locations": [],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/metrics",
- "locations": [
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "capabilities",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/blobServices",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/tableServices",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/fileServices",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/queueServices",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "disks",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "images",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "vmImages",
- "locations": [],
- "apiVersions": [
- "2016-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/vmImages",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01-beta",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "publicImages",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "osImages",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "osPlatformImages",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01-beta",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-11-01",
- "operations": "2016-11-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "XStoreShoebox",
- "sourceMdmNamespace": "XStore"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CognitiveServices",
- "namespace": "Microsoft.CognitiveServices",
- "authorizations": [
- {
- "applicationId": "7d312290-28c8-473c-a0ed-8e53749b6d6d",
- "roleDefinitionId": "5cb87f79-a7c3-4a95-9414-45b65974b51b"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkSkuAvailability",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkDomainAvailability",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/privateLinkResources",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/privateEndpointConnections",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/privateEndpointConnectionProxies",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deletedAccounts",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/resourceGroups",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/resourceGroups/deletedAccounts",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-04-18"
- },
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftCognitiveServices"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "CognitiveServicesShoebox",
- "sourceMdmNamespace": "Microsoft.CognitiveServices"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "mdsEnvironment": "prod",
- "serviceIdentity": "MicrosoftCognitiveServices",
- "onbehalfSupportedLogCategories": [
- "Audit",
- "RequestResponse",
- "Trace"
- ]
- }
- ]
- },
- "regionless": true
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "7d312290-28c8-473c-a0ed-8e53749b6d6d"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DocumentDB",
- "namespace": "Microsoft.DocumentDB",
- "authorizations": [
- {
- "applicationId": "57c0fc58-a83a-41d0-8ae9-08952659bdfd",
- "roleDefinitionId": "FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"
- },
- {
- "applicationId": "36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9",
- "roleDefinitionId": "D5A795DE-916D-4818-B015-33C9E103E39B"
- },
- {
- "applicationId": "a232010e-820c-4083-83bb-3ace5fc29d0b",
- "roleDefinitionId": "D5A795DE-916D-4818-B015-33C9E103E39B"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "databaseAccounts",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a232010e-820c-4083-83bb-3ace5fc29d0b"
- },
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftAzureCosmosDB",
- "onbehalfSupportedLogCategories": [
- "DataPlaneRequests",
- "MongoRequests"
- ]
- }
- ]
- },
- "mdsMappingResourceIdOverridePathSelector": "name"
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "databaseAccountNames",
- "locations": [],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operationsStatus",
- "locations": [],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/restorableDatabaseAccounts",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-01-preview",
- "2021-04-01-preview",
- "2021-03-01-preview",
- "2020-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "restorableDatabaseAccounts",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-01-preview",
- "2021-04-01-preview",
- "2021-03-01-preview",
- "2020-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "cassandraClusters",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01-preview",
- "2021-04-01-preview",
- "2021-03-01-preview"
- ],
- "defaultApiVersion": "2021-03-01-preview",
- "capabilities": "SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-03-31",
- "operations": "2016-03-31"
- },
- "mdsMappingResourceIdOverridePathSelector": "name",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftAzureCosmosDB"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "DocumentDB",
- "sourceMdmNamespace": "DocDB"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EventGrid",
- "namespace": "Microsoft.EventGrid",
- "authorizations": [
- {
- "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7",
- "roleDefinitionId": "7FE036D8-246F-48BF-A78F-AB3EE699C8F3"
- },
- {
- "applicationId": "823c0a78-5de0-4445-a7f5-c2f42d7dc89b"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/eventSubscriptions",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "eventSubscriptions",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "topics",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "domains",
- "locations": [
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2018-09-15-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "domains/topics",
- "locations": [
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2018-09-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "topicTypes",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/topicTypes",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "extensionTopics",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationsStatus",
- "locations": [],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "systemTopics",
- "locations": [
- "global",
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2020-04-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.EventGrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureEventGrid",
- "sourceMdmNamespace": "resourceMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "eventgrid",
- "onbehalfSupportedLogCategories": [
- "DeliveryFailures"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "systemTopics/eventSubscriptions",
- "locations": [
- "global",
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "partnerRegistrations",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "partnerNamespaces",
- "locations": [
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "partnerTopics",
- "locations": [
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "partnerTopics/eventSubscriptions",
- "locations": [
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "partnerNamespaces/eventChannels",
- "locations": [
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2020-04-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.EventGrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureEventGrid",
- "sourceMdmNamespace": "resourceMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "eventgrid",
- "onbehalfSupportedLogCategories": [
- "DeliveryFailures",
- "PublishFailures"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Devices",
- "namespace": "Microsoft.Devices",
- "authorizations": [
- {
- "applicationId": "0cd79364-7a90-4354-9984-6e36c841418d",
- "roleDefinitionId": "C121DF10-FE58-4BC4-97F9-8296879F7BBB"
- },
- {
- "applicationId": "29f411f1-b2cf-4043-8ac8-2185d7316811",
- "roleDefinitionId": "d04fc6c0-fc10-4ab8-b7de-c979247c3b65"
- },
- {
- "applicationId": "89d10474-74af-4874-99a7-c23c2f643083",
- "roleDefinitionId": "7df22794-26e3-4f94-9d50-a4f0f6e1cb41"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-03-31",
- "2021-03-03-preview",
- "2021-02-01-preview",
- "2020-08-31-preview",
- "2020-08-31",
- "2020-08-01",
- "2020-07-10-preview",
- "2020-06-15",
- "2020-04-01",
- "2020-03-01",
- "2019-11-04",
- "2019-07-01-preview",
- "2019-03-22-preview",
- "2019-03-22",
- "2018-12-01-preview",
- "2018-04-01",
- "2018-01-22",
- "2017-07-01",
- "2017-01-19",
- "2016-02-03",
- "2015-08-15-preview"
- ],
- "defaultApiVersion": "2018-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkProvisioningServiceNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-03-01",
- "2020-01-01",
- "2018-01-22",
- "2017-11-15",
- "2017-08-21-preview"
- ],
- "defaultApiVersion": "2018-01-22",
- "capabilities": "None"
- },
- {
- "resourceType": "usages",
- "locations": [],
- "apiVersions": [
- "2021-03-31",
- "2021-03-03-preview",
- "2021-02-01-preview",
- "2020-08-31-preview",
- "2020-08-31",
- "2020-08-01",
- "2020-07-10-preview",
- "2020-06-15",
- "2020-04-01",
- "2020-03-01",
- "2019-11-04",
- "2019-07-01-preview",
- "2019-03-22-preview",
- "2019-03-22",
- "2018-12-01-preview",
- "2018-04-01",
- "2018-01-22",
- "2017-07-01",
- "2017-01-19",
- "2016-02-03",
- "2015-08-15-preview"
- ],
- "defaultApiVersion": "2018-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-31",
- "2021-03-03-preview",
- "2021-02-01-preview",
- "2020-08-31-preview",
- "2020-08-31",
- "2020-08-01",
- "2020-07-10-preview",
- "2020-06-15",
- "2020-04-01",
- "2020-03-01",
- "2019-11-04",
- "2019-07-01-preview",
- "2019-03-22-preview",
- "2019-03-22",
- "2018-12-01-preview",
- "2018-04-01",
- "2018-01-22",
- "2017-07-01",
- "2017-01-19",
- "2016-02-03",
- "2015-08-15-preview"
- ],
- "defaultApiVersion": "2018-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2021-03-31",
- "2021-03-03-preview",
- "2021-02-01-preview",
- "2020-08-31-preview",
- "2020-08-31",
- "2020-08-01",
- "2020-07-10-preview",
- "2020-06-15",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-11-04",
- "2019-09-01",
- "2019-07-01-preview",
- "2019-03-22-preview",
- "2019-03-22",
- "2018-12-01-preview",
- "2018-04-01-preview",
- "2018-04-01",
- "2018-01-22-preview",
- "2018-01-22",
- "2017-11-15",
- "2017-09-25-preview",
- "2017-08-21-preview",
- "2017-07-01",
- "2017-01-19",
- "2016-02-03",
- "2015-08-15-preview"
- ],
- "defaultApiVersion": "2018-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "IotHubs",
- "locations": [
- "West US",
- "North Europe",
- "East Asia",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "West US 2",
- "West Central US",
- "East US 2",
- "Central US",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "South Central US",
- "Korea South",
- "Korea Central",
- "France Central",
- "North Central US",
- "Australia Central",
- "Australia Central 2",
- "Germany North",
- "Germany West Central",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North"
- ],
- "apiVersions": [
- "2021-03-31",
- "2021-03-03-preview",
- "2021-02-01-preview",
- "2020-08-31-preview",
- "2020-08-31",
- "2020-08-01",
- "2020-07-10-preview",
- "2020-06-15",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-11-04",
- "2019-07-01-preview",
- "2019-03-22-preview",
- "2019-03-22",
- "2018-12-01-preview",
- "2018-04-01-preview",
- "2018-04-01",
- "2018-01-22",
- "2017-07-01",
- "2017-01-19",
- "2016-02-03",
- "2015-08-15-preview"
- ],
- "defaultApiVersion": "2020-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-04-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureIotHub"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDevicesShoebox",
- "sourceMdmNamespace": "ShoeboxMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureIotHub",
- "onbehalfSupportedLogCategories": [
- "Connections",
- "DeviceTelemetry",
- "C2DCommands",
- "DeviceIdentityOperations",
- "FileUploadOperations",
- "Routes",
- "D2CTwinOperations",
- "C2DTwinOperations",
- "TwinQueries",
- "JobsOperations",
- "DirectMethods",
- "DistributedTracing",
- "DeviceStreams"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "IotHubs/eventGridFilters",
- "locations": [
- "West US",
- "East US",
- "West US 2",
- "West Central US",
- "East US 2",
- "Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "South Central US",
- "Korea South",
- "Korea Central",
- "France Central",
- "North Central US",
- "Australia Central",
- "Australia Central 2",
- "Germany North",
- "Germany West Central",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2018-07-31",
- "2018-01-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ProvisioningServices",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "UK West",
- "UK South",
- "East US 2",
- "Central US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "France South",
- "Canada East",
- "Canada Central",
- "Korea South",
- "Korea Central",
- "Central India",
- "South India",
- "Brazil South"
- ],
- "apiVersions": [
- "2020-03-01",
- "2020-01-01",
- "2018-01-22",
- "2017-11-15",
- "2017-08-21-preview"
- ],
- "defaultApiVersion": "2020-01-01",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "0cd79364-7a90-4354-9984-6e36c841418d"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureIotDps"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDevicesShoebox",
- "sourceMdmNamespace": "ShoeboxMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureIotDps",
- "onbehalfSupportedLogCategories": [
- "DeviceOperations",
- "ServiceOperations"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "IotHubs/securitySettings",
- "locations": [
- "West US",
- "North Europe",
- "East Asia",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "West US 2",
- "West Central US",
- "East US 2",
- "Central US",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "South Central US",
- "Korea South",
- "Korea Central",
- "France Central",
- "North Central US",
- "Australia Central",
- "Australia Central 2",
- "Germany North",
- "Germany West Central",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North"
- ],
- "apiVersions": [
- "2019-09-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "89d10474-74af-4874-99a7-c23c2f643083"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2018-04-01",
- "IotHubs": "2018-04-01",
- "ProvisioningServices": "2018-01-22",
- "ElasticPools": "2018-01-22-preview",
- "ElasticPools/IotHubTenants": "2018-01-22-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDevicesShoebox",
- "sourceMdmNamespace": "ShoeboxMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataLakeStore",
- "namespace": "Microsoft.DataLakeStore",
- "authorization": {
- "applicationId": "e9f49c6b-5ce5-44c8-925d-015017e9f7ad",
- "roleDefinitionId": "17eb9cca-f08a-4499-b2d3-852d175f614f"
- },
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe",
- "Australia East"
- ],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "defaultApiVersion": "2016-11-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/firewallRules",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe",
- "Australia East"
- ],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/eventGridFilters",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe",
- "Australia East"
- ],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capability",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.accountId",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataLake"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureDataLake",
- "sourceMdmNamespace": "Microsoft.DataLakeStore"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataLake",
- "onbehalfSupportedLogCategories": [
- "Audit",
- "Requests"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "e9f49c6b-5ce5-44c8-925d-015017e9f7ad"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DomainRegistration",
- "namespace": "Microsoft.DomainRegistration",
- "authorization": {
- "applicationId": "ea2f600a-4980-45b7-89bf-d34da487bda1",
- "roleDefinitionId": "54d7f2e3-5040-48a7-ae90-eebf629cfa0b"
- },
- "resourceTypes": [
- {
- "resourceType": "domains",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "domains/domainOwnershipIdentifiers",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "topLevelDomains",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkDomainAvailability",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listDomainRecommendations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validateDomainRegistrationInformation",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "generateSsoRequest",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EventHub",
- "namespace": "Microsoft.EventHub",
- "authorizations": [
- {
- "applicationId": "80369ed6-5f11-4dd9-bef3-692475845e77",
- "roleDefinitionId": "eb8e1991-5de0-42a6-a64b-29b059341b7b"
- },
- {
- "applicationId": "6201d19e-14fb-4472-a2d6-5634a5c97568"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "namespaces",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "defaultApiVersion": "2017-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "Australia Central",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2018-01-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "namespaces/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/networkrulesets",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/privateEndpointConnections",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/eventhubs",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/eventhubs/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/eventhubs/consumergroups",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNamespaceAvailability",
- "locations": [],
- "apiVersions": [
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sku",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/disasterrecoveryconfigs",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/disasterrecoveryconfigs/checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "availableClusterRegions",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-01-01-preview"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-04-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.metricId",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "servicebus",
- "sourceMdmNamespace": "ServiceBusMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus",
- "onbehalfSupportedLogCategories": [
- "ArchiveLogs",
- "OperationalLogs",
- "AutoScaleLogs",
- "KafkaCoordinatorLogs",
- "EventHubVNetConnectionEvent",
- "CustomerManagedKeyUserLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "6201d19e-14fb-4472-a2d6-5634a5c97568"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HDInsight",
- "namespace": "Microsoft.HDInsight",
- "authorizations": [
- {
- "applicationId": "9191c4da-09fe-49d9-a5f1-d41cbe92ad95",
- "roleDefinitionId": "d102a6f3-d9cb-4633-8950-1243b975886c",
- "managedByRoleDefinitionId": "346da55d-e1db-4a5a-89db-33ab3cdb6fc6"
- },
- {
- "applicationId": "7865c1d2-f040-46cc-875f-831a1ef6a28a",
- "roleDefinitionId": "e27c0895-d168-46d5-8b65-870eb2350378"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "clusters",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": []
- },
- {
- "location": "South Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Canada Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "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": []
- },
- {
- "location": "East Asia",
- "zones": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftHDInsight"
- }
- ],
- "metricsFilterPathSelector": "properties.clusterDefinition.kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "HdInsight",
- "sourceMdmNamespace": "HdInsightIaasCluster"
- }
- ]
- },
- "mdsMappingResourceIdOverridePathSelector": "name"
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters/applications",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": []
- },
- {
- "location": "South Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Canada Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "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": []
- },
- {
- "location": "East Asia",
- "zones": []
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/operationresults",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capabilities",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/billingSpecs",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/azureasyncoperations",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/validateCreateRequest",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "9191c4da-09fe-49d9-a5f1-d41cbe92ad95"
- },
- "createdDate": "2015-06-02",
- "updatedDate": "2018-02-08",
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "metricsFilterPathSelector": "properties.clusterDefinition.kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "HdInsight",
- "sourceMdmNamespace": "HdInsightIaasCluster"
- }
- ]
- },
- "apiVersions": {
- "default": "2015-03-01-preview"
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.KeyVault",
- "namespace": "Microsoft.KeyVault",
- "authorizations": [
- {
- "applicationId": "cfa8b339-82a2-471a-a3c9-0fc0be7a4093",
- "roleDefinitionId": "1cf9858a-28a2-4228-abba-94e606305b95"
- },
- {
- "applicationId": "589d5083-6f11-4d30-a62a-a4b316a14abf"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "vaults",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01",
- "2015-06-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "vaults/secrets",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01",
- "2015-06-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "vaults/accessPolicies",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01",
- "2015-06-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01",
- "2015-06-01",
- "2014-12-19-preview"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01",
- "2015-06-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deletedVaults",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deletedVaults",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "East US",
- "North Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West Central US",
- "West US 2",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "vaults/eventGridFilters",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14"
- ],
- "defaultApiVersion": "2019-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "managedHSMs",
- "locations": [
- "East US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Central US",
- "Switzerland North",
- "South Africa North",
- "UK South",
- "SouthEast Asia",
- "East Asia",
- "Korea Central",
- "Australia Central",
- "West US",
- "East US"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview"
- ],
- "defaultApiVersion": "2020-04-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "deletedManagedHSMs",
- "locations": [
- "East US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Central US",
- "Switzerland North",
- "South Africa North",
- "UK South",
- "SouthEast Asia",
- "East Asia",
- "Korea Central",
- "Australia Central",
- "West US",
- "East US"
- ],
- "apiVersions": [
- "2021-04-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deletedManagedHSMs",
- "locations": [
- "East US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Central US",
- "Switzerland North",
- "South Africa North",
- "UK South",
- "SouthEast Asia",
- "East Asia",
- "Korea Central",
- "Australia Central",
- "West US",
- "East US"
- ],
- "apiVersions": [
- "2021-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "vaults/keys",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "vaults/keys/versions",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2015-06-01"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureKeyVault",
- "mdsEnvironment": "prod",
- "onbehalfSupportedLogCategories": [
- "AuditEvent"
- ]
- }
- ]
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureKeyVault"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftKeyVaultShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Media",
- "namespace": "Microsoft.Media",
- "authorization": {
- "applicationId": "374b2a64-3b6b-436b-934c-b820eacca870",
- "roleDefinitionId": "aab70789-0cec-44b5-95d7-84b64c9487af"
- },
- "resourceTypes": [
- {
- "resourceType": "mediaservices",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2021-05-01",
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview",
- "2015-10-01",
- "2015-04-01"
- ],
- "defaultApiVersion": "2020-05-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "videoAnalyzers",
- "locations": [
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Central India",
- "Japan East",
- "Korea Central",
- "East US 2",
- "West US 2"
- ],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview"
- ],
- "defaultApiVersion": "2021-05-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "mediaservices/assets",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/contentKeyPolicies",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/streamingLocators",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/streamingPolicies",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/eventGridFilters",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2018-02-05"
- ],
- "defaultApiVersion": "2018-02-05",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/transforms",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/transforms/jobs",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/streamingEndpoints",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "mediaservices/liveEvents",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "mediaservices/liveEvents/liveOutputs",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/streamingEndpointOperations",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/liveEventOperations",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/liveOutputOperations",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/assets/assetFilters",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/accountFilters",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "videoAnalyzers/accessPolicies",
- "locations": [
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Central India",
- "Japan East",
- "Korea Central",
- "East US 2",
- "West US 2"
- ],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview"
- ],
- "defaultApiVersion": "2021-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "videoAnalyzers/edgeModules",
- "locations": [
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Central India",
- "Japan East",
- "Korea Central",
- "East US 2",
- "West US 2"
- ],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview"
- ],
- "defaultApiVersion": "2021-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "videoAnalyzers/videos",
- "locations": [
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Central India",
- "Japan East",
- "Korea Central",
- "East US 2",
- "West US 2"
- ],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview"
- ],
- "defaultApiVersion": "2021-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview",
- "2021-05-01",
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview",
- "2018-02-05",
- "2015-10-01",
- "2015-04-01"
- ],
- "defaultApiVersion": "2020-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checknameavailability",
- "locations": [],
- "apiVersions": [
- "2015-10-01",
- "2015-04-01"
- ],
- "defaultApiVersion": "2015-10-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview",
- "2021-05-01",
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview",
- "2021-05-01",
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2020-05-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-07-01",
- "operations": "2018-07-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Media"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftMediaServicesShoebox",
- "sourceMdmNamespace": "MicrosoftMediaStreamingEndpoint"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Media",
- "onbehalfSupportedLogCategories": [
- "KeyDeliveryRequests"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "374b2a64-3b6b-436b-934c-b820eacca870"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MachineLearning",
- "namespace": "Microsoft.MachineLearning",
- "authorization": {
- "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385",
- "roleDefinitionId": "1cc297bc-1829-4524-941f-966373421033"
- },
- "resourceTypes": [
- {
- "resourceType": "Workspaces",
- "locations": [
- "South Central US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "West Central US"
- ],
- "apiVersions": [
- "2016-04-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "webServices",
- "locations": [
- "South Central US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "East US 2",
- "West Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "South Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "South Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "South Central US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "East US 2",
- "West Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "South Central US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "East US 2",
- "West Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "commitmentPlans",
- "locations": [
- "South Central US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "East US 2",
- "West Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.NotificationHubs",
- "namespace": "Microsoft.NotificationHubs",
- "resourceTypes": [
- {
- "resourceType": "namespaces",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "namespaces/notificationHubs",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNamespaceAvailability",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "NotificationHubs",
- "sourceMdmNamespace": "HubMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "NotificationHubs",
- "onbehalfSupportedLogCategories": [
- "OperationalLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage",
- "namespace": "Microsoft.Storage",
- "authorizations": [
- {
- "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b",
- "roleDefinitionId": "070ab87f-0efc-4423-b18b-756f3bdb0236"
- },
- {
- "applicationId": "e406a681-f3d4-42a8-90b6-c2b029497af1"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "deletedAccounts",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deletedAccounts",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01",
- "2016-01-01",
- "2015-06-15",
- "2015-05-01-preview"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": []
- },
- {
- "location": "South Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Canada Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "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": []
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b",
- "delegationAppIds": [
- "a6aa9161-5291-40bb-8c5c-923b567bee3b"
- ]
- },
- "portal": {
- "kinds": [
- {
- "kind": "BlobStorage",
- "icon": "\u003Csvg viewBox=\u00270 0 50 50\u0027 class=\u0027msportalfx-svg-placeholder\u0027 role=\u0027img\u0027 xmlns:svg=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 focusable=\u0027false\u0027\u003E\u003Cpath d=\u0027M0,44.8c0,1,0.8,1.9,1.8,1.9h46.3c1,0,1.9-0.8,1.9-1.9l0-33.1H0V44.8z\u0027 class=\u0027msportalfx-svg-c03\u0027\u003E\u003C/path\u003E\u003Cpath d=\u0027M48.1,4H1.8C0.8,4,0,4.9,0,5.9v5.7h50l0-5.7C50,4.9,49.2,4,48.1,4\u0027 class=\u0027msportalfx-svg-c04\u0027\u003E\u003C/path\u003E\u003Cpath opacity=\u00270.8\u0027 d=\u0027M38,21.2v-2.4H22.8l-3.6-3.6H9.7v26.3c0,0.8,0.6,1.4,1.4,1.4l0,0h27.2c0.8,0,1.4-0.6,1.4-1.4 V21.2H38z\u0027 class=\u0027msportalfx-svg-c01\u0027\u003E\u003C/path\u003E\u003Cpath d=\u0027M12.5,21.2v20.3c0,0.8-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4V15.2h9.6l3.6,3.6H38v2.4H12.5z\u0027 class=\u0027msportalfx-svg-c10\u0027\u003E\u003C/path\u003E\u003Cpath opacity=\u00270.2\u0027 d=\u0027M2,4C0.9,4,0,4.9,0,6v7.3v3.3v28c0,1.1,0.9,2,2,2h2.2L43.6,4H2z\u0027 class=\u0027msportalfx-svg-c01\u0027\u003E\u003C/path\u003E\u003C/svg\u003E"
- }
- ]
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01",
- "2016-01-01",
- "2015-06-15",
- "2015-05-01-preview"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/asyncoperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01",
- "2016-01-01",
- "2015-06-15",
- "2015-05-01-preview"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/listAccountSas",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/listServiceSas",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/blobServices",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/tableServices",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/queueServices",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/fileServices",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-07-01",
- "2016-01-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-07-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "usages",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01",
- "2016-01-01",
- "2015-06-15",
- "2015-05-01-preview"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01",
- "2016-01-01",
- "2015-06-15",
- "2015-05-01-preview"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/services",
- "locations": [
- "East US",
- "West US",
- "East US 2 (Stage)",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West 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": "storageAccounts/services/metricDefinitions",
- "locations": [
- "East US",
- "West US",
- "East US 2 (Stage)",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West 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"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-12-01",
- "operations": "2016-12-01"
- },
- "metrics": {
- "metricsFilterPathSelector": "sku.tier",
- "mdsInfo": [
- {
- "serviceIdentity": "XStore"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "XStoreShoebox",
- "sourceMdmNamespace": "XStore"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Xstore",
- "onbehalfSupportedLogCategories": [
- "StorageRead",
- "StorageWrite",
- "StorageDelete"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceHealth",
- "namespace": "Microsoft.ResourceHealth",
- "authorizations": [
- {
- "applicationId": "8bdebf23-c0fe-4187-a378-717ad86f6a53",
- "roleDefinitionId": "cc026344-c8b1-4561-83ba-59eba84b27cc"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "availabilityStatuses",
- "locations": [],
- "apiVersions": [
- "2020-05-01-preview",
- "2020-05-01",
- "2018-08-01-rc",
- "2018-08-01-preview",
- "2018-07-01-rc",
- "2018-07-01-preview",
- "2018-07-01",
- "2017-07-01",
- "2015-01-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "childAvailabilityStatuses",
- "locations": [],
- "apiVersions": [
- "2018-11-06-beta",
- "2018-08-01-rc",
- "2018-08-01-preview",
- "2018-07-01-rc",
- "2018-07-01-preview",
- "2018-07-01-beta",
- "2017-07-01-rc",
- "2017-07-01-preview",
- "2017-07-01-beta",
- "2015-01-01-rc",
- "2015-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "childResources",
- "locations": [],
- "apiVersions": [
- "2018-11-06-beta",
- "2018-08-01-rc",
- "2018-08-01-preview",
- "2018-07-01-rc",
- "2018-07-01-preview",
- "2018-07-01-beta",
- "2017-07-01-rc",
- "2017-07-01-preview",
- "2017-07-01-beta",
- "2015-01-01-rc",
- "2015-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "events",
- "locations": [],
- "apiVersions": [
- "2020-09-01-rc",
- "2018-07-01-rc",
- "2018-07-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "metadata",
- "locations": [],
- "apiVersions": [
- "2018-07-01-rc",
- "2018-07-01-preview",
- "2018-07-01-beta",
- "2018-07-01-alpha",
- "2018-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "emergingissues",
- "locations": [],
- "apiVersions": [
- "2018-11-06-beta",
- "2018-07-01-rc",
- "2018-07-01-preview",
- "2018-07-01-beta",
- "2018-07-01-alpha",
- "2018-07-01",
- "2017-07-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-07-01",
- "2015-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "supportedResourceTypes": [
- "Microsoft.Cache/Redis",
- "Microsoft.ClassicCompute/virtualMachines",
- "Microsoft.Compute/virtualMachines",
- "Microsoft.Sql/servers/databases",
- "Microsoft.Web/sites",
- "Microsoft.media/mediaservices",
- "Microsoft.Network/virtualnetworkgateways",
- "Microsoft.Network/connections",
- "Microsoft.Search/Searchservices",
- "Microsoft.Notificationhubs/namespaces",
- "Microsoft.Cdn/profiles",
- "Microsoft.Documentdb/databaseaccounts",
- "Microsoft.DataLakeStore/accounts",
- "Microsoft.DataLakeAnalytics/accounts",
- "Microsoft.DataShare/accounts",
- "Microsoft.Web/serverFarms",
- "Microsoft.StreamAnalytics/streamingjobs",
- "Microsoft.CognitiveServices/accounts",
- "Microsoft.EventHub/namespaces",
- "Microsoft.ServiceBus/namespaces",
- "Microsoft.OperationalInsights/workspaces",
- "Microsoft.ApiManagement/service",
- "Microsoft.Devices/IotHubs",
- "Microsoft.Network/LoadBalancers",
- "Microsoft.Network/expressRouteCircuits",
- "Microsoft.Network/trafficmanagerprofiles",
- "Microsoft.Storage/storageAccounts",
- "Microsoft.AnalysisServices/servers",
- "Microsoft.KeyVault/vaults",
- "Microsoft.DataMigration/services",
- "Microsoft.MachineLearning/webServices",
- "Microsoft.ServiceFabric/clusters",
- "Microsoft.HdInsight/clusters",
- "Microsoft.PowerBIDedicated/capacities",
- "Microsoft.DataFactory/factories",
- "Microsoft.IoTCentral/IoTApps",
- "Microsoft.Sql/managedInstances/databases",
- "Microsoft.DBforMariaDB/servers",
- "Microsoft.DBforMySQL/servers",
- "Microsoft.DBforPostgreSQL/servers",
- "Microsoft.Network/applicationGateways",
- "Microsoft.Network/frontdoors",
- "Microsoft.Batch/batchAccounts",
- "microsoft.Kusto/Clusters",
- "microsoft.ContainerService/managedClusters",
- "Microsoft.RecoveryServices/vaults",
- "Microsoft.Compute/hostGroups/hosts",
- "Microsoft.ClassicCompute/DomainNames",
- "Microsoft.AppPlatform/Spring",
- "Microsoft.Compute/virtualMachineScaleSets",
- "Microsoft.HybridCompute/machines",
- "Microsoft.DigitalTwins/DigitalTwinsInstances",
- "Microsoft.Synapse/workspaces",
- "Microsoft.Network/bastionHosts"
- ],
- "Microsoft.IdMapping": {
- "vmId": "properties.roleId",
- "roleId": "properties.vmId"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PolicyInsights",
- "namespace": "Microsoft.PolicyInsights",
- "authorizations": [
- {
- "applicationId": "1d78a85d-813d-46f0-b496-dd72f50a3ec0",
- "roleDefinitionId": "63d2b225-4c34-4641-8768-21a1f7c68ce8"
- },
- {
- "applicationId": "8cae6e77-e04e-42ce-b5cb-50d82bce26b1",
- "roleDefinitionId": "4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "policyEvents",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-07-01-preview",
- "2018-04-04",
- "2017-12-12-preview",
- "2017-10-17-preview",
- "2017-08-09-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "policyStates",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-07-01-preview",
- "2018-04-04",
- "2017-12-12-preview",
- "2017-10-17-preview",
- "2017-08-09-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-07-01-preview",
- "2018-04-04",
- "2017-12-12-preview",
- "2017-10-17-preview",
- "2017-08-09-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "asyncOperationResults",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "remediations",
- "locations": [],
- "apiVersions": [
- "2019-07-01",
- "2018-07-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "eventGridFilters",
- "locations": [],
- "apiVersions": [
- "2020-10-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "checkPolicyRestrictions",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview",
- "2020-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "policyTrackedResources",
- "locations": [],
- "apiVersions": [
- "2018-07-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "policyMetadata",
- "locations": [],
- "apiVersions": [
- "2019-10-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Security",
- "namespace": "Microsoft.Security",
- "authorizations": [
- {
- "applicationId": "8edd93e1-2103-40b4-bd70-6e34e586362d",
- "roleDefinitionId": "855AF4C4-82F6-414C-B1A2-628025628B9A"
- },
- {
- "applicationId": "fc780465-2017-40d4-a0c5-307022471b92"
- },
- {
- "applicationId": "8ee8fdad-f234-4243-8f3b-15c294843740"
- },
- {
- "applicationId": "04687a56-4fc2-4e36-b274-b862fb649733"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "securityStatuses",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "tasks",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "secureScores",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "secureScores/secureScoreControls",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "secureScoreControls",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "secureScoreControlDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "connectors",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "regulatoryComplianceStandards",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2019-01-01-preview",
- "2019-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "regulatoryComplianceStandards/regulatoryComplianceControls",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2019-01-01-preview",
- "2019-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2019-01-01-preview",
- "2019-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "alerts",
- "locations": [
- "Central US",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-01-01",
- "2019-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "alertsSuppressionRules",
- "locations": [],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "autoDismissAlertsRules",
- "locations": [],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dataCollectionAgents",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "pricings",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2018-06-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "AutoProvisioningSettings",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2019-01-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Compliances",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2017-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "securityContacts",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2020-01-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaceSettings",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2019-01-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "complianceResults",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2017-08-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "policies",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "assessments",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "assessmentMetadata",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "subAssessments",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "securitySolutions",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securitySolutions",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "discoveredSecuritySolutions",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/discoveredSecuritySolutions",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "allowedConnections",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/allowedConnections",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "topologies",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/topologies",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "securitySolutionsReferenceData",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securitySolutionsReferenceData",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "jitPolicies",
- "locations": [
- "Central US",
- "East US",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Switzerland North",
- "Germany West Central",
- "West Central US",
- "West US 2"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "jitNetworkAccessPolicies",
- "locations": [
- "Central US",
- "East US",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "West Central US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/jitNetworkAccessPolicies",
- "locations": [
- "Central US",
- "East US",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Switzerland North",
- "Germany West Central",
- "West Central US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "securityStatusesSummaries",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationWhitelistings",
- "locations": [
- "Central US",
- "East US",
- "West Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/applicationWhitelistings",
- "locations": [
- "Central US",
- "West Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/alerts",
- "locations": [
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-01-01",
- "2019-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/tasks",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "externalSecuritySolutions",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/externalSecuritySolutions",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "InformationProtectionPolicies",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2017-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "advancedThreatProtectionSettings",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US 2",
- "West US",
- "France Central",
- "UAE North",
- "Germany West Central",
- "Switzerland North"
- ],
- "apiVersions": [
- "2019-01-01",
- "2017-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "sqlVulnerabilityAssessments",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "deviceSecurityGroups",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01",
- "2017-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "iotSecuritySolutions",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01",
- "2017-08-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "iotDefenderSettings",
- "locations": [],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotSensors",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "onPremiseIotSensors",
- "locations": [],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "devices",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "iotSites",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "iotSecuritySolutions/analyticsModels",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotAlertTypes",
- "locations": [],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotSecuritySolutions/iotAlertTypes",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotAlerts",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "iotSecuritySolutions/iotAlerts",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotRecommendationTypes",
- "locations": [],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotSecuritySolutions/iotRecommendationTypes",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotRecommendations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "iotSecuritySolutions/iotRecommendations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotSecuritySolutions/analyticsModels/aggregatedAlerts",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotSecuritySolutions/analyticsModels/aggregatedRecommendations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "settings",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2021-06-01",
- "2019-01-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "serverVulnerabilityAssessments",
- "locations": [
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "adaptiveNetworkHardenings",
- "locations": [
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "automations",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "North Europe",
- "West Europe",
- "France Central",
- "France South",
- "UK South",
- "UK West",
- "Norway East",
- "Norway West",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ingestionSettings",
- "locations": [],
- "apiVersions": [
- "2021-01-15-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceBus",
- "namespace": "Microsoft.ServiceBus",
- "authorizations": [
- {
- "applicationId": "80a10ef9-8168-493d-abf9-3297c4ef6e3c",
- "roleDefinitionId": "2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"
- },
- {
- "applicationId": "eb070ea5-bd17-41f1-ad68-5851f6e71774"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "namespaces",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "defaultApiVersion": "2017-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "namespaces/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/networkrulesets",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/privateEndpointConnections",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/queues",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/queues/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/topics",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/topics/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/topics/subscriptions",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/topics/subscriptions/rules",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNamespaceAvailability",
- "locations": [],
- "apiVersions": [
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sku",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "premiumMessagingRegions",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/eventgridfilters",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/disasterrecoveryconfigs",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/disasterrecoveryconfigs/checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-04-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.metricId",
- "metrics": {
- "metricsFilterPathSelector": "sku.tier",
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "servicebus",
- "sourceMdmNamespace": "ServiceBusMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus",
- "onbehalfSupportedLogCategories": [
- "OperationalLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "eb070ea5-bd17-41f1-ad68-5851f6e71774"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StorSimple",
- "namespace": "Microsoft.StorSimple",
- "resourceTypes": [
- {
- "resourceType": "managers",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "West Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2019-05-13",
- "2017-06-01",
- "2017-05-15",
- "2017-01-01",
- "2016-10-01",
- "2016-06-01",
- "2015-03-15",
- "2014-09-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2019-05-13",
- "2016-10-01",
- "2016-06-01",
- "2015-03-15",
- "2014-09-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.visualstudio",
- "namespace": "microsoft.visualstudio",
- "authorization": {
- "applicationId": "499b84ac-1321-427f-aa17-267ca6975798",
- "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"
- },
- "resourceTypes": [
- {
- "resourceType": "account",
- "locations": [
- "North Central US",
- "South Central US",
- "West Central US",
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "West India",
- "Central India",
- "South India",
- "West US 2",
- "Canada Central",
- "UK South"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-02-26"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "North Central US",
- "South Central US",
- "West Central US",
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "West India",
- "Central India",
- "South India",
- "West US 2",
- "Canada Central",
- "UK South"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-02-26"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "account/project",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "West India",
- "Central India",
- "South India",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "UK South",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-02-26"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "account/extension",
- "locations": [
- "North Central US",
- "South Central US",
- "West Central US",
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "West India",
- "Central India",
- "South India",
- "West US 2",
- "Canada Central",
- "UK South"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-02-26"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "North Central US",
- "South Central US",
- "West Central US",
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "West India",
- "Central India",
- "South India",
- "West US 2",
- "Canada Central",
- "UK South"
- ],
- "apiVersions": [
- "2014-04-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/84codes.CloudAMQP",
- "namespace": "84codes.CloudAMQP",
- "resourceTypes": [
- {
- "resourceType": "servers",
- "locations": [
- "East US 2",
- "Central US",
- "East US",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2016-08-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Crypteron.DataSecurity",
- "namespace": "Crypteron.DataSecurity",
- "resourceTypes": [
- {
- "resourceType": "apps",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2016-08-12"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-08-12"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-12"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-12"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AAD",
- "namespace": "Microsoft.AAD",
- "authorizations": [
- {
- "applicationId": "443155a6-77f3-45e3-882b-22b3a8d431fb",
- "roleDefinitionId": "7389DE79-3180-4F07-B2BA-C5BA1F01B03A"
- },
- {
- "applicationId": "abba844e-bc0e-44b0-947a-dc74e5d09022",
- "roleDefinitionId": "63BC473E-7767-42A5-A3BF-08EB71200E04"
- },
- {
- "applicationId": "d87dcbc6-a371-462e-88e3-28ad15ec4e64",
- "roleDefinitionId": "861776c5-e0df-4f95-be4f-ac1eec193323"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "DomainServices",
- "locations": [
- "West US",
- "Central US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "West Central US",
- "North Central US",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "UK South",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2020-01-01",
- "2017-06-01",
- "2017-01-01"
- ],
- "defaultApiVersion": "2021-05-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "DomainServices/oucontainer",
- "locations": [
- "West US",
- "Central US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "West Central US",
- "North Central US",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "UK South",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2020-01-01",
- "2017-06-01"
- ],
- "defaultApiVersion": "2021-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West US",
- "Central US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "West Central US",
- "North Central US",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "UK South",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2020-01-01",
- "2017-06-01",
- "2017-01-01"
- ],
- "defaultApiVersion": "2021-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "West US",
- "Central US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "West Central US",
- "North Central US",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "UK South",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2020-01-01",
- "2017-06-01",
- "2017-01-01"
- ],
- "defaultApiVersion": "2021-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "Central US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "West Central US",
- "North Central US",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "UK South",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2020-01-01",
- "2017-06-01",
- "2017-01-01"
- ],
- "defaultApiVersion": "2021-05-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-06-01",
- "operations": "2017-06-01"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AADDOMAINSERVICES",
- "onbehalfSupportedLogCategories": [
- "AccountManagement",
- "PolicyChange",
- "LogonLogoff",
- "PrivilegeUse",
- "SystemSecurity",
- "ObjectAccess",
- "DirectoryServiceAccess",
- "AccountLogon",
- "DetailTracking"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.aadiam",
- "namespace": "microsoft.aadiam",
- "authorizations": [
- {
- "applicationId": "1b912ec3-a9dd-4c4d-a53e-76aa7adb28d7",
- "roleDefinitionId": "c4cfa0e8-3cb5-4ced-9c3c-efaad3348120"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "azureADMetrics",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-07-01-preview",
- "2020-07-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateLinkForAzureAD",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "tenants",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2017-04-01",
- "2017-03-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01"
- ],
- "defaultApiVersion": "2017-04-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-04-01",
- "operations": "2017-04-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.tenantId",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AadLogConnectorProd",
- "onbehalfSupportedLogCategories": [
- "Signin"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2017-04-01",
- "2017-03-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "diagnosticSettings",
- "locations": [],
- "apiVersions": [
- "2017-04-01-preview",
- "2017-04-01"
- ],
- "defaultApiVersion": "2017-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "diagnosticSettingsCategories",
- "locations": [],
- "apiVersions": [
- "2017-04-01-preview",
- "2017-04-01"
- ],
- "defaultApiVersion": "2017-04-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-04-01",
- "operations": "2017-04-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.aadiam"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "AzureADMetrics",
- "sourceMdmNamespace": "TenantMetric/PROD"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Addons",
- "namespace": "Microsoft.Addons",
- "authorization": {
- "applicationId": "24d3987b-be4a-48e0-a3e7-11c186f39e41",
- "roleDefinitionId": "8004BAAB-A4CB-4981-8571-F7E44D039D93"
- },
- "resourceTypes": [
- {
- "resourceType": "supportProviders",
- "locations": [
- "West Central US",
- "South Central US",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2018-03-01",
- "2017-05-15"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "South Central US",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2018-03-01",
- "2017-05-15"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "West Central US",
- "South Central US",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2018-03-01",
- "2017-05-15"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ADHybridHealthService",
- "namespace": "Microsoft.ADHybridHealthService",
- "resourceTypes": [
- {
- "resourceType": "services",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "addsservices",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "configuration",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "agents",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "aadsupportcases",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reports",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servicehealthmetrics",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "logs",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "anonymousapiusers",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AgFoodPlatform",
- "namespace": "Microsoft.AgFoodPlatform",
- "authorizations": [
- {
- "applicationId": "e420dc86-d66f-4069-a2d0-be2f937bd272",
- "roleDefinitionId": "c9511e72-16f4-4804-9bed-d3f21cbe122f"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-05-12-preview"
- ],
- "defaultApiVersion": "2020-05-12-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "farmBeatsExtensionDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-12-preview"
- ],
- "defaultApiVersion": "2020-05-12-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-05-12-preview"
- ],
- "defaultApiVersion": "2020-05-12-preview",
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AISupercomputer",
- "namespace": "Microsoft.AISupercomputer",
- "authorizations": [
- {
- "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3",
- "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee"
- },
- {
- "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1",
- "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceTypeSeries",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceTypeSeries/instanceTypes",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "images",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central",
- "South Central US"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationIds": [
- "349e15d0-1c96-4829-95e5-7fc8fb358ff3",
- "9581bc0e-c952-4fd3-8d99-e777877718b1"
- ]
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AnalysisServices",
- "namespace": "Microsoft.AnalysisServices",
- "authorization": {
- "applicationId": "4ac7d521-0382-477b-b0f8-7e1d95f85ca2",
- "roleDefinitionId": "490d5987-bcf6-4be6-b6b2-056a78cb693a"
- },
- "resourceTypes": [
- {
- "resourceType": "servers",
- "locations": [
- "West US",
- "North Europe",
- "South Central US",
- "West Europe",
- "West Central US",
- "Southeast Asia",
- "East US 2",
- "North Central US",
- "Brazil South",
- "Canada Central",
- "Australia Southeast",
- "Japan East",
- "UK South",
- "West India",
- "West US 2",
- "Central US",
- "East US",
- "Australia East"
- ],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "defaultApiVersion": "2017-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "defaultApiVersion": "2017-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West US",
- "North Europe",
- "South Central US",
- "West Europe",
- "West Central US",
- "Southeast Asia",
- "East US 2",
- "North Central US",
- "Brazil South",
- "Canada Central",
- "Australia Southeast",
- "Japan East",
- "UK South",
- "West India",
- "West US 2",
- "Central US",
- "East US",
- "Australia East"
- ],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "defaultApiVersion": "2017-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "West US",
- "North Europe",
- "South Central US",
- "West Europe",
- "West Central US",
- "Southeast Asia",
- "East US 2",
- "North Central US",
- "Brazil South",
- "Canada Central",
- "Australia Southeast",
- "Japan East",
- "UK South",
- "West India",
- "West US 2",
- "Central US",
- "East US",
- "Australia East"
- ],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "defaultApiVersion": "2017-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "West US",
- "North Europe",
- "South Central US",
- "West Europe",
- "West Central US",
- "Southeast Asia",
- "East US 2",
- "North Central US",
- "Brazil South",
- "Canada Central",
- "Australia Southeast",
- "Japan East",
- "UK South",
- "West India",
- "West US 2",
- "Central US",
- "East US",
- "Australia East"
- ],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "defaultApiVersion": "2017-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US 2",
- "West Central US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-08-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "AsPaaS",
- "sourceMdmNamespace": "SystemCounters"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "ASAzureRP"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "ASAzureRP",
- "onbehalfSupportedLogCategories": [
- "Service",
- "Engine"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AnyBuild",
- "namespace": "Microsoft.AnyBuild",
- "authorizations": [
- {
- "applicationId": "16f9e0a0-ac78-4c2c-a55a-f3855317a63a",
- "roleDefinitionId": "6fc3ed3a-fa07-4e79-9ac0-2db46b294d31"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-08-26"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "West US 2",
- "East US",
- "North Europe"
- ],
- "apiVersions": [
- "2020-08-26"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "clusters",
- "locations": [
- "West US 2",
- "East US",
- "North Europe"
- ],
- "apiVersions": [
- "2020-08-26"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-08-26"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AppAssessment",
- "namespace": "Microsoft.AppAssessment",
- "authorizations": [
- {
- "applicationId": "f9c691e6-93b3-4d57-944c-afcc737f9abf",
- "roleDefinitionId": "1dc07278-9fb7-4aa4-bf32-bbb5a0a0c0bd"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-09-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-09-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US 2 EUAP",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/osVersions",
- "locations": [
- "East US 2 EUAP",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AppPlatform",
- "namespace": "Microsoft.AppPlatform",
- "authorizations": [
- {
- "applicationId": "03b39d0f-4213-4864-a245-b1476ec03169"
- },
- {
- "applicationId": "584a29b4-7876-4445-921e-71e427d4f4b3"
- },
- {
- "applicationId": "b61cc489-e138-4a69-8bf3-c2c5855c8784",
- "roleDefinitionId": "462ddd96-910a-44f5-adfa-644d99942778"
- },
- {
- "applicationId": "e8de9221-a19c-4c81-b814-fd37c6caf9d2"
- },
- {
- "applicationId": "366cbfa5-46b3-47fb-9d70-55fb923b4833",
- "roleDefinitionId": "d63d711d-1c1a-41d9-905a-fb87b28d47d9"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Spring",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Spring/apps",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "Spring/apps/deployments",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatus",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-05-01-preview",
- "operations": "2019-05-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "Microservices4SpringMetrics",
- "sourceMdmNamespace": "ServiceMetrics"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Microservices4Spring"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Microservices4Spring",
- "onbehalfSupportedLogCategories": [
- "ApplicationConsole",
- "SystemLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "0a0ae72b-f728-4dde-abe9-1e3e72a7a92c"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Automanage",
- "namespace": "Microsoft.Automanage",
- "authorizations": [
- {
- "applicationId": "9ae330ab-d710-466b-851c-c828e7340846"
- },
- {
- "applicationId": "d828acde-4b48-47f5-a6e8-52460104a052",
- "roleDefinitionId": "111e90e1-c9ec-40f6-b898-c0964578da58"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "configurationProfileAssignments",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "West US 2",
- "West Central US",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Japan East",
- "UK South",
- "Australia Southeast",
- "Australia East",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "configurationProfileAssignmentIntents",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "West US 2",
- "West Central US",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Japan East",
- "UK South",
- "Australia Southeast",
- "Australia East",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-03-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "accounts",
- "locations": [
- "Central US",
- "East US 2",
- "East US",
- "North Central US",
- "South Central US",
- "West US 2",
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Canada Central",
- "Japan East",
- "UK South",
- "Australia Southeast",
- "Australia East",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-06-30-preview"
- ],
- "defaultApiVersion": "2020-06-30-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "configurationProfilePreferences",
- "locations": [
- "Central US",
- "East US 2",
- "East US",
- "North Central US",
- "South Central US",
- "West US 2",
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Canada Central",
- "Japan East",
- "UK South",
- "Australia Southeast",
- "Australia East",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-06-30-preview"
- ],
- "defaultApiVersion": "2020-06-30-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Central US",
- "East US 2",
- "East US",
- "North Central US",
- "South Central US",
- "West US 2",
- "West Central US",
- "West US"
- ],
- "apiVersions": [
- "2020-06-30-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftAutomanage"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "mdsEnvironment": "test",
- "serviceIdentity": "MicrosoftAutomanage"
- }
- ]
- },
- "version": "1.0"
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Automation",
- "namespace": "Microsoft.Automation",
- "authorizations": [
- {
- "applicationId": "fc75330b-179d-49af-87dd-3b1acf6827fa",
- "roleDefinitionId": "95fd5de3-d071-4362-92bf-cf341c1de832"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "automationAccounts",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2021-04-01",
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "defaultApiVersion": "2018-06-30",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "automationAccounts/runbooks",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "West US",
- "Central US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "automationAccounts/configurations",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "West US",
- "Central US",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "Central India",
- "Australia Southeast",
- "Canada Central",
- "North Europe",
- "East Asia",
- "France Central",
- "Central US EUAP"
- ],
- "apiVersions": [
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "automationAccounts/webhooks",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "Australia East",
- "France Central"
- ],
- "apiVersions": [
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "South Central US"
- ],
- "apiVersions": [
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "automationAccounts/softwareUpdateConfigurations",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "automationAccounts/jobs",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "automationAccounts/privateLinkResources",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "automationAccounts/privateEndpointConnections",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "automationAccounts/privateEndpointConnectionProxies",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "fc75330b-179d-49af-87dd-3b1acf6827fa"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftAutomation"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "MicrosoftAutomationProdShoebox",
- "sourceMdmNamespace": "JobCount"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "mdsEnvironment": "prod",
- "onbehalfSupportedLogCategories": [
- "JobLogs",
- "JobStreams",
- "DscNodeStatus"
- ],
- "serviceIdentity": "MicrosoftAutomation"
- }
- ]
- },
- "version": "1.0"
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AutonomousDevelopmentPlatform",
- "namespace": "Microsoft.AutonomousDevelopmentPlatform",
- "authorizations": [
- {
- "applicationId": "dad37da6-229d-4bc0-8b94-fee8600589db",
- "roleDefinitionId": "5cbfe752-1a6e-4926-b68f-0475c305f85e",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- },
- {
- "applicationId": "150c8903-2280-4ab6-8708-b080044d94c6",
- "roleDefinitionId": "5cbfe752-1a6e-4926-b68f-0475c305f85e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "East US 2 EUAP",
- "West Europe"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checknameavailability",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AutonomousSystems",
- "namespace": "Microsoft.AutonomousSystems",
- "authorizations": [
- {
- "applicationId": "a967240f-810b-4f79-85e5-25870cc69cbb",
- "roleDefinitionId": "47b23f55-5e18-4fc7-a69a-f9b79a9811ea",
- "managedByRoleDefinitionId": "6ee14824-e3a8-4536-ad65-346e3406f3c4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "defaultApiVersion": "2020-05-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/validateCreateRequest",
- "locations": [
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "defaultApiVersion": "2020-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/operationresults",
- "locations": [
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "defaultApiVersion": "2020-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "defaultApiVersion": "2020-05-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a967240f-810b-4f79-85e5-25870cc69cbb"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AVS",
- "namespace": "Microsoft.AVS",
- "authorizations": [
- {
- "applicationId": "608f9929-9737-432e-860f-4e1c1821052f",
- "roleDefinitionId": "a12e1b40-7eca-4c51-be1d-d8bc564dcfdd",
- "allowedThirdPartyExtensions": [
- {
- "name": "VMCP"
- }
- ]
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkTrialAvailability",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkQuotaAvailability",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-07-17-preview",
- "2020-03-20"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.AVS"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "AVSShoebox2",
- "sourceMdmNamespace": "Vsphere.Cluster.ClusterServices"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateClouds/clusters",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/authorizations",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/hcxEnterpriseSites",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/globalReachConnections",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/addons",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/dhcpConfigurations",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/portMirroringProfiles",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/segments",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/vmGroups",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/gateways",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/virtualMachines",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/dnsServices",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/dnsZones",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/cloudLinks",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2021-06-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-03-20",
- "operations": "2020-03-20"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.AVS"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "AVSShoebox2",
- "sourceMdmNamespace": "Vsphere.Datastore.Disk"
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "608f9929-9737-432e-860f-4e1c1821052f"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureActiveDirectory",
- "namespace": "Microsoft.AzureActiveDirectory",
- "resourceTypes": [
- {
- "resourceType": "guestUsages",
- "locations": [
- "Global",
- "United States",
- "Europe",
- "Asia Pacific",
- "Australia"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "defaultApiVersion": "2020-05-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "b2cDirectories",
- "locations": [
- "Global",
- "United States",
- "Europe",
- "Asia Pacific",
- "Australia"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-05-01-preview",
- "2019-01-01-privatepreview",
- "2019-01-01-preview",
- "2017-01-30",
- "2016-12-13-preview",
- "2016-02-10-privatepreview"
- ],
- "defaultApiVersion": "2017-01-30",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Global",
- "United States",
- "Europe",
- "Asia Pacific",
- "Australia"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-05-01-preview",
- "2019-01-01-privatepreview",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Global",
- "United States",
- "Europe",
- "Asia Pacific",
- "Australia"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-05-01-preview",
- "2019-01-01-privatepreview",
- "2019-01-01-preview",
- "2017-01-30",
- "2016-12-13-preview",
- "2016-02-10-privatepreview"
- ],
- "defaultApiVersion": "2017-01-30",
- "capabilities": "None"
- },
- {
- "resourceType": "b2ctenants",
- "locations": [
- "Global",
- "United States",
- "Europe",
- "Asia Pacific",
- "Australia"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-05-01-preview",
- "2016-02-10-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureArcData",
- "namespace": "Microsoft.AzureArcData",
- "authorizations": [
- {
- "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05",
- "roleDefinitionId": "2e103dbb-6933-4a8b-a358-17ee9ff00b9e"
- },
- {
- "applicationId": "bb55177b-a7d9-4939-a257-8ab53a3b2bc6",
- "roleDefinitionId": "53e71f1b-1471-4d76-9ca8-e6ed70639ef7"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2019-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2020-12-08-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "Japan East",
- "Australia East",
- "Korea Central",
- "UK South",
- "France Central",
- "East US 2",
- "Central US",
- "Central US EUAP",
- "West US 2",
- "East Asia",
- "East US",
- "East US 2 EUAP",
- "North Europe",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2019-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dataControllers",
- "locations": [
- "Japan East",
- "Australia East",
- "Korea Central",
- "UK South",
- "France Central",
- "East US 2",
- "Central US",
- "West US 2",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2020-12-08-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sqlManagedInstances",
- "locations": [
- "Japan East",
- "Australia East",
- "Korea Central",
- "UK South",
- "France Central",
- "East US 2",
- "Central US",
- "West US 2",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2020-12-08-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "postgresInstances",
- "locations": [
- "Japan East",
- "Australia East",
- "Korea Central",
- "UK South",
- "France Central",
- "East US 2",
- "Central US",
- "West US 2",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2020-12-08-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sqlServerInstances",
- "locations": [
- "Australia East",
- "UK South",
- "East US 2",
- "Central US",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2020-12-08-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureCIS",
- "namespace": "Microsoft.AzureCIS",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "autopilotEnvironments",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "Southeast Asia",
- "South Central US",
- "UAE North",
- "UK South",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureData",
- "namespace": "Microsoft.AzureData",
- "resourceTypes": [
- {
- "resourceType": "sqlServerRegistrations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "France Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "East US",
- "Central US",
- "East Asia",
- "West Europe",
- "West Central US",
- "West US 2",
- "East US 2"
- ],
- "apiVersions": [
- "2019-05-10-preview"
- ],
- "defaultApiVersion": "2019-05-10-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "France Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "South India",
- "South Africa North",
- "UK South",
- "UK West",
- "West US",
- "East US",
- "Central US",
- "East Asia",
- "West Europe",
- "West Central US",
- "West US 2",
- "East US 2"
- ],
- "apiVersions": [
- "2019-05-10-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sqlServerRegistrations/sqlServers",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "France Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "South India",
- "South Africa North",
- "UK South",
- "UK West",
- "West US",
- "East US",
- "Central US",
- "East Asia",
- "West Europe",
- "West Central US",
- "West US 2",
- "East US 2"
- ],
- "apiVersions": [
- "2019-05-10-preview"
- ],
- "defaultApiVersion": "2019-05-10-preview",
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureSphere",
- "namespace": "Microsoft.AzureSphere",
- "authorizations": [
- {
- "applicationId": "e7d5afaf-5e93-4aad-b546-878812ff572c",
- "roleDefinitionId": "0bf1834f-602f-4692-b93c-814d655198fd"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "catalogs",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "catalogs/products",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs/products/devicegroups",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs/devices",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs/certificates",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs/images",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs/deployments",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureStack",
- "namespace": "Microsoft.AzureStack",
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2017-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registrations",
- "locations": [
- "West Central US",
- "Global"
- ],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-06-01-preview",
- "2017-06-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registrations/products",
- "locations": [
- "West Central US",
- "Global"
- ],
- "apiVersions": [
- "2017-06-01",
- "2016-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registrations/customerSubscriptions",
- "locations": [
- "West Central US",
- "Global"
- ],
- "apiVersions": [
- "2017-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "cloudManifestFiles",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2017-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "linkedSubscriptions",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureStackHCI",
- "namespace": "Microsoft.AzureStackHCI",
- "authorizations": [
- {
- "applicationId": "1412d89f-b8a8-4111-b4fd-e82905cbd85d",
- "roleDefinitionId": "90ffa33f-4875-44d8-b86f-d41c3aa6050e",
- "managedByRoleDefinitionId": "5ece1ad5-ab30-4099-b16c-3aa7c8f5acb9"
- },
- {
- "applicationId": "1322e676-dee7-41ee-a874-ac923822781c",
- "roleDefinitionId": "e91a9804-9f4d-4501-bf85-03bd4ea78451"
- },
- {
- "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05",
- "roleDefinitionId": "12580382-2aec-4b61-ae1c-ecbdb4a0a25f"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-11-01-preview",
- "2020-10-01",
- "2020-03-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-11-01-preview",
- "2020-10-01"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US",
- "East US 2 EUAP",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "clusters",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-10-01"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters/arcSettings",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/arcSettings/extensions",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BareMetalInfrastructure",
- "namespace": "Microsoft.BareMetalInfrastructure",
- "authorization": {
- "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39",
- "roleDefinitionId": "4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- },
- "resourceTypes": [
- {
- "resourceType": "bareMetalInstances",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "South Central US",
- "West Europe",
- "North Europe",
- "Japan East",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "South Central US",
- "West Europe",
- "North Europe",
- "Japan East",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "South Central US",
- "West Europe",
- "North Europe",
- "Japan East",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BatchAI",
- "namespace": "Microsoft.BatchAI",
- "authorization": {
- "applicationId": "9fcb3732-5f52-4135-8c08-9d4bbaf203ea",
- "roleDefinitionId": "703B89C7-CE2C-431B-BDD8-FA34E39AF696",
- "managedByRoleDefinitionId": "90B8E153-EBFF-4073-A95F-4DAD56B14C78"
- },
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ViennaAzureMonitor",
- "sourceMdmNamespace": "vienna"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices",
- "onbehalfSupportedLogCategories": [
- "BaiJobEvent",
- "BaiClusterNodeEvent",
- "BaiClusterEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/clusters",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/fileservers",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/experiments",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ViennaAzureMonitor",
- "sourceMdmNamespace": "vienna"
- }
- ]
- }
- }
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/experiments/jobs",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ViennaAzureMonitor",
- "sourceMdmNamespace": "vienna"
- }
- ]
- }
- }
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US",
- "West US 2",
- "West Europe",
- "East US 2",
- "North Europe",
- "Australia East",
- "West Central US",
- "Southeast Asia",
- "South Central US",
- "West US"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01",
- "2017-09-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-05-01",
- "operations": "2018-05-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ViennaAzureMonitor",
- "sourceMdmNamespace": "vienna"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices",
- "onbehalfSupportedLogCategories": [
- "BaiJobEvent",
- "BaiClusterNodeEvent",
- "BaiClusterEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Billing",
- "namespace": "Microsoft.Billing",
- "authorizations": [
- {
- "applicationId": "80dbdb39-4f33-4799-8b6f-711b5e3e61b6",
- "roleDefinitionId": "acdc79db-513f-461d-a542-61908d543bdc"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "billingPeriods",
- "locations": [],
- "apiVersions": [
- "2018-03-01-preview",
- "2017-04-24-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "invoices",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview",
- "2018-03-01-preview",
- "2017-04-24-preview",
- "2017-02-27-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "enrollmentAccounts",
- "locations": [],
- "apiVersions": [
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "createBillingRoleAssignment",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "billingAccounts/createBillingRoleAssignment",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/createBillingRoleAssignment",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingPermissions",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "billingAccounts/billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview",
- "2018-06-30",
- "2018-05-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/policies",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/operationResults",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/customers",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/instructions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/products",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/transactions",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/elevate",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/createInvoiceSectionOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/patchOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/patchOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/productMoveOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/billingSubscriptionMoveOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/BillingProfiles/patchOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "departments",
- "locations": [],
- "apiVersions": [
- "2018-06-30",
- "2018-05-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/departments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2019-10-01-preview",
- "2018-06-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/departments/billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/departments/billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/departments/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/enrollmentAccounts",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2019-10-01-preview",
- "2018-06-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/enrollmentAccounts/billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/enrollmentAccounts/billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/enrollmentAccounts/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/enrollmentAccounts/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/departments/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/paymentMethods",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/availableBalance",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoices",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoices",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/transactions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/transactions",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/transactions",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/transactions",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoices/transactions",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoices/transactions",
- "locations": [],
- "apiVersions": [
- "2020-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/validateDeleteBillingProfileEligibility",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/validateDeleteInvoiceSectionEligibility",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoices/transactionSummary",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingSubscriptions/invoices",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationStatus",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/products",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/products",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/products/updateAutoRenew",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/products/updateAutoRenew",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/products",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/products",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-09-01-preview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview",
- "2018-06-30",
- "2018-03-01-preview",
- "2017-04-24-preview",
- "2017-02-27-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/initiateTransfer",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/initiateTransfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/transfers",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/transfers",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "transfers/acceptTransfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "transfers",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "transfers/declineTransfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "transfers/validateTransfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/initiateTransfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/transfers",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingProperty",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/policies",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/policies",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoices/pricesheet",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/pricesheet",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/pricesheetDownloadOperations",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/billingSubscriptions/transfer",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/products/transfer",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/products/transfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/productTransfersResults",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "transfers/operationStatus",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/agreements",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/lineOfCredit",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/paymentMethods",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "paymentMethods",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/paymentMethodLinks",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/payableOverage",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/payNow",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/reservations",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/reservations",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/validateDetachPaymentMethodEligibility",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validateAddress",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "promotions",
- "locations": [],
- "apiVersions": [
- "2020-11-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "promotions/checkeligibility",
- "locations": [],
- "apiVersions": [
- "2020-11-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingSubscriptions/elevateRole",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/appliedReservationOrders",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-beta"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Bing",
- "namespace": "Microsoft.Bing",
- "authorizations": [
- {
- "applicationId": "c19490b5-c092-426f-b1a2-674b279d4975",
- "roleDefinitionId": "7963cd60-9634-4abc-9a64-2482a3ef6373"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/skus",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/usages",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Blockchain",
- "namespace": "Microsoft.Blockchain",
- "authorizations": [
- {
- "applicationId": "78827f38-7b69-4d5e-a627-d6fdd9c759a0",
- "roleDefinitionId": "9c68eaf3-8315-4e5c-b857-641b16b21f8f"
- },
- {
- "applicationId": "049d4938-2ef2-4274-aa8f-630fc9bc33d1",
- "roleDefinitionId": "c6dd0893-0495-488a-ac21-ee5f1ba89769"
- },
- {
- "applicationId": "911e905a-a50e-4c94-9f7c-48bb12f549ed"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "watchers",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "defaultApiVersion": "2019-06-01-preview",
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "blockchainMembers",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/watcherOperationResults",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "defaultApiVersion": "2019-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East",
- "West Central US"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/blockchainMemberOperationResults",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/listConsortiums",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East",
- "West Central US"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-06-01-preview",
- "operations": "2018-06-01-preview"
- },
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftBlockchainShoebox",
- "sourceMdmNamespace": "NodeMetrics"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Blockchain"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Blockchain",
- "onbehalfSupportedLogCategories": [
- "BlockchainApplication",
- "Proxy",
- "FabricOrderer",
- "FabricPeer"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BlockchainTokens",
- "namespace": "Microsoft.BlockchainTokens",
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2019-07-19-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Blueprint",
- "namespace": "Microsoft.Blueprint",
- "authorizations": [
- {
- "applicationId": "f71766dc-90d9-4b7d-bd9d-4499c4331c3f",
- "roleDefinitionId": "cb180127-cf6d-4672-9e75-e29a487f9658"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "blueprints",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "blueprints/artifacts",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "blueprints/versions",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "blueprints/versions/artifacts",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "blueprintAssignments",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsExtension"
- },
- {
- "resourceType": "blueprintAssignments/operations",
- "locations": [],
- "apiVersions": [
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "blueprintAssignments/assignmentOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "f71766dc-90d9-4b7d-bd9d-4499c4331c3f"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BotService",
- "namespace": "Microsoft.BotService",
- "authorizations": [
- {
- "applicationId": "f3723d34-6ff5-4ceb-a148-d99dcd2511fc",
- "roleDefinitionId": "71213c26-43ed-41d8-9905-3c12971517a3"
- },
- {
- "applicationId": "27a762be-14e7-4f92-899c-151877d6d497",
- "roleDefinitionId": "aab320d1-5b9b-4748-982e-be803163df77"
- },
- {
- "applicationId": "5b404cf4-a79d-4cfe-b866-24bf8e1a4921",
- "roleDefinitionId": "3d07f186-e6fa-4974-ac88-b88eeda6370a"
- },
- {
- "applicationId": "ce48853e-0605-4f77-8746-d70ac63cc6bc",
- "roleDefinitionId": "d5b49851-91ee-42df-9dc4-00b3a3b4d96b"
- },
- {
- "applicationId": "e6650347-047f-4e51-9386-839384472ea5",
- "roleDefinitionId": "a9b54502-e245-45bc-bd0f-aa7e1074afdc"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "botServices",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2021-03-01",
- "operations": "2021-03-01"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "BotServices",
- "onbehalfSupportedLogCategories": [
- "BotRequest",
- "DependencyRequest"
- ]
- }
- ]
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "BotServices"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "BotFrameworkPlatform",
- "sourceMdmNamespace": "Metrics"
- }
- ]
- },
- "regionLess": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "botServices/channels",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "botServices/connections",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listAuthServiceProviders",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostSettings",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Capacity",
- "namespace": "Microsoft.Capacity",
- "authorizations": [
- {
- "applicationId": "4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b",
- "roleDefinitionId": "FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"
- },
- {
- "applicationId": "fbc197b7-9e9c-4f98-823f-93cb1cb554e6",
- "roleDefinitionId": "941F67D2-083A-4B78-AF91-9B3B30B9B150"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "resourceProviders",
- "locations": [],
- "apiVersions": [
- "2020-10-25",
- "2019-07-19-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceProviders/locations",
- "locations": [],
- "apiVersions": [
- "2020-10-25",
- "2019-07-19-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceProviders/locations/serviceLimits",
- "locations": [],
- "apiVersions": [
- "2020-10-25",
- "2019-07-19-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceProviders/locations/serviceLimitsRequests",
- "locations": [],
- "apiVersions": [
- "2020-10-25",
- "2019-07-19-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resources",
- "locations": [
- "South Central US"
- ],
- "apiVersions": [
- "2019-04-01",
- "2018-06-01",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders",
- "locations": [],
- "apiVersions": [
- "2020-11-15-preview",
- "2020-11-15-beta",
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2020-06-01",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/reservations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2021-03-01-beta",
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listbenefits",
- "locations": [],
- "apiVersions": [
- "2019-04-01-beta",
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2020-06-01",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/reservations/revisions",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs",
- "locations": [],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2021-03-01-beta",
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "appliedReservations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkOffers",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkScopes",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "calculatePrice",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "calculateExchange",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "exchange",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/calculateRefund",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/return",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2020-06-01",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/split",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/merge",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/swap",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validateReservationOrder",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/availableScopes",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/reservations/availableScopes",
- "locations": [],
- "apiVersions": [
- "2019-04-01-beta",
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "commercialReservationOrders",
- "locations": [],
- "apiVersions": [
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "calculatePurchasePrice",
- "locations": [],
- "apiVersions": [
- "2019-06-01-privatepreview",
- "2019-06-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "placePurchaseOrder",
- "locations": [],
- "apiVersions": [
- "2019-06-01-privatepreview",
- "2019-06-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkPurchaseStatus",
- "locations": [],
- "apiVersions": [
- "2019-06-01-privatepreview",
- "2019-06-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ownReservations",
- "locations": [],
- "apiVersions": [
- "2020-06-01-beta",
- "2020-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listSkus",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2021-01-01-beta"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "checkBenefitScopes",
- "locations": [],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2021-03-01-beta"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cascade",
- "namespace": "Microsoft.Cascade",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "sites",
- "locations": [
- "West US",
- "North Europe"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Locations/operationStatuses",
- "locations": [
- "West US",
- "Japan East",
- "North Europe"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Operations",
- "locations": [
- "West US",
- "Japan East",
- "North Europe"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ChangeAnalysis",
- "namespace": "Microsoft.ChangeAnalysis",
- "authorizations": [
- {
- "applicationId": "2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8",
- "roleDefinitionId": "f5a6bd90-af71-455c-9030-c486e8c42c95"
- },
- {
- "applicationId": "3edcf11f-df80-41b2-a5e4-7e213cca30d1",
- "roleDefinitionId": "f5a6bd90-af71-455c-9030-c486e8c42c95"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-04-01-preview",
- "2019-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceChanges",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-04-01",
- "2020-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "changes",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-04-01",
- "2020-10-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "changeSnapshots",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "computeChanges",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationIds": [
- "2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8",
- "3edcf11f-df80-41b2-a5e4-7e213cca30d1"
- ]
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Chaos",
- "namespace": "Microsoft.Chaos",
- "authorizations": [
- {
- "applicationId": "ecad3f28-c75d-4414-94e0-a5e1de4df79e",
- "roleDefinitionId": "16f6458e-a375-4d8d-934e-5c9933967cb4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-05-14-preview",
- "2021-04-02-preview",
- "2021-03-05-preview",
- "2021-02-12-preview",
- "2021-01-21-preview",
- "2020-11-30-preview",
- "2020-09-23-preview",
- "2020-09-14-preview",
- "2020-06-18-preview",
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "ecad3f28-c75d-4414-94e0-a5e1de4df79e"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicInfrastructureMigrate",
- "namespace": "Microsoft.ClassicInfrastructureMigrate",
- "authorization": {
- "applicationId": "5e5abe2b-83cd-4786-826a-a05653ebb103",
- "roleDefinitionId": "766c4d9b-ef83-4f73-8352-1450a506a69b"
- },
- "resourceTypes": [
- {
- "resourceType": "classicInfrastructureResources",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "South India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "Australia Central",
- "Australia Central 2",
- "Germany North",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "UAE North"
- ],
- "apiVersions": [
- "2015-06-15"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicSubscription",
- "namespace": "Microsoft.ClassicSubscription",
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-09-01",
- "2017-06-01"
- ],
- "defaultApiVersion": "2017-06-01",
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Codespaces",
- "namespace": "Microsoft.Codespaces",
- "authorizations": [
- {
- "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6",
- "roleDefinitionId": "59cd8abb-1e79-437f-9a05-4bca235c4c35"
- },
- {
- "applicationId": "48ef7923-268f-473d-bcf1-07f0997961f4",
- "roleDefinitionId": "59cd8abb-1e79-437f-9a05-4bca235c4c35"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "plans",
- "locations": [
- "West Europe",
- "East US",
- "West Us 2",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-07-10-beta",
- "2020-07-10-alpha",
- "2020-06-16-beta",
- "2020-06-16-alpha",
- "2020-06-16"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-07-10-privatepreview",
- "2020-07-10-beta",
- "2020-07-10-alpha",
- "2020-06-16-privatepreview",
- "2020-06-16-beta",
- "2020-06-16-alpha",
- "2020-06-16"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-07-10-privatepreview",
- "2020-07-10-beta",
- "2020-07-10-alpha",
- "2020-06-16-privatepreview",
- "2020-06-16-beta",
- "2020-06-16-alpha",
- "2020-06-16"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub",
- "Microsoft.ManagedIdentity": {
- "applicationId": "5e40b565-3ac2-4fbc-871e-068b78151bb0"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Commerce",
- "namespace": "Microsoft.Commerce",
- "resourceTypes": [
- {
- "resourceType": "UsageAggregates",
- "locations": [],
- "apiVersions": [
- "2015-06-01-preview",
- "2015-03-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RateCard",
- "locations": [],
- "apiVersions": [
- "2016-08-31-preview",
- "2015-06-01-preview",
- "2015-05-15"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-06-01-preview",
- "2015-03-31"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConfidentialLedger",
- "namespace": "Microsoft.ConfidentialLedger",
- "authorizations": [
- {
- "applicationId": "4353526e-1c33-4fcf-9e82-9683edf52848"
- },
- {
- "applicationId": "c9e0b461-3515-4a03-b576-ede91ed4336d"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-05-13-preview",
- "2020-12-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/operationstatuses",
- "locations": [
- "East US 2 EUAP",
- "East US",
- "South Central US"
- ],
- "apiVersions": [
- "2021-05-13-preview",
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Ledgers",
- "locations": [
- "East US",
- "South Central US"
- ],
- "apiVersions": [
- "2021-05-13-preview",
- "2020-12-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-05-13-preview"
- ],
- "defaultApiVersion": "2021-05-13-preview",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Confluent",
- "namespace": "Microsoft.Confluent",
- "authorizations": [
- {
- "applicationId": "1448fd13-7e74-41f4-b6e3-17e485d8ac2e",
- "roleDefinitionId": "4db34280-b0be-4827-aa5b-418391409cee"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/OperationStatuses",
- "locations": [
- "West US 2",
- "East US 2 EUAP",
- "Central US EUAP",
- "West Central US",
- "Australia East",
- "France Central",
- "Canada Central",
- "East US",
- "UK South",
- "West Europe",
- "Central US",
- "East US 2",
- "North Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "organizations",
- "locations": [
- "West US 2",
- "West Central US",
- "Australia East",
- "France Central",
- "Canada Central",
- "East US",
- "UK South",
- "West Europe",
- "Central US",
- "East US 2",
- "North Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "agreements",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedCache",
- "namespace": "Microsoft.ConnectedCache",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "CacheNodes",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2019-12-04-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedVehicle",
- "namespace": "Microsoft.ConnectedVehicle",
- "authorizations": [
- {
- "applicationId": "070fc472-7cef-4d53-9b65-34464c4d5f4a",
- "roleDefinitionId": "d9be9a0d-13a3-4571-9428-498be31834b1"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "Central US EUAP",
- "East US 2 EUAP",
- "West US 2",
- "West Europe",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "070fc472-7cef-4d53-9b65-34464c4d5f4a"
- },
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedVMwarevSphere",
- "namespace": "Microsoft.ConnectedVMwarevSphere",
- "authorizations": [
- {
- "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7",
- "roleDefinitionId": "a27a5b7c-3d1a-4e97-b0ad-195eef808eb6"
- },
- {
- "applicationId": "157638eb-a5cb-4c10-af42-2d6759eb1871",
- "roleDefinitionId": "59a59e1d-c18a-4c7c-8a99-2b5b311f08d2"
- },
- {
- "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1",
- "roleDefinitionId": "59a59e1d-c18a-4c7c-8a99-2b5b311f08d2"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US",
- "East US 2 EUAP",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "VCenters/InventoryItems",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "VirtualMachines/HybridIdentityMetadata",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "VirtualMachines/Extensions",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "VirtualMachines/GuestAgents",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Consumption",
- "namespace": "Microsoft.Consumption",
- "authorizations": [
- {
- "applicationId": "c5b17a4f-cc6f-4649-9480-684280a2af3a",
- "roleDefinitionId": "4a2e6ae9-2713-4cc9-a3b3-312899d687c3"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Forecasts",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "AggregatedCost",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "tenants",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationRecommendations",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01-preview",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-03-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationRecommendationDetails",
- "locations": [],
- "apiVersions": [
- "2019-10-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationSummaries",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01-preview",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationTransactions",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Balances",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Marketplaces",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Pricesheets",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview",
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationDetails",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01-preview",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Budgets",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2019-01-01-preview",
- "2019-01-01",
- "2018-12-01-preview",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-03-31",
- "2018-01-31",
- "2017-12-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "CostTags",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Tags",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2019-01-01",
- "2018-12-01-preview",
- "2018-10-01",
- "2018-08-31",
- "2018-08-01-preview",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Terms",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-03-31",
- "2018-01-31",
- "2017-12-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "UsageDetails",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-05-01",
- "2019-04-01-preview",
- "2019-01-01",
- "2018-12-01-preview",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview",
- "2017-04-24-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Charges",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01-preview",
- "2019-05-01",
- "2019-01-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "credits",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2019-10-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "events",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2019-10-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "lots",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2019-10-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "products",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "OperationStatus",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-05-01",
- "2019-04-01-preview",
- "2019-01-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "OperationResults",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-05-01",
- "2019-04-01-preview",
- "2019-01-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview",
- "2017-04-24-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ContainerInstance",
- "namespace": "Microsoft.ContainerInstance",
- "authorizations": [
- {
- "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9",
- "roleDefinitionId": "3c60422b-a83a-428d-9830-22609c77aa6c"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "containerGroups",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serviceAssociationLinks",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capabilities",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/cachedImages",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "gpuRegionalSkus": [
- {
- "skus": [
- "V100"
- ],
- "location": "centralindia"
- },
- {
- "skus": [
- "V100",
- "P100",
- "K80"
- ],
- "location": "eastus"
- },
- {
- "skus": [
- "K80"
- ],
- "location": "northeurope"
- },
- {
- "skus": [
- "V100",
- "P100",
- "K80"
- ],
- "location": "southcentralus"
- },
- {
- "skus": [
- "V100",
- "P100"
- ],
- "location": "southeastasia"
- },
- {
- "skus": [
- "V100",
- "P100",
- "K80"
- ],
- "location": "westeurope"
- },
- {
- "skus": [
- "V100",
- "P100",
- "K80"
- ],
- "location": "westus2"
- }
- ],
- "vnetSupportRegions": [
- "australiaeast",
- "australiasoutheast",
- "brazilsouth",
- "canadacentral",
- "canadaeast",
- "centralindia",
- "centralus",
- "centraluseuap",
- "eastasia",
- "eastus",
- "eastus2",
- "eastus2euap",
- "francecentral",
- "germanywestcentral",
- "japaneast",
- "japanwest",
- "koreacentral",
- "northcentralus",
- "northeurope",
- "norwayeast",
- "southcentralus",
- "southeastasia",
- "southindia",
- "switzerlandnorth",
- "uaenorth",
- "uksouth",
- "ukwest",
- "westcentralus",
- "westeurope",
- "westus",
- "westus2"
- ],
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "apiVersions": {
- "default": "2017-12-01-preview",
- "operations": "2017-12-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.ContainerInstance"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmNamespace": "AzureMonitoringMetrics",
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftContainerInstanceShoebox"
- }
- ]
- },
- "version": "1.0"
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CostManagement",
- "namespace": "Microsoft.CostManagement",
- "authorizations": [
- {
- "applicationId": "3184af01-7a88-49e0-8b55-8ecdce0aa950"
- },
- {
- "applicationId": "6b3368c6-61d2-4a72-854c-42d1c4e71fed"
- },
- {
- "applicationId": "997dc448-eeab-4c93-8811-6b2c80196a16"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Connectors",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-08-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "CloudConnectors",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "CheckConnectorEligibility",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalBillingAccounts",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalBillingAccounts/Dimensions",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalBillingAccounts/Query",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalSubscriptions/Dimensions",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalSubscriptions/Query",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalSubscriptions",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Forecast",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2018-12-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ExternalSubscriptions/Forecast",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2018-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalBillingAccounts/Forecast",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2018-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Settings",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-08-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "register",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Query",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2019-01-01",
- "2018-12-01-preview",
- "2018-10-01-preview",
- "2018-08-31",
- "2018-08-01-preview",
- "2018-05-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Dimensions",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2019-01-01",
- "2018-12-01-preview",
- "2018-10-01-preview",
- "2018-08-31",
- "2018-08-01-preview",
- "2018-05-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Budgets",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ExternalSubscriptions/Alerts",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalBillingAccounts/Alerts",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Alerts",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "showbackRules",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview",
- "2019-02-03-alpha",
- "2019-02-02-alpha",
- "2019-02-01-alpha"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "costAllocationRules",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Exports",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01-preview",
- "2020-06-01",
- "2020-05-01-preview",
- "2019-11-01",
- "2019-10-01",
- "2019-09-01",
- "2019-01-01-preview",
- "2019-01-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Reports",
- "locations": [],
- "apiVersions": [
- "2018-12-01-preview",
- "2018-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Reportconfigs",
- "locations": [],
- "apiVersions": [
- "2018-05-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "BillingAccounts",
- "locations": [],
- "apiVersions": [
- "2018-03-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Departments",
- "locations": [],
- "apiVersions": [
- "2018-03-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "EnrollmentAccounts",
- "locations": [],
- "apiVersions": [
- "2018-03-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Views",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ScheduledActions",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "CheckNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Insights",
- "locations": [],
- "apiVersions": [
- "2020-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "fetchPrices",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "GenerateReservationDetailsReport",
- "locations": [],
- "apiVersions": [
- "2019-11-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationDetailsOperationResults",
- "locations": [],
- "apiVersions": [
- "2019-11-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "GenerateDetailedCostReport",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "OperationStatus",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "OperationResults",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01-preview"
- ],
- "capabilities": "SupportsExtension"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CostManagementExports",
- "namespace": "Microsoft.CostManagementExports",
- "authorizations": [
- {
- "applicationId": "e5408ad0-c4e2-43aa-b6f2-3b4951286d99",
- "roleDefinitionId": "5e4888b3-2747-4e5b-9897-ec0865b91bcf"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CustomerLockbox",
- "namespace": "Microsoft.CustomerLockbox",
- "authorizations": [
- {
- "applicationId": "a0551534-cfc9-4e1f-9a7a-65093b32bb38",
- "roleDefinitionId": "114bcfb6-5524-4d80-948a-d8a9937bc3e5"
- },
- {
- "applicationId": "01fc33a7-78ba-4d2f-a4b7-768e336e890e"
- },
- {
- "applicationId": "d8c767ef-3e9a-48c4-aef9-562696539b39"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "TenantOptedIn",
- "locations": [],
- "apiVersions": [
- "2018-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "EnableLockbox",
- "locations": [],
- "apiVersions": [
- "2018-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "DisableLockbox",
- "locations": [],
- "apiVersions": [
- "2018-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "requests",
- "locations": [],
- "apiVersions": [
- "2018-02-28-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CustomProviders",
- "namespace": "Microsoft.CustomProviders",
- "authorization": {
- "applicationId": "bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5",
- "roleDefinitionId": "FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7"
- },
- "resourceTypes": [
- {
- "resourceType": "resourceProviders",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "East US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Canada Central",
- "Canada East"
- ],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "associations",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "East US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Canada Central",
- "Canada East"
- ],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-09-01-preview",
- "operations": "2018-09-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.CustomProviders"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftCustomProvidersShoebox",
- "sourceMdmNamespace": "MgmtExpWebApi"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.CustomProviders",
- "onbehalfSupportedLogCategories": [
- "AuditLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.D365CustomerInsights",
- "namespace": "Microsoft.D365CustomerInsights",
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-06-10-privatepreview",
- "2020-06-10-preview",
- "2020-06-10-beta"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationIds": [
- "38c77d00-5fcb-4cce-9d93-af4738258e3c",
- "0bfc4568-a4ba-4c58-bd3e-5d3e76bd7fff"
- ]
- },
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-06-10-preview",
- "operations": "2020-06-10-preview"
- },
- "mdmInfo": [
- {
- "sourceMdmAccount": "Customer360Prod",
- "sourceMdmNamespace": "Customer360Prod"
- },
- {
- "sourceMdmAccount": "Customer360PPE",
- "sourceMdmNamespace": "Customer360PPPE"
- }
- ],
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.D365CustomerInsights",
- "onbehalfSupportedLogCategories": [
- "Audit",
- "Operational"
- ]
- }
- ]
- },
- "regionLess": true
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataBox",
- "namespace": "Microsoft.DataBox",
- "authorizations": [
- {
- "applicationId": "5613cb5c-a7c9-4099-8034-511fd7616cb2",
- "roleDefinitionId": "382D72D1-63DC-4243-9B99-CB69FDD473D8",
- "managedByRoleDefinitionId": "f4c0a4f9-768c-4927-ab83-d319111d6ef4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "jobs",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/validateAddress",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/availableSkus",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/validateInputs",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/regionConfiguration",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "5613cb5c-a7c9-4099-8034-511fd7616cb2"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataBoxEdge",
- "namespace": "Microsoft.DataBoxEdge",
- "authorizations": [
- {
- "applicationId": "2368d027-f996-4edb-bf48-928f98f2ab8c"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "DataBoxEdgeDevices",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-02-01",
- "2020-12-01",
- "2020-09-01-preview",
- "2020-09-01",
- "2020-07-01-preview",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01-preview",
- "2020-01-01",
- "2019-08-01",
- "2019-07-01",
- "2019-03-01",
- "2018-07-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2021-02-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "DataBoxEdgeDevices/checkNameAvailability",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-02-01",
- "2020-12-01",
- "2020-09-01-preview",
- "2020-09-01",
- "2020-07-01-preview",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01-preview",
- "2020-01-01",
- "2019-08-01",
- "2019-07-01",
- "2019-03-01",
- "2018-07-01",
- "2017-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-02-01",
- "2020-12-01",
- "2020-09-01-preview",
- "2020-09-01",
- "2020-07-01-preview",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01-preview",
- "2020-01-01",
- "2019-08-01",
- "2019-07-01",
- "2019-03-01",
- "2018-07-01",
- "2017-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "availableSkus",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-09-01-preview",
- "2020-09-01",
- "2020-07-01-preview",
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-09-01",
- "operations": "2017-09-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.DataBoxEdge"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDataBoxEdgeShoebox",
- "sourceMdmNamespace": "Gateway"
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "7894de8a-09af-4805-bc2e-4b19797c0d95"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Databricks",
- "namespace": "Microsoft.Databricks",
- "authorizations": [
- {
- "applicationId": "d9327919-6775-4843-9037-3fb0fb0473cb",
- "roleDefinitionId": "f31567d0-b61f-43c2-97a5-a98cdc3bfcb6",
- "managedByRoleDefinitionId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635"
- },
- {
- "applicationId": "2ff814a6-3304-4ab8-85cb-cd0e6f879c1d",
- "roleDefinitionId": "f31567d0-b61f-43c2-97a5-a98cdc3bfcb6",
- "managedByRoleDefinitionId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "East US",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "France Central",
- "UAE North",
- "Norway East"
- ],
- "apiVersions": [
- "2018-04-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-04-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "DatabrickAuditLogs"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "spearfishgenevahotpath",
- "sourceMdmNamespace": "Canary"
- }
- ]
- },
- "logs": {
- "logFilterPathSelector": "sku.name",
- "mdsInfo": [
- {
- "serviceIdentity": "DatabrickAuditLogs",
- "onbehalfSupportedLogCategories": [
- "dbfs",
- "clusters",
- "accounts",
- "jobs",
- "notebook",
- "ssh",
- "workspace",
- "secrets",
- "sqlPermissions",
- "tables",
- "instancePools",
- "sqlanalytics",
- "genie",
- "globalInitScripts",
- "iamRole",
- "mlflowExperiment",
- "featureStore",
- "RemoteHistoryService",
- "mlflowAcledArtifact"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/virtualNetworkPeerings",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "North Europe",
- "East US",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Brazil South",
- "France Central",
- "Switzerland North",
- "Norway East"
- ],
- "apiVersions": [
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/dbWorkspaces",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "North Europe",
- "East US",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Brazil South",
- "France Central",
- "Switzerland North",
- "Norway East"
- ],
- "apiVersions": [
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "West Europe",
- "Japan East",
- "East US",
- "Korea Central",
- "Central US",
- "East US 2",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "South Africa North",
- "UAE North",
- "Brazil South",
- "France Central",
- "Switzerland North",
- "Norway East"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "North Europe",
- "East US",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Brazil South",
- "France Central",
- "Switzerland North",
- "Norway East"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2018-04-01",
- "2018-03-15",
- "2018-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "East US",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "France Central",
- "UAE North",
- "Norway East"
- ],
- "apiVersions": [
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/getNetworkPolicies",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "East US",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "France Central",
- "UAE North",
- "Norway East"
- ],
- "apiVersions": [
- "2018-04-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationIds": [
- "d9327919-6775-4843-9037-3fb0fb0473cb",
- "2ff814a6-3304-4ab8-85cb-cd0e6f879c1d"
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-04-01",
- "operations": "2018-03-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "DatabrickAuditLogs"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "spearfishgenevahotpath",
- "sourceMdmNamespace": "Canary"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataCatalog",
- "namespace": "Microsoft.DataCatalog",
- "authorization": {
- "applicationId": "213f5f78-fb30-46c7-9e98-91c720a1c026",
- "roleDefinitionId": "D55E2225-A6AB-481C-A5BE-1B7687C293FA"
- },
- "resourceTypes": [
- {
- "resourceType": "catalogs",
- "locations": [
- "East US",
- "West US",
- "Australia East",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "West Central US"
- ],
- "apiVersions": [
- "2016-03-30",
- "2015-07-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "West Europe"
- ],
- "apiVersions": [
- "2016-03-30",
- "2015-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Europe"
- ],
- "apiVersions": [
- "2016-03-30",
- "2015-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2016-03-30",
- "2015-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/jobs",
- "locations": [
- "East US",
- "West US",
- "Australia East",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "West Central US"
- ],
- "apiVersions": [
- "2016-03-30",
- "2015-07-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "213f5f78-fb30-46c7-9e98-91c720a1c026"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-12-01-preview",
- "operations": "2018-12-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataCatalogGen2"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDataCatalogShoebox",
- "sourceMdmNamespace": "ADCAnalytics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataCollaboration",
- "namespace": "Microsoft.DataCollaboration",
- "authorization": {
- "applicationId": "2cc451ba-a8ec-496f-bdff-591f5ae2876c",
- "roleDefinitionId": "fdf757e9-19df-4152-a1ae-5e719161cd12"
- },
- "resourceTypes": [
- {
- "resourceType": "listinvitations",
- "locations": [
- "East US",
- "Australia East",
- "West US 2",
- "UK South",
- "Southeast Asia",
- "East US 2",
- "West Europe"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia East"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "East US",
- "Australia East",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/consumerInvitations/reject",
- "locations": [
- "East US",
- "Australia East",
- "West US 2",
- "UK South",
- "Southeast Asia",
- "East US 2",
- "West Europe"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/consumerInvitations",
- "locations": [
- "East US",
- "Australia East",
- "West US 2",
- "UK South",
- "Southeast Asia",
- "East US 2",
- "West Europe"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "2cc451ba-a8ec-496f-bdff-591f5ae2876c"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-05-04-preview",
- "operations": "2020-05-04-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataCollaboration"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDataCollaborationShoebox",
- "sourceMdmNamespace": "RP"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Datadog",
- "namespace": "Microsoft.Datadog",
- "authorizations": [
- {
- "applicationId": "ae11f5fb-c627-4eec-b4a0-f7b5969426e5",
- "roleDefinitionId": "904f1136-432f-44da-adc4-d3bdf27b156d"
- },
- {
- "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06",
- "roleDefinitionId": "4ac7c055-417e-47eb-9a38-137e6233a688"
- },
- {
- "applicationId": "0c6620df-7b29-44de-8ba4-688a56a20f9f",
- "roleDefinitionId": "e2116b11-5fb7-4f68-b0e9-9d4173a5dfdb"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "West US 2",
- "Central US EUAP",
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06"
- },
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "monitors/tagRules",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/listMonitoredResources",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/listApiKeys",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/getDefaultKey",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/setDefaultKey",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/singleSignOnConfigurations",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/listHosts",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/listLinkedResources",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/refreshSetPasswordLink",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "agreements",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataFactory",
- "namespace": "Microsoft.DataFactory",
- "authorizations": [
- {
- "applicationId": "0947a342-ab4a-43be-93b3-b8243fc161e5",
- "roleDefinitionId": "f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da"
- },
- {
- "applicationId": "5d13f7d7-0567-429c-9880-320e9555e5fc",
- "roleDefinitionId": "956a8f20-9168-4c71-8e27-3c0460ac39a4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "dataFactories",
- "locations": [
- "West US",
- "North Europe",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2015-10-01",
- "2015-09-01",
- "2015-08-01",
- "2015-07-01-preview",
- "2015-05-01-preview",
- "2015-01-01-preview",
- "2014-04-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftDatafactory"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "factories",
- "locations": [
- "East US",
- "East US 2",
- "Central US",
- "South Central US",
- "Japan East",
- "Canada Central",
- "Australia East",
- "Switzerland North",
- "Germany West Central",
- "Central India",
- "France Central",
- "Korea Central",
- "Brazil South",
- "West Europe",
- "North Europe",
- "UK South",
- "West Central US",
- "West US",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Africa North",
- "Australia Southeast",
- "South India",
- "Canada East",
- "UK West",
- "Japan West",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-06-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-06-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftDatafactory",
- "onbehalfSupportedLogCategories": [
- "ActivityRuns",
- "PipelineRuns",
- "TriggerRuns",
- "SandboxPipelineRuns",
- "SandboxActivityRuns",
- "SSISPackageEventMessages",
- "SSISPackageExecutableStatistics",
- "SSISPackageEventMessageContext",
- "SSISPackageExecutionComponentPhases",
- "SSISPackageExecutionDataStatistics",
- "SSISIntegrationRuntimeLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "factories/integrationRuntimes",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Central India",
- "Brazil South",
- "France Central",
- "Korea Central",
- "Australia East",
- "Switzerland North",
- "Germany West Central",
- "Canada Central",
- "West Central US",
- "North Europe",
- "UK South",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Africa North",
- "Australia Southeast",
- "South India",
- "Canada East",
- "UK West",
- "Japan West",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-06-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dataFactories/diagnosticSettings",
- "locations": [
- "North Europe",
- "East US",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dataFactories/metricDefinitions",
- "locations": [
- "North Europe",
- "East US",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkDataFactoryNameAvailability",
- "locations": [],
- "apiVersions": [
- "2015-05-01-preview",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkAzureDataFactoryNameAvailability",
- "locations": [
- "West US",
- "North Europe",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2015-10-01",
- "2015-09-01",
- "2015-08-01",
- "2015-07-01-preview",
- "2015-05-01-preview",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dataFactorySchema",
- "locations": [
- "West US",
- "North Europe",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2015-10-01",
- "2015-09-01",
- "2015-08-01",
- "2015-07-01-preview",
- "2015-05-01-preview",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "North Europe",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2018-06-01",
- "2017-09-01-preview",
- "2017-03-01-preview",
- "2015-10-01",
- "2015-09-01",
- "2015-08-01",
- "2015-07-01-preview",
- "2015-05-01-preview",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-06-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/configureFactoryRepo",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Australia East",
- "Switzerland North",
- "Germany West Central",
- "Canada Central",
- "Central India",
- "Brazil South",
- "France Central",
- "Korea Central",
- "West Europe",
- "North Europe",
- "UK South",
- "West Central US",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Africa North",
- "Australia Southeast",
- "South India",
- "Canada East",
- "UK West",
- "Japan West",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-06-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/getFeatureValue",
- "locations": [
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "UK South",
- "West Central US",
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Australia East",
- "Switzerland North",
- "Germany West Central",
- "Canada Central",
- "Central India",
- "Brazil South",
- "France Central",
- "Korea Central",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Africa North",
- "Australia Southeast",
- "South India",
- "Canada East",
- "UK West",
- "Japan West",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-06-01"
- ],
- "defaultApiVersion": "2018-06-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "0947a342-ab4a-43be-93b3-b8243fc161e5"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2015-01-01-preview",
- "factories": "2017-09-01-preview",
- "operations": "2017-03-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox",
- "sourceMdmNamespace": "ADFMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataLakeAnalytics",
- "namespace": "Microsoft.DataLakeAnalytics",
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "defaultApiVersion": "2016-11-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/dataLakeStoreAccounts",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/storageAccounts",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/storageAccounts/containers",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/storageAccounts/containers/listSasTokens",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capability",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.accountId",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataLake"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureDataLake",
- "sourceMdmNamespace": "Microsoft.DataLakeAnalytics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataLake",
- "onbehalfSupportedLogCategories": [
- "Audit",
- "Requests"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataMigration",
- "namespace": "Microsoft.DataMigration",
- "authorization": {
- "applicationId": "a4bad4aa-bf02-4631-9f78-a64ffdba8150",
- "roleDefinitionId": "b831a21d-db98-4760-89cb-bef871952df1",
- "managedByRoleDefinitionId": "6256fb55-9e59-4018-a9e1-76b11c0a4c89"
- },
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "defaultApiVersion": "2018-07-15-preview",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "services/projects",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "defaultApiVersion": "2018-07-15-preview",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central",
- "East US 2 EUAP"
- ],
- "apiVersions": [],
- "capabilities": "None"
- },
- {
- "resourceType": "SqlMigrationServices",
- "locations": [
- "East US 2",
- "East US",
- "Canada Central",
- "Central US",
- "Canada East",
- "West Europe"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "defaultApiVersion": "2020-09-01-preview",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "DatabaseMigrations",
- "locations": [
- "East US 2",
- "East US",
- "Canada Central",
- "Central US",
- "Canada East",
- "West Europe"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "defaultApiVersion": "2020-09-01-preview",
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Locations/OperationTypes",
- "locations": [
- "East US 2",
- "East US",
- "Canada Central",
- "Central US",
- "Canada East",
- "West Europe"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "defaultApiVersion": "2020-09-01-preview",
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataProtection",
- "namespace": "Microsoft.DataProtection",
- "resourceTypes": [
- {
- "resourceType": "BackupVaults",
- "locations": [
- "South Central US",
- "East US",
- "East US 2",
- "West US",
- "UK South",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "France Central",
- "Germany West Central",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West Central US",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ResourceGuards",
- "locations": [
- "East US 2",
- "North Europe",
- "Southeast Asia",
- "West Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "South Central US",
- "East US",
- "East US 2",
- "West US",
- "UK South",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "France Central",
- "Germany West Central",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West Central US",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatus",
- "locations": [
- "South Central US",
- "East US",
- "East US 2",
- "West US",
- "UK South",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "France Central",
- "Germany West Central",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West Central US",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "South Central US",
- "East US",
- "East US 2",
- "West US",
- "UK South",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "France Central",
- "Germany West Central",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West Central US",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkFeatureSupport",
- "locations": [
- "South Central US",
- "East US",
- "East US 2",
- "West US",
- "UK South",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "France Central",
- "Germany West Central",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West Central US",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "d1e197ea-4f63-403a-93b0-8fa96dfc37f5"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforMariaDB",
- "namespace": "Microsoft.DBforMariaDB",
- "authorizations": [
- {
- "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d",
- "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29"
- },
- {
- "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/recoverableServers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "Central India",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/virtualNetworkRules",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/azureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/performanceTiers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/topQueryStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/queryTexts",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/waitStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/resetQueryPerformanceInsightData",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/advisors",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateLinkResources",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnections",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnectionProxies",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/start",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/stop",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-06-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "AzureDBProduction",
- "sourceMdmNamespace": "MicrosoftSqlElasticServers"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "onbehalfSupportedLogCategories": [
- "MySqlSlowLogs",
- "MySqlAuditLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.managedIdentity": {
- "applicationId": "d4776935-e3c2-491d-b2a1-cb3cd1ec579e"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DelegatedNetwork",
- "namespace": "Microsoft.DelegatedNetwork",
- "authorizations": [
- {
- "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37",
- "roleDefinitionId": "ff3f8a59-97f9-442a-9d5f-e21908e36352"
- },
- {
- "applicationId": "1efe5bbf-d5b1-4fe9-99fa-f55ce1c88679"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-15",
- "2020-08-08-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeploymentManager",
- "namespace": "Microsoft.DeploymentManager",
- "authorizations": [
- {
- "applicationId": "5b306cba-9c71-49db-96c3-d17ca2379c4d"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "artifactSources",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serviceTopologies",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serviceTopologies/services",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serviceTopologies/services/serviceUnits",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "steps",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "rollouts",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "5b306cba-9c71-49db-96c3-d17ca2379c4d"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeviceUpdate",
- "namespace": "Microsoft.DeviceUpdate",
- "authorizations": [
- {
- "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78",
- "roleDefinitionId": "a7c9caf5-ee6d-4cdd-94e0-917c34a027ec"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2 EUAP",
- "West US 2",
- "North Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts",
- "locations": [
- "West US 2",
- "North Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78"
- },
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/instances",
- "locations": [
- "West US 2",
- "North Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78",
- "delegationAppIds": [
- "6ee392c4-d339-4083-b04d-6b7947c6cf78"
- ]
- },
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevOps",
- "namespace": "Microsoft.DevOps",
- "authorization": {
- "applicationId": "499b84ac-1321-427f-aa17-267ca6975798",
- "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"
- },
- "resourceTypes": [
- {
- "resourceType": "pipelines",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "West India",
- "Central India",
- "South India",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "UK South",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-07-13-preview",
- "2019-07-01-preview"
- ],
- "defaultApiVersion": "2019-07-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevTestLab",
- "namespace": "Microsoft.DevTestLab",
- "authorization": {
- "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f",
- "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525",
- "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525"
- },
- "resourceTypes": [
- {
- "resourceType": "labs/environments",
- "locations": [
- "Southeast Asia",
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "Central US"
- ],
- "apiVersions": [
- "2015-05-21-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "labs",
- "locations": [
- "West Central US",
- "South Central US",
- "Central US",
- "Australia Central",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West India",
- "Australia Central 2",
- "Australia East",
- "Brazil South",
- "Canada East",
- "East US 2",
- "France South",
- "Germany West Central",
- "Japan West",
- "Korea South",
- "North Central US",
- "Norway East",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "defaultApiVersion": "2018-10-15-preview",
- "capabilities": "CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "schedules",
- "locations": [
- "West Central US",
- "South Central US",
- "Central US",
- "Australia Central",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West India",
- "Australia Central 2",
- "Australia East",
- "Brazil South",
- "Canada East",
- "East US 2",
- "France South",
- "Germany West Central",
- "Japan West",
- "Korea South",
- "North Central US",
- "Norway East",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "labs/virtualMachines",
- "locations": [
- "West Central US",
- "South Central US",
- "Central US",
- "Australia Central",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West India",
- "Australia Central 2",
- "Australia East",
- "Brazil South",
- "Canada East",
- "East US 2",
- "France South",
- "Germany West Central",
- "Japan West",
- "Korea South",
- "North Central US",
- "Norway East",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "labs/serviceRunners",
- "locations": [
- "West Central US",
- "South Central US",
- "Central US",
- "Australia Central",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West India",
- "Australia Central 2",
- "Australia East",
- "Brazil South",
- "Canada East",
- "East US 2",
- "France South",
- "Germany West Central",
- "Japan West",
- "Korea South",
- "North Central US",
- "Norway East",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15"
- ],
- "defaultApiVersion": "2016-05-15",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West Central US",
- "South Central US",
- "Central US",
- "Australia Central",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West India",
- "Australia Central 2",
- "Australia East",
- "Brazil South",
- "Canada East",
- "East US 2",
- "France South",
- "Germany West Central",
- "Japan West",
- "Korea South",
- "North Central US",
- "Norway East",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Diagnostics",
- "namespace": "Microsoft.Diagnostics",
- "authorizations": [
- {
- "applicationId": "5b534afd-fdc0-4b38-a77f-af25442e3149",
- "roleDefinitionId": "27d9fedd-5b4c-44b5-a9da-724fa33445c8"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-07-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DigitalTwins",
- "namespace": "Microsoft.DigitalTwins",
- "authorizations": [
- {
- "applicationId": "0b07f429-9f4b-4714-9392-cc5e8e80c8b0"
- },
- {
- "applicationId": "91ff567f-bb4f-4719-91d7-d983057bc0d6",
- "roleDefinitionId": "fa0ab6ed-58e5-4f2f-81af-0b9ffc364bdc"
- },
- {
- "applicationId": "c115998b-3d59-49b4-b55b-042a9ba1dbfe",
- "roleDefinitionId": "07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-30-preview",
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West Central US",
- "West US 2",
- "North Europe",
- "Australia East",
- "West Europe",
- "East US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "digitalTwinsInstances",
- "locations": [
- "West Central US",
- "West US 2",
- "North Europe",
- "Australia East",
- "West Europe",
- "East US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-12-01",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "91ff567f-bb4f-4719-91d7-d983057bc0d6"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDigitalTwins"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDigitalTwinsShoebox",
- "sourceMdmNamespace": "ShoeboxMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDigitalTwins",
- "onbehalfSupportedLogCategories": [
- "DigitalTwinsOperation",
- "ModelsOperation",
- "EventRoutesOperation",
- "QueryOperation"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "digitalTwinsInstances/operationResults",
- "locations": [
- "West Central US",
- "West US 2",
- "North Europe",
- "Australia East",
- "West Europe",
- "East US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "West US 2",
- "North Europe",
- "Australia East",
- "West Europe",
- "East US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "digitalTwinsInstances/endpoints",
- "locations": [
- "West Central US",
- "West US 2",
- "North Europe",
- "Australia East",
- "West Europe",
- "East US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2020-12-01",
- "digitalTwinsInstances": "2020-12-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDigitalTwinsShoebox",
- "sourceMdmNamespace": "ShoeboxMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Elastic",
- "namespace": "Microsoft.Elastic",
- "authorizations": [
- {
- "applicationId": "9d777fa9-b417-43b8-8991-12f8ee2161d2",
- "roleDefinitionId": "727fce2f-45e6-4d8d-8a08-7302549a924f"
- },
- {
- "applicationId": "5b81a823-5f67-4fb3-8d0f-4c92b5044fe4",
- "roleDefinitionId": "e0ad5282-27b3-4c62-a72f-ea7bef45503e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2 EUAP",
- "Central US EUAP",
- "West US 2",
- "UK South",
- "East US",
- "East US 2",
- "West Europe",
- "France Central",
- "Central US",
- "South Central US"
- ],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "monitors",
- "locations": [
- "West US 2",
- "UK South"
- ],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "monitors/tagRules",
- "locations": [
- "West US 2",
- "UK South"
- ],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EnterpriseKnowledgeGraph",
- "namespace": "Microsoft.EnterpriseKnowledgeGraph",
- "resourceTypes": [
- {
- "resourceType": "services",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2018-12-03"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2018-12-03"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2018-12-03"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2018-12-03"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2018-12-03"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.EnterpriseKnowledgeGraph"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestUS2",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxNorthEurope",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestEurope",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS2",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxSoutheastAsia",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestUS2",
- "sourceMdmNamespace": "Tool"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxNorthEurope",
- "sourceMdmNamespace": "Tool"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestEurope",
- "sourceMdmNamespace": "Tool"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS",
- "sourceMdmNamespace": "Tool"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS2",
- "sourceMdmNamespace": "Tool"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxSoutheastAsia",
- "sourceMdmNamespace": "Tool"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.EnterpriseKnowledgeGraph",
- "onbehalfSupportedLogCategories": [
- "AuditEvent",
- "DataIssue",
- "Configuration"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Experimentation",
- "namespace": "Microsoft.Experimentation",
- "authorizations": [
- {
- "applicationId": "e00d2f8a-f6c8-46e4-b379-e66082e28ca8",
- "roleDefinitionId": "d3a360d9-17f9-410e-9465-5c914c8cf570",
- "managedByRoleDefinitionId": "fa096ccd-4e8f-49de-9594-64449b3ac6b3"
- },
- {
- "applicationId": "b998f6f8-79d0-4b6a-8c25-5791dbe49ad0",
- "roleDefinitionId": "69e94dda-0a4a-440b-b24e-21880bdd5174"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2019-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2019-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ExtendedLocation",
- "namespace": "Microsoft.ExtendedLocation",
- "authorizations": [
- {
- "applicationId": "bc313c14-388c-4e7d-a58e-70017303ee3b",
- "roleDefinitionId": "a775b938-2819-4dd0-8067-01f6e3b06392"
- },
- {
- "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05",
- "roleDefinitionId": "0981f4e0-04a7-4e31-bd2b-b2ac2fc6ba4e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-15-preview",
- "2020-07-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "customLocations",
- "locations": [
- "East US",
- "West Europe",
- "North Europe",
- "France Central",
- "Southeast Asia",
- "Australia East",
- "East US 2",
- "West US 2",
- "UK South",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-15-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "customLocations/enabledResourceTypes",
- "locations": [
- "East US",
- "West Europe",
- "North Europe",
- "France Central",
- "Southeast Asia",
- "Australia East",
- "East US 2",
- "West US 2",
- "UK South",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsstatus",
- "locations": [
- "East US",
- "West Europe",
- "North Europe",
- "France Central",
- "Southeast Asia",
- "Australia East",
- "East US 2",
- "West US 2",
- "UK South",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "East US",
- "West Europe",
- "North Europe",
- "France Central",
- "Southeast Asia",
- "Australia East",
- "East US 2",
- "West US 2",
- "UK South",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-15-preview",
- "2020-07-15-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Falcon",
- "namespace": "Microsoft.Falcon",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "namespaces",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2020-01-20-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features",
- "namespace": "Microsoft.Features",
- "resourceTypes": [
- {
- "resourceType": "features",
- "locations": [],
- "apiVersions": [
- "2015-12-01",
- "2014-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providers",
- "locations": [],
- "apiVersions": [
- "2015-12-01",
- "2014-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "featureProviders",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptionFeatureRegistrations",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "featureProviderNamespaces",
- "locations": [],
- "apiVersions": [
- "2020-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "featureConfigurations",
- "locations": [],
- "apiVersions": [
- "2020-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-12-01",
- "2014-08-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Fidalgo",
- "namespace": "Microsoft.Fidalgo",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "Central US EUAP",
- "East US 2 EUAP",
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "devcenters",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "2dc3760b-4713-48b1-a383-1dfe3e449ec2"
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "devcenters/catalogs/items",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "devcenters/environmentTypes",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "projects",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "projects/environments",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "devcenters/catalogs",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "devcenters/mappings",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "projects/CatalogItems",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "projects/environmentTypes",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "projects/environments/deployments",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "2dc3760b-4713-48b1-a383-1dfe3e449ec2"
- },
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HanaOnAzure",
- "namespace": "Microsoft.HanaOnAzure",
- "authorization": {
- "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39",
- "roleDefinitionId": "4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- },
- "resourceTypes": [
- {
- "resourceType": "hanaInstances",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South Central US"
- ],
- "apiVersions": [
- "2017-11-03-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sapMonitors",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Southeast Asia",
- "South Central US",
- "UK South"
- ],
- "apiVersions": [
- "2020-02-07-preview",
- "2017-11-03-preview"
- ],
- "defaultApiVersion": "2020-02-07-preview",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Southeast Asia",
- "South Central US",
- "UK South"
- ],
- "apiVersions": [
- "2017-11-03-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2017-11-03-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Southeast Asia",
- "South Central US",
- "UK South"
- ],
- "apiVersions": [
- "2017-11-03-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Southeast Asia",
- "South Central US",
- "UK South"
- ],
- "apiVersions": [
- "2017-11-03-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HealthBot",
- "namespace": "Microsoft.HealthBot",
- "authorizations": [
- {
- "applicationId": "6db4d6bb-6649-4dc2-84b7-0b5c6894031e",
- "roleDefinitionId": "d42334cd-b979-4a22-accc-650d0d157676"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-12-08"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-12-08"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US",
- "West Europe",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "North Europe",
- "Southeast Asia",
- "Australia East",
- "East US 2 EUAP",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2020-12-08"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "healthBots",
- "locations": [
- "East US",
- "West Europe",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "North Europe",
- "Southeast Asia",
- "Australia East",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2020-12-08"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HealthcareApis",
- "namespace": "Microsoft.HealthcareApis",
- "authorizations": [
- {
- "applicationId": "4f6778d8-5aef-43dc-a1ff-b073724b9495"
- },
- {
- "applicationId": "3274406e-4e0a-4852-ba4f-d7226630abb7",
- "roleDefinitionId": "e39edba5-cde8-4529-ba1f-159138220220"
- },
- {
- "applicationId": "894b1496-c6e0-4001-b69c-81b327564ca4",
- "roleDefinitionId": "c69c1f48-8535-41e7-9667-539790b1c663"
- },
- {
- "applicationId": "75e725bf-66ce-4cea-9b9a-5c4caae57f33"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "services",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-01-11",
- "2020-03-30",
- "2020-03-15",
- "2019-09-16",
- "2018-08-20-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-09-16",
- "operations": "2019-09-16"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.HealthcareApis",
- "onbehalfSupportedLogCategories": [
- "AuditLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "services/privateEndpointConnectionProxies",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-03-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/privateEndpointConnections",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-03-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/privateLinkResources",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-03-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/iomtconnectors",
- "locations": [
- "West US 2",
- "UK South",
- "East US 2",
- "UK West",
- "North Central US",
- "Australia East",
- "Southeast Asia",
- "East US",
- "West Europe",
- "South Central US",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/iomtconnectors/connections",
- "locations": [
- "West US 2",
- "UK South",
- "East US 2",
- "UK West",
- "North Central US",
- "Australia East",
- "Southeast Asia",
- "East US",
- "West Europe",
- "South Central US",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/iomtconnectors/mappings",
- "locations": [
- "West US 2",
- "UK South",
- "East US 2",
- "UK West",
- "North Central US",
- "Australia East",
- "Southeast Asia",
- "East US",
- "West Europe",
- "South Central US",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-01-11",
- "2020-03-30",
- "2020-03-15",
- "2019-09-16",
- "2018-08-20-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-01-11",
- "2020-05-01-preview",
- "2020-03-30",
- "2020-03-15",
- "2019-09-16",
- "2018-08-20-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-03-31-preview",
- "2021-01-11",
- "2020-03-30",
- "2020-03-15",
- "2019-09-16",
- "2018-08-20-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-01-11",
- "2020-03-30",
- "2020-03-15",
- "2019-09-16",
- "2018-08-20-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-09-16",
- "operations": "2019-09-16"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.HealthcareApis"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftHealthcareApisShoebox",
- "sourceMdmNamespace": "Shoebox2"
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "53af30df-f192-4c0e-8092-9bd45604aedd"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridCompute",
- "namespace": "Microsoft.HybridCompute",
- "authorizations": [
- {
- "applicationId": "8c420feb-03df-47cc-8a05-55df0cf3064b",
- "roleDefinitionId": "83eeb1c6-47f8-4da2-bbc3-42a7ac767360"
- },
- {
- "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1",
- "roleDefinitionId": "f32ad452-2b05-4296-bee4-fc9056ed85fa"
- },
- {
- "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801",
- "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f"
- },
- {
- "applicationId": "eec53b1f-b9a4-4479-acf5-6b247c6a49f2"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "machines",
- "locations": [
- "West Central US",
- "West US 2",
- "West Europe",
- "Southeast Asia",
- "East US",
- "Australia East",
- "South Central US",
- "East US 2",
- "North Europe",
- "France Central",
- "Japan East",
- "UK South"
- ],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview",
- "2019-03-18-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "machines/extensions",
- "locations": [
- "West Central US",
- "West Europe",
- "West US 2",
- "Southeast Asia",
- "East US",
- "Australia East",
- "South Central US",
- "East US 2",
- "North Europe",
- "France Central",
- "Japan East",
- "UK South"
- ],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West Europe"
- ],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatus",
- "locations": [
- "West Central US",
- "West Europe",
- "West US 2",
- "Southeast Asia",
- "East US",
- "Australia East",
- "South Central US",
- "East US 2",
- "North Europe",
- "France Central",
- "Japan East",
- "UK South"
- ],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "West Europe",
- "West US 2",
- "Southeast Asia",
- "East US",
- "Australia East",
- "South Central US",
- "East US 2",
- "North Europe",
- "France Central",
- "Japan East",
- "UK South"
- ],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview",
- "2019-03-18-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "eec53b1f-b9a4-4479-acf5-6b247c6a49f2"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridData",
- "namespace": "Microsoft.HybridData",
- "authorization": {
- "applicationId": "621269cf-1195-44a3-a835-c613d103dd15",
- "roleDefinitionId": "00320cd4-8823-47f2-bbe4-5c9da031311d"
- },
- "resourceTypes": [
- {
- "resourceType": "dataManagers",
- "locations": [
- "West US",
- "North Europe",
- "West Europe",
- "East US",
- "West US 2",
- "West Central US",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2019-06-01",
- "2016-06-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-06-01",
- "2016-06-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridNetwork",
- "namespace": "Microsoft.HybridNetwork",
- "authorizations": [
- {
- "applicationId": "b8ed041c-aa91-418e-8f47-20c70abc2de1",
- "roleDefinitionId": "b193432e-9b7e-4885-b2c0-052afdceace3"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US 2 EUAP",
- "West Central US",
- "West Europe",
- "East US"
- ],
- "apiVersions": [
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ImportExport",
- "namespace": "Microsoft.ImportExport",
- "authorization": {
- "applicationId": "7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a",
- "roleDefinitionId": "9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"
- },
- "resourceTypes": [
- {
- "resourceType": "jobs",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-08-01",
- "2016-11-01",
- "2016-07-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-11-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-08-01",
- "2016-11-01",
- "2016-07-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-11-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-08-01",
- "2016-11-01",
- "2016-07-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-11-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-08-01",
- "2016-11-01",
- "2016-07-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-11-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IndustryDataLifecycle",
- "namespace": "Microsoft.IndustryDataLifecycle",
- "authorizations": [
- {
- "applicationId": "3072002f-3e97-4979-91f2-09fe40da755d",
- "roleDefinitionId": "23694dec-6164-410e-b12d-691a3c92ae59"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "custodianCollaboratives/termsOfUseDocuments",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "defaultApiVersion": "2020-01-12-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "custodianCollaboratives/collaborativeImage",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "defaultApiVersion": "2020-01-12-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "custodianCollaboratives/invitations",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "custodianCollaboratives/invitations/termsOfUseDocuments",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "memberCollaboratives",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "defaultApiVersion": "2020-01-12-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dataConsumerCollaboratives",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "defaultApiVersion": "2020-01-12-preview",
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "collaborativeInvitations",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/rejectInvitation",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/generateInvitationAuthCode",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/revokeInvitationAuthCode",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/downloadInvitationFile",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dataproviders",
- "locations": [],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/dataPackages",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "memberCollaboratives/sharedDataPackages",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "custodianCollaboratives/receivedDataPackages",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2020-09-08-preview",
- "2020-01-12-preview"
- ],
- "defaultApiVersion": "2020-01-12-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-01-12-preview",
- "operations": "2020-01-12-preview"
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "3072002f-3e97-4979-91f2-09fe40da755d"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IntelligentITDigitalTwin",
- "namespace": "Microsoft.IntelligentITDigitalTwin",
- "authorizations": [
- {
- "applicationId": "dfbed8b2-492a-414e-b2f0-482534e87bc5",
- "roleDefinitionId": "0922588a-ac0c-4eb6-8d8f-afbeb8edf466"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-12-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IoTCentral",
- "namespace": "Microsoft.IoTCentral",
- "authorizations": [
- {
- "applicationId": "9edfcdd9-0bc5-4bd4-b287-c3afc716aac7",
- "roleDefinitionId": "913c14c1-35ac-45ee-b8f2-05524381b92c"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "IoTApps",
- "locations": [
- "West Europe",
- "West US",
- "East US 2",
- "North Europe",
- "East US",
- "Central US",
- "West Central US",
- "Australia",
- "Asia Pacific",
- "Europe",
- "Japan",
- "UK",
- "United States"
- ],
- "apiVersions": [
- "2018-09-01",
- "2017-07-01-privatepreview"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2018-09-01",
- "2017-07-01-privatepreview"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkSubdomainAvailability",
- "locations": [],
- "apiVersions": [
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-09-01",
- "2017-07-01-privatepreview"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "appTemplates",
- "locations": [],
- "apiVersions": [
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-09-01",
- "operations": "2018-09-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.IoTCentral"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "MicrosoftIotSaasShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "regionLess": true
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IoTSecurity",
- "namespace": "Microsoft.IoTSecurity",
- "authorizations": [
- {
- "applicationId": "cfbd4387-1a16-4945-83c0-ec10e46cd4da",
- "roleDefinitionId": "d5d6ff70-e29a-4cec-b30b-4bd7ebcdcbaa"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "defenderSettings",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deviceGroups",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deviceGroups/devices",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "sensors",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "onPremiseSensors",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "description": "Microsoft Defender for IoT Manifest"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Kubernetes",
- "namespace": "Microsoft.Kubernetes",
- "authorizations": [
- {
- "applicationId": "64b12d6e-6549-484c-8cc6-6281839ba394",
- "roleDefinitionId": "1d1d44cf-68a1-4def-a2b6-cd7efc3515af"
- },
- {
- "applicationId": "359431ad-ece5-496b-8768-be4bbfd82f36",
- "roleDefinitionId": "1b5c71b7-9814-4b40-b62a-23018af874d8"
- },
- {
- "applicationId": "0000dab9-8b21-4ba2-807f-1743968cef00",
- "roleDefinitionId": "1b5c71b7-9814-4b40-b62a-23018af874d8"
- },
- {
- "applicationId": "8edd93e1-2103-40b4-bd70-6e34e586362d",
- "roleDefinitionId": "eb67887a-31e8-4e4e-bf5b-14ff79351a6f"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "connectedClusters",
- "locations": [
- "West Europe",
- "East US",
- "West Central US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2",
- "West US 2",
- "Australia East",
- "North Europe",
- "France Central"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-03-01",
- "2020-01-01-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "de742ffc-b441-4542-8646-7e805426b824"
- },
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-03-01",
- "2020-01-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2 EUAP",
- "West Europe",
- "East US",
- "West Central US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2",
- "West US 2",
- "Australia East",
- "North Europe",
- "France Central"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-03-01",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-03-01",
- "2020-01-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-03-01",
- "2020-01-01-preview",
- "2019-11-01-preview",
- "2019-09-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "de742ffc-b441-4542-8646-7e805426b824"
- },
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.KubernetesConfiguration",
- "namespace": "Microsoft.KubernetesConfiguration",
- "authorizations": [
- {
- "applicationId": "c699bf69-fb1d-4eaf-999b-99e6b2ae4d85",
- "roleDefinitionId": "90155430-a360-410f-af5d-89dc284d85c6"
- },
- {
- "applicationId": "03db181c-e9d3-4868-9097-f0b728327182",
- "roleDefinitionId": "DE2ADB97-42D8-49C8-8FCF-DBB53EF936AC"
- },
- {
- "applicationId": "a0f92522-89de-4c5e-9a75-0044ccf66efd",
- "roleDefinitionId": "b3429810-7d5c-420e-8605-cf280f3099f2"
- },
- {
- "applicationId": "bd9b7cd5-dac1-495f-b013-ac871e98fa5f",
- "roleDefinitionId": "0d44c8f0-08b9-44d4-9f59-e51c83f95200"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "sourceControlConfigurations",
- "locations": [
- "East US",
- "West Europe",
- "West Central US",
- "West US 2",
- "South Central US",
- "East US 2",
- "North Europe",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "France Central"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01-preview",
- "2020-07-01-preview",
- "2019-11-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "extensions",
- "locations": [
- "East US",
- "West Europe",
- "West Central US",
- "West US 2",
- "South Central US",
- "East US 2",
- "North Europe",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "France Central"
- ],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-07-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2021-03-01",
- "2020-10-01-preview",
- "2020-07-01-preview",
- "2019-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "03b7be2d-167c-44b4-b5c4-f00f5e60e5d7"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Kusto",
- "namespace": "Microsoft.Kusto",
- "authorizations": [
- {
- "applicationId": "2746ea77-4702-4b45-80ca-3c97e680e8b7",
- "roleDefinitionId": "dd9d4347-f397-45f2-b538-85f21c90037c"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "clusters",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "South Central US",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Canada Central",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Germany West Central",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Brazil South",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Central India",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Korea Central",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "West US 3",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Norway East",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "East Asia",
- "zones": [
- "1",
- "2",
- "3"
- ]
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters/databases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/attacheddatabaseconfigurations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/principalassignments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/databases/eventhubconnections",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/databases/dataconnections",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/databases/principalassignments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/databases/scripts",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01"
- ],
- "defaultApiVersion": "2021-01-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "2746ea77-4702-4b45-80ca-3c97e680e8b7"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-05-15",
- "operations": "2019-05-15"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Kusto"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "Kusto",
- "sourceMdmNamespace": "MdmEngineMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Kusto",
- "onbehalfSupportedLogCategories": [
- "SucceededIngestion",
- "FailedIngestion",
- "IngestionBatching",
- "Command",
- "Query",
- "TableUsageStatistics",
- "TableDetails"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.LabServices",
- "namespace": "Microsoft.LabServices",
- "authorizations": [
- {
- "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f",
- "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525",
- "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525"
- },
- {
- "applicationId": "c7bb12bf-0b39-4f7f-9171-f418ff39b76a",
- "roleDefinitionId": "4796d754-aa9c-4af1-be54-f17836325288",
- "managedByRoleDefinitionId": "4796d754-aa9c-4af1-be54-f17836325288"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "labaccounts",
- "locations": [
- "West Central US",
- "Japan East",
- "West US",
- "Australia Southeast",
- "Australia Central",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Switzerland North",
- "UK West",
- "West India",
- "Australia East",
- "Australia Central 2",
- "Brazil South",
- "Canada East",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Japan West",
- "Korea South",
- "North Central US",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2019-01-01-preview",
- "2018-10-15",
- "2017-12-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West Central US",
- "Japan East",
- "West US",
- "Australia Southeast",
- "Australia Central",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Switzerland North",
- "UK West",
- "West India",
- "Australia East",
- "Australia Central 2",
- "Brazil South",
- "Canada East",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Japan West",
- "Korea South",
- "North Central US",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2019-01-01-preview",
- "2018-10-15",
- "2017-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "East US 2 EUAP",
- "Central US EUAP",
- "West US 2",
- "East US 2"
- ],
- "apiVersions": [
- "2020-05-01-preview",
- "2019-01-01-preview",
- "2018-10-15",
- "2017-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "users",
- "locations": [],
- "apiVersions": [
- "2019-01-01-preview",
- "2019-01-01-beta",
- "2019-01-01-alpha",
- "2018-10-15",
- "2017-12-01-preview",
- "2017-12-01-beta",
- "2017-12-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-05-01-preview",
- "2019-01-01-preview",
- "2018-10-15",
- "2017-12-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "c7bb12bf-0b39-4f7f-9171-f418ff39b76a"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Logz",
- "namespace": "Microsoft.Logz",
- "authorizations": [
- {
- "applicationId": "a5472e16-e1d2-4bbe-81b3-ecdcd459b536",
- "roleDefinitionId": "bd91f1c6-cda0-4e9d-9982-18a494ec938e"
- },
- {
- "applicationId": "0ecb6dbc-7807-4951-9a69-b5d3dfa5a0b5",
- "roleDefinitionId": "b15da9ae-5633-4997-8e2c-b0941fb54476"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "defaultApiVersion": "2020-10-01-preview",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "Central US EUAP",
- "East US 2 EUAP",
- "West US 2",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MachineLearningServices",
- "namespace": "Microsoft.MachineLearningServices",
- "authorizations": [
- {
- "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385",
- "roleDefinitionId": "376aa7d7-51a9-463d-bd4d-7e1691345612",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- },
- {
- "applicationId": "607ece82-f922-494f-88b8-30effaf12214",
- "roleDefinitionId": "d312a9a6-5102-420b-b8b3-aa6b22670aaa",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- },
- {
- "applicationId": "18a66f5f-dbdf-4c17-9dd7-1634712a9cbe",
- "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- },
- {
- "applicationId": "fb9de05a-fecc-4642-b3ca-66b9d4434d4d",
- "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- },
- {
- "applicationId": "bf283ae6-5efd-44a8-b56a-2a7939982d60",
- "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- },
- {
- "applicationId": "6608bce8-e060-4e82-bfd2-67ed4f60262f",
- "roleDefinitionId": "344880d0-81ee-4377-b825-b8b79810e492",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "Canada Central",
- "Central India",
- "North Central US",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-01-01",
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/onlineEndpoints",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-12-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/onlineEndpoints/deployments",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-12-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/batchEndpoints",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/batchEndpoints/deployments",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/batchEndpoints/jobs",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/batchEndpoints/deployments/jobs",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/computes",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "workspaces/jobs",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/codes",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/codes/versions",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/components",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/components/versions",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/environments",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/data",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/datastores",
- "locations": [
- "Canada Central",
- "Central India",
- "North Central US",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview",
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/eventGridFilters",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/models",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/models/versions",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US 2"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East US 2"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/computeOperationsStatus",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/workspaceOperationsStatus",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-09-01",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/vmsizes",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/quotas",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/updatequotas",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/linkedServices",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "workspaces/labelingJobs",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-11-19",
- "operations": "2018-11-19"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ViennaAzureMonitor",
- "sourceMdmNamespace": "vienna"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices",
- "onbehalfSupportedLogCategories": [
- "AmlComputeJobEvent",
- "AmlComputeClusterNodeEvent",
- "AmlComputeClusterEvent",
- "AmlComputeCpuGpuUtilization",
- "AmlRunStatusChangedEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Maintenance",
- "namespace": "Microsoft.Maintenance",
- "authorization": {
- "applicationId": "f18474f2-a66a-4bb0-a3c9-9b8d892092fa",
- "roleDefinitionId": "2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5"
- },
- "resourceTypes": [
- {
- "resourceType": "maintenanceConfigurations",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "South Africa North",
- "South Africa West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2020-07-01-preview",
- "2020-04-01",
- "2018-10-01",
- "2018-06-01-preview",
- "2017-04-26",
- "2017-01-01",
- "2016-01-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "updates",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "South Africa North",
- "South Africa West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2020-07-01-preview",
- "2020-04-01",
- "2018-10-01",
- "2018-06-01-preview",
- "2017-04-26",
- "2017-01-01",
- "2016-01-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "configurationAssignments",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "South Africa North",
- "South Africa West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2020-07-01-preview",
- "2020-04-01",
- "2018-10-01",
- "2018-06-01-preview",
- "2017-04-26",
- "2017-01-01",
- "2016-01-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "applyUpdates",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "South Africa North",
- "South Africa West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2020-07-01-preview",
- "2020-04-01",
- "2018-10-01",
- "2018-06-01-preview",
- "2017-04-26",
- "2017-01-01",
- "2016-01-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "publicMaintenanceConfigurations",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.maintenance": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-01-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzDeployer"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzDeployer",
- "sourceMdmNamespace": "LogMetric"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzDeployer",
- "onbehalfSupportedLogCategories": [
- "error",
- "warning",
- "AuditEvents"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ManagedServices",
- "namespace": "Microsoft.ManagedServices",
- "authorization": {
- "applicationId": "66c6d0d1-f2e7-4a18-97a9-ed10f3347016",
- "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2"
- },
- "resourceTypes": [
- {
- "resourceType": "registrationDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-02-01-preview",
- "2019-09-01",
- "2019-06-01",
- "2019-04-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "registrationAssignments",
- "locations": [],
- "apiVersions": [
- "2020-02-01-preview",
- "2019-09-01",
- "2019-06-01",
- "2019-04-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-02-01-preview",
- "2019-09-01",
- "2019-06-01",
- "2019-04-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "marketplaceRegistrationDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-02-01-preview",
- "2019-09-01",
- "2019-06-01",
- "2019-04-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationStatuses",
- "locations": [],
- "apiVersions": [
- "2020-02-01-preview",
- "2019-09-01",
- "2019-06-01",
- "2019-04-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Management",
- "namespace": "Microsoft.Management",
- "authorization": {
- "applicationId": "f2c304cf-8e7e-4c3f-8164-16299ad9d272",
- "roleDefinitionId": "c1cf3708-588a-4647-be7f-f400bbe214cf"
- },
- "resourceTypes": [
- {
- "resourceType": "resources",
- "locations": [],
- "apiVersions": [
- "2017-11-01-preview",
- "2017-08-31-preview",
- "2017-06-30-preview",
- "2017-05-31-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managementGroups",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta",
- "2018-01-01-preview",
- "2017-11-01-preview",
- "2017-08-31-preview",
- "2017-06-30-preview",
- "2017-05-31-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "getEntities",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta",
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managementGroups/settings",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta",
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta",
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults/asyncOperation",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta",
- "2018-01-01-preview",
- "2017-11-01-preview",
- "2017-08-31-preview",
- "2017-06-30-preview",
- "2017-05-31-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "tenantBackfillStatus",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "startTenantBackfill",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Maps",
- "namespace": "Microsoft.Maps",
- "authorizations": [
- {
- "applicationId": "608f6f31-fed0-4f7b-809f-90f6c9b3de78",
- "roleDefinitionId": "3431F0E6-63BC-482D-A96E-0AB819610A5F"
- },
- {
- "applicationId": "ba1ea022-5807-41d5-bbeb-292c7e1cf5f6",
- "roleDefinitionId": "48195074-b752-4868-be0f-7c324a224aa1"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "West Central US",
- "Global",
- "West US 2",
- "East US",
- "West Europe",
- "North Europe"
- ],
- "apiVersions": [
- "2021-02-01",
- "2020-02-01-preview",
- "2018-05-01",
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2021-02-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/privateAtlases",
- "locations": [
- "United States"
- ],
- "apiVersions": [
- "2020-02-01-preview"
- ],
- "defaultApiVersion": "2020-02-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/creators",
- "locations": [
- "North Europe",
- "West Europe",
- "East US 2",
- "West US 2",
- "Europe",
- "United States"
- ],
- "apiVersions": [
- "2021-02-01",
- "2020-02-01-preview"
- ],
- "defaultApiVersion": "2021-02-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/eventGridFilters",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2020-02-01-preview",
- "2018-05-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2020-02-01-preview",
- "2018-05-01",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2021-02-01",
- "operations": "2021-02-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLocationBasedServices"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftLocationBasedServicesShoebox",
- "sourceMdmNamespace": "ServiceOperations"
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Marketplace",
- "namespace": "Microsoft.Marketplace",
- "authorizations": [
- {
- "applicationId": "a0e1e353-1a3e-42cf-a8ea-3a9746eec58c"
- },
- {
- "applicationId": "87df0fbf-e22d-4d7c-bc30-f59ca7460837"
- },
- {
- "applicationId": "a5ce81bb-67c7-4043-952a-22004782adb5"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "register",
- "locations": [],
- "apiVersions": [
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privategalleryitems",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "products",
- "locations": [],
- "apiVersions": [
- "2018-08-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offers",
- "locations": [],
- "apiVersions": [
- "2018-08-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "macc",
- "locations": [],
- "apiVersions": [
- "2018-08-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers/offers",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers/offers/plans",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers/offers/plans/configs",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers/offers/plans/configs/importImage",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers/offers/plans/agreements",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listAvailableOffers",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "publishers",
- "locations": [],
- "apiVersions": [
- "2019-06-30-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "publishers/offers",
- "locations": [],
- "apiVersions": [
- "2019-06-30-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "publishers/offers/amendments",
- "locations": [],
- "apiVersions": [
- "2019-06-30-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStoreClient",
- "locations": [],
- "apiVersions": [
- "2018-08-01-beta",
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores",
- "locations": [],
- "apiVersions": [
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/offers",
- "locations": [],
- "apiVersions": [
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/requestApprovals/query",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/requestApprovals/withdrawPlan",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/RequestApprovals",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/queryNotificationsState",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/offers/acknowledgeNotification",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/AdminRequestApprovals",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MarketplaceApps",
- "namespace": "Microsoft.MarketplaceApps",
- "resourceTypes": [
- {
- "resourceType": "classicDevServices",
- "locations": [
- "Northwest US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East"
- ],
- "apiVersions": [
- "2017-11-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2017-11-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MarketplaceOrdering",
- "namespace": "Microsoft.MarketplaceOrdering",
- "resourceTypes": [
- {
- "resourceType": "agreements",
- "locations": [
- "South Central US",
- "West US"
- ],
- "apiVersions": [
- "2021-01-01",
- "2015-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2015-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offertypes",
- "locations": [
- "South Central US",
- "West US"
- ],
- "apiVersions": [
- "2021-01-01",
- "2015-06-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Migrate",
- "namespace": "Microsoft.Migrate",
- "authorizations": [
- {
- "applicationId": "e3bfd6ac-eace-4438-9dc1-eed439e738de",
- "roleDefinitionId": "e88f4159-1d71-4b12-8ef0-38c039cb051e"
- },
- {
- "applicationId": "51df634f-ddb4-4901-8a2d-52f6393a796b",
- "roleDefinitionId": "d7568dc2-2265-41f7-9c0f-1e9c7862ca62"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "projects",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia"
- ],
- "apiVersions": [
- "2018-02-02",
- "2017-11-11-preview",
- "2017-09-25-privatepreview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrateprojects",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "West US 2",
- "Australia Southeast",
- "UK South",
- "UK West",
- "Canada Central",
- "Central India",
- "South India",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Korea South",
- "Korea Central",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-06-01-preview",
- "2020-05-01",
- "2019-06-01",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "e3bfd6ac-eace-4438-9dc1-eed439e738de"
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "assessmentProjects",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-05-01-preview",
- "2019-10-01",
- "2019-05-01",
- "2018-06-30-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "moveCollections",
- "locations": [
- "East US 2",
- "North Europe",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "Japan East"
- ],
- "apiVersions": [
- "2021-01-01",
- "2019-10-01-preview"
- ],
- "defaultApiVersion": "2021-01-01",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "c1044a71-fd4a-42f0-9ba3-bd810cae7cb3"
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US"
- ],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2018-06-30-preview",
- "2018-02-02",
- "2017-11-11-preview",
- "2017-09-25-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-02-02",
- "2017-11-11-preview",
- "2017-09-25-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia"
- ],
- "apiVersions": [
- "2018-02-02",
- "2017-11-11-preview",
- "2017-09-25-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/assessmentOptions",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia"
- ],
- "apiVersions": [
- "2018-02-02",
- "2017-11-11-preview",
- "2017-09-25-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/rmsOperationResults",
- "locations": [
- "East US 2",
- "North Europe",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "Japan East"
- ],
- "apiVersions": [
- "2021-01-01",
- "2019-10-01-preview"
- ],
- "defaultApiVersion": "2021-01-01",
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MixedReality",
- "namespace": "Microsoft.MixedReality",
- "authorizations": [
- {
- "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18",
- "roleDefinitionId": "b67ee066-e058-4ddb-92bc-83cdd74bc38a"
- },
- {
- "applicationId": "a15bc1de-f777-408f-9d2b-a27ed19c72ba"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2021-01-01",
- "2020-05-01",
- "2020-04-06-preview",
- "2019-12-02-preview",
- "2019-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Australia East",
- "East US",
- "East US 2",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2021-01-01",
- "2020-05-01",
- "2020-04-06-preview",
- "2019-12-02-preview",
- "2019-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2021-01-01",
- "2020-05-01",
- "2020-04-06-preview",
- "2019-12-02-preview",
- "2019-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "spatialAnchorsAccounts",
- "locations": [
- "Australia East",
- "East US",
- "East US 2",
- "Korea Central",
- "North Europe",
- "West Europe",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2021-01-01",
- "2020-05-01",
- "2019-12-02-preview",
- "2019-02-28-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-05-01",
- "operations": "2020-05-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "",
- "metrics": {
- "metricsFilterPathSelector": "",
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MixedReality"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "SpatialAnchorsShoebox",
- "sourceMdmNamespace": "SACustomer"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "remoteRenderingAccounts",
- "locations": [
- "East US 2",
- "East US",
- "Southeast Asia",
- "West Europe",
- "West US 2",
- "Japan East",
- "Australia East",
- "North Europe",
- "South Central US",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2021-01-01",
- "2020-04-06-preview",
- "2019-12-02-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-04-06-preview",
- "operations": "2020-04-06-preview"
- },
- "mdsMappingResourceIdOverridePathSelector": "",
- "metrics": {
- "metricsFilterPathSelector": "",
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MixedReality"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "RemoteRenderingShoebox",
- "sourceMdmNamespace": "RRCustomer"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "objectAnchorsAccounts",
- "locations": [
- "East US 2"
- ],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-02-28-preview",
- "operations": "2019-02-28-preview"
- },
- "mdsMappingResourceIdOverridePathSelector": "",
- "metrics": {
- "metricsFilterPathSelector": "",
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MixedReality"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "DefaultShoebox",
- "sourceMdmNamespace": "DefaultCustomer"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MobileNetwork",
- "namespace": "Microsoft.MobileNetwork",
- "authorizations": [
- {
- "applicationId": "54b9b9be-c365-4548-95c6-d2f2011f48f4",
- "roleDefinitionId": "b27fa4bc-5127-4625-b3e5-5fc5eddbc24e"
- },
- {
- "applicationId": "b8ed041c-aa91-418e-8f47-20c70abc2de1",
- "roleDefinitionId": "b27fa4bc-5127-4625-b3e5-5fc5eddbc24e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-06-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2020-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-06-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.NetApp",
- "namespace": "Microsoft.NetApp",
- "authorizations": [
- {
- "applicationId": "12fb057d-b751-47cd-857c-f2934bb677b4",
- "roleDefinitionId": "e4796bef-6b6d-4cbc-ba1e-27f1a308d860"
- },
- {
- "applicationId": "608f9929-9737-432e-860f-4e1c1821052f",
- "roleDefinitionId": "3db66429-be98-4b0c-8ad6-20dc5cb960e4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Germany North",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2",
- "West US (Stage)",
- "West US 2 (Stage)",
- "South Central US (Stage)"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2020-12-01",
- "2020-11-01",
- "2020-10-01",
- "2020-09-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-03-01",
- "2020-02-01",
- "2019-11-01",
- "2019-10-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-05-01",
- "2017-08-15"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "12fb057d-b751-47cd-857c-f2934bb677b4"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-08-15",
- "operations": "2017-08-15"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.NetApp"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftNetAppShoebox2",
- "sourceMdmNamespace": "NetAppUsageAndMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ObjectStore",
- "namespace": "Microsoft.ObjectStore",
- "resourceTypes": [
- {
- "resourceType": "osNamespaces",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OffAzure",
- "namespace": "Microsoft.OffAzure",
- "authorizations": [
- {
- "applicationId": "728a93e3-065d-4678-93b1-3cc281223341",
- "roleDefinitionId": "b9967bf7-a345-4af8-95f0-49916f760fc6"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "VMwareSites",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-09-09-preview",
- "2020-01-01-preview",
- "2020-01-01",
- "2019-06-06",
- "2019-05-01-preview",
- "2018-05-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "HyperVSites",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-01-01",
- "2019-06-06",
- "2018-05-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ServerSites",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-09-09-preview",
- "2020-01-01-preview",
- "2019-05-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ImportSites",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-02-01",
- "2020-01-01-preview",
- "2019-05-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "MasterSites",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-11-11-preview",
- "2020-07-07"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-07-07"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-07-07"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-01-01",
- "2019-06-06",
- "2018-05-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OpenLogisticsPlatform",
- "namespace": "Microsoft.OpenLogisticsPlatform",
- "authorizations": [
- {
- "applicationId": "3bc3fbf6-023a-4d86-bd09-bac559ccc9cc",
- "roleDefinitionId": "38f09e57-663e-42b8-9db9-7d9e5138d5e4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US 2 EUAP",
- "West Central US"
- ],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "shareInvites",
- "locations": [
- "East US 2 EUAP",
- "West Central US"
- ],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationRegistrationInvites",
- "locations": [
- "East US 2 EUAP",
- "West Central US"
- ],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Peering",
- "namespace": "Microsoft.Peering",
- "resourceTypes": [
- {
- "resourceType": "peerings",
- "locations": [
- "Japan East",
- "Japan West",
- "Korea Central",
- "East Asia",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Southeast Asia",
- "West India",
- "South India",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "Canada Central",
- "West US",
- "West US 2",
- "West Central US",
- "Canada East",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "peeringLocations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "legacyPeerings",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "peerAsns",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "peeringServices",
- "locations": [
- "Japan East",
- "Japan West",
- "Korea Central",
- "East Asia",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Southeast Asia",
- "West India",
- "South India",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "Canada Central",
- "West US",
- "West US 2",
- "West Central US",
- "Canada East",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "peeringServiceCountries",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "peeringServiceLocations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "peeringServiceProviders",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkServiceProviderAvailability",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "cdnPeeringPrefixes",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01"
- ],
- "defaultApiVersion": "2020-10-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-04-01",
- "operations": "2020-04-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftPeering"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftPeeringShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerBI",
- "namespace": "Microsoft.PowerBI",
- "authorizations": [
- {
- "applicationId": "00000009-0000-0000-c000-000000000000",
- "roleDefinitionId": "d2079c0c-4a98-48b1-b511-eae3fc2003ab"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaceCollections",
- "locations": [
- "South Central US",
- "North Central US",
- "East US 2",
- "West US",
- "West Europe",
- "North Europe",
- "Brazil South",
- "Southeast Asia",
- "Australia Southeast",
- "Canada Central",
- "Japan East",
- "UK South",
- "West India"
- ],
- "apiVersions": [
- "2016-01-29"
- ],
- "defaultApiVersion": "2016-01-29",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2016-01-29"
- ],
- "defaultApiVersion": "2016-01-29",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "South Central US",
- "North Central US",
- "East US 2",
- "West US",
- "West Europe",
- "North Europe",
- "Brazil South",
- "Southeast Asia",
- "Australia Southeast",
- "Canada Central",
- "Japan East",
- "UK South",
- "West India"
- ],
- "apiVersions": [
- "2016-01-29"
- ],
- "defaultApiVersion": "2016-01-29",
- "capabilities": "None"
- },
- {
- "resourceType": "privateLinkServicesForPowerBI",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateLinkServicesForPowerBI/operationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2020-06-01",
- "2016-01-29"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-01-29",
- "operations": "2016-01-29"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "PBIDedicatedRP",
- "onbehalfSupportedLogCategories": [
- "Engine"
- ]
- }
- ],
- "regionless": true
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerBIDedicated",
- "namespace": "Microsoft.PowerBIDedicated",
- "authorizations": [
- {
- "applicationId": "4ac7d521-0382-477b-b0f8-7e1d95f85ca2",
- "roleDefinitionId": "490d5987-bcf6-4be6-b6b2-056a78cb693a"
- },
- {
- "applicationId": "cb4dc29f-0bf4-402a-8b30-7511498ed654",
- "roleDefinitionId": "e03b0682-208e-4ddd-841f-66fb49a5c930"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "capacities",
- "locations": [
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Norway East",
- "Norway West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "Japan West",
- "South Africa North",
- "Switzerland North",
- "Switzerland West",
- "Canada East",
- "South Africa West",
- "UK West",
- "Central US",
- "Central India",
- "Australia East",
- "East Asia",
- "East US",
- "East US 2",
- "West India",
- "Japan East",
- "West Central US",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-01-01",
- "2018-09-01-preview",
- "2017-10-01",
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2017-01-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "autoScaleVCores",
- "locations": [
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Norway East",
- "Norway West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "Japan West",
- "South Africa North",
- "Switzerland North",
- "Switzerland West",
- "Canada East",
- "South Africa West",
- "UK West",
- "Central US",
- "Central India",
- "Australia East",
- "East Asia",
- "East US",
- "East US 2",
- "West India",
- "Japan East",
- "West Central US",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-01-01"
- ],
- "defaultApiVersion": "2021-01-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2017-01-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Norway East",
- "Norway West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "Japan West",
- "Switzerland North",
- "Switzerland West",
- "Canada East",
- "UK West",
- "Central US",
- "Central India",
- "Australia East",
- "East Asia",
- "East US",
- "East US 2",
- "West India",
- "Japan East",
- "West Central US",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South Africa West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-01-01",
- "2018-09-01-preview",
- "2017-10-01",
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2017-01-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Norway East",
- "Norway West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "Japan West",
- "Switzerland North",
- "Switzerland West",
- "Canada East",
- "UK West",
- "Central US",
- "Central India",
- "Australia East",
- "East Asia",
- "East US",
- "East US 2",
- "West India",
- "Japan East",
- "West Central US",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "South Africa North",
- "South Africa West",
- "West US 2"
- ],
- "apiVersions": [
- "2021-01-01",
- "2018-09-01-preview",
- "2017-10-01",
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2017-01-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Norway East",
- "Norway West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "Japan West",
- "Switzerland North",
- "Switzerland West",
- "Canada East",
- "UK West",
- "Central US",
- "Central India",
- "Australia East",
- "East Asia",
- "East US",
- "East US 2",
- "West India",
- "Japan East",
- "West Central US",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2021-01-01",
- "2018-09-01-preview",
- "2017-10-01",
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2017-01-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US 2"
- ],
- "apiVersions": [
- "2021-01-01",
- "2018-09-01-preview",
- "2017-10-01",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-01-01-preview"
- },
- "metrics": {
- "metricsFilterPathSelector": "sku.name",
- "mdmInfo": [
- {
- "sourceMdmAccount": "PBIDedicated",
- "sourceMdmNamespace": "SystemCounters"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "PBIDedicatedRP"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "PBIDedicatedRP",
- "onbehalfSupportedLogCategories": [
- "Engine"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerPlatform",
- "namespace": "Microsoft.PowerPlatform",
- "authorization": {
- "applicationId": "e64bd61e-5424-451f-b666-e02ee2878437",
- "roleDefinitionId": "51598b27-f396-476b-b212-90d7da526159"
- },
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-10-30",
- "2020-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "enterprisePolicies",
- "locations": [],
- "apiVersions": [
- "2020-10-30-preview",
- "2020-10-30"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ProjectBabylon",
- "namespace": "Microsoft.ProjectBabylon",
- "authorizations": [
- {
- "applicationId": "73c2949e-da2d-457a-9607-fcc665198967",
- "roleDefinitionId": "1BC09725-0C9B-4F57-A3D0-FCCF4EB40120",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "defaultApiVersion": "2019-10-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "73c2949e-da2d-457a-9607-fcc665198967"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-10-01-preview",
- "operations": "2019-10-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "ProjectBabylon"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftProjectBabylonShoebox",
- "sourceMdmNamespace": "CatalogAnalytics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ProviderHub",
- "namespace": "Microsoft.ProviderHub",
- "resourceTypes": [
- {
- "resourceType": "providerRegistrations",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-11-20",
- "2020-10-01-preview",
- "2020-09-01-preview",
- "2020-06-01-preview",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationStatuses",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-11-20",
- "2020-06-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providerRegistrations/resourceTypeRegistrations",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-11-20",
- "2020-10-01-preview",
- "2020-09-01-preview",
- "2020-06-01-preview",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providerRegistrations/defaultRollouts",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-11-20",
- "2020-10-01-preview",
- "2020-09-01-preview",
- "2020-06-01-preview",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providerRegistrations/customRollouts",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-11-20",
- "2020-10-01-preview",
- "2020-09-01-preview",
- "2020-06-01-preview",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "availableAccounts",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-06-01-preview",
- "2019-02-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Purview",
- "namespace": "Microsoft.Purview",
- "authorizations": [
- {
- "applicationId": "73c2949e-da2d-457a-9607-fcc665198967",
- "roleDefinitionId": "1BC09725-0C9B-4F57-A3D0-FCCF4EB40120",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Canada Central",
- "South Central US",
- "Brazil South",
- "Central India",
- "UK South",
- "Australia East",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-12-01-preview",
- "operations": "2020-12-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "ProjectBabylon"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftAzurePurviewShoebox",
- "sourceMdmNamespace": "CatalogAnalytics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "ProjectBabylon",
- "onbehalfSupportedLogCategories": [
- "ScanStatusLogEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "setDefaultAccount",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "removeDefaultAccount",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "getDefaultAccount",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Brazil South",
- "Canada Central",
- "South Central US",
- "Central India",
- "UK South",
- "Australia East",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "73c2949e-da2d-457a-9607-fcc665198967"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-12-01-preview",
- "operations": "2020-12-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "ProjectBabylon"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftAzurePurviewShoebox",
- "sourceMdmNamespace": "CatalogAnalytics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Quantum",
- "namespace": "Microsoft.Quantum",
- "authorizations": [
- {
- "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc",
- "roleDefinitionId": "915bd376-2da8-411d-9906-895a54086a66"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Workspaces",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "West Central US",
- "Japan East",
- "Japan West",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "defaultApiVersion": "2019-11-04-preview",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc"
- },
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East US 2 EUAP",
- "Central US EUAP",
- "West US 2",
- "West Central US",
- "Japan East",
- "Japan West",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/offerings",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "West Central US",
- "Japan East",
- "Japan West",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc"
- },
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RecommendationsService",
- "namespace": "Microsoft.RecommendationsService",
- "authorizations": [
- {
- "applicationId": "C5B731DB-1B0A-43F6-BCF6-757667D9CDC6",
- "roleDefinitionId": "FA1FE492-0EDB-4A97-A404-DBDF3F915824"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US",
- "West US",
- "North Europe",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts",
- "locations": [
- "East US",
- "West US",
- "North Europe",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/modeling",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/serviceEndpoints",
- "locations": [
- "East US",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RecoveryServices",
- "namespace": "Microsoft.RecoveryServices",
- "authorizations": [
- {
- "applicationId": "262044b1-e2ce-469f-a196-69ab7ada62d3",
- "roleDefinitionId": "21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"
- },
- {
- "applicationId": "b8340c3b-9267-498f-b21a-15d5547fd85e",
- "roleDefinitionId": "8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"
- },
- {
- "applicationId": "3b2fa68d-a091-48c9-95be-88d572e08fb7",
- "roleDefinitionId": "47d68fae-99c7-4c10-b9db-2316116a061e"
- },
- {
- "applicationId": "9bdab391-7bbe-42e8-8132-e4491dc29cc0",
- "roleDefinitionId": "0383f7f5-023d-4379-b2c7-9ef786459969"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "vaults",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-10",
- "2021-02-01-preview",
- "2021-02-01",
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-07-01-preview",
- "2020-07-01",
- "2020-02-02-preview",
- "2020-02-02",
- "2019-06-15",
- "2019-05-13-preview",
- "2019-05-13",
- "2018-12-20-preview",
- "2018-12-20",
- "2018-07-10-preview",
- "2018-07-10",
- "2018-01-10",
- "2017-07-01-preview",
- "2017-07-01",
- "2016-12-01",
- "2016-08-10",
- "2016-06-01",
- "2016-05-01",
- "2015-12-15",
- "2015-12-10",
- "2015-11-10",
- "2015-08-15",
- "2015-08-10",
- "2015-06-10",
- "2015-03-15"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-01-10"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2021-02-10",
- "2021-02-01-preview",
- "2021-02-01",
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-07-01-preview",
- "2020-07-01",
- "2020-02-02-preview",
- "2020-02-02",
- "2019-06-15",
- "2019-05-13-preview",
- "2019-05-13",
- "2018-07-10-preview",
- "2018-07-10",
- "2018-01-10",
- "2017-09-01",
- "2017-07-01-preview",
- "2017-07-01",
- "2016-12-01",
- "2016-08-10",
- "2016-06-01",
- "2015-12-15",
- "2015-12-10",
- "2015-11-10",
- "2015-08-15",
- "2015-08-10",
- "2015-06-10",
- "2015-03-15"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-08-10"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2017-07-01",
- "2016-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupStatus",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-03-01",
- "2017-07-01",
- "2016-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-01-10"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-01-10"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/allocatedStamp",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2016-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/allocateStamp",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2016-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupValidateFeatures",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-03-01",
- "2017-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-07-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupPreValidateProtection",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-03-01",
- "2017-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-07-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupCrrJobs",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupCrrJob",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupAadProperties",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupCrossRegionRestore",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupCrrOperationResults",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupCrrOperationsStatus",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "backupProtectedItems",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2017-07-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-07-01-preview"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "replicationEligibilityResults",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-10",
- "2018-07-10"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-10"
- }
- ],
- "capabilities": "SupportsExtension"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-08-10",
- "operations": "2016-08-10"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureRecoveryServices"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureRecoveryServices",
- "onbehalfSupportedLogCategories": [
- "AzureBackupReport",
- "CoreAzureBackup",
- "AddonAzureBackupJobs",
- "AddonAzureBackupAlerts",
- "AddonAzureBackupPolicy",
- "AddonAzureBackupStorage",
- "AddonAzureBackupProtectedInstance",
- "AzureSiteRecoveryJobs",
- "AzureSiteRecoveryEvents",
- "AzureSiteRecoveryReplicatedItems",
- "AzureSiteRecoveryReplicationStats",
- "AzureSiteRecoveryRecoveryPoints",
- "AzureSiteRecoveryReplicationDataUploadRate",
- "AzureSiteRecoveryProtectedDiskDataChurn"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "56d7070a-0115-4bfe-8398-033c18db3871"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RedHatOpenShift",
- "namespace": "Microsoft.RedHatOpenShift",
- "authorizations": [
- {
- "applicationId": "f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875",
- "roleDefinitionId": "640c5ac9-6f32-4891-94f4-d20f7aa9a7e6",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635",
- "managedByAuthorization": {
- "allowManagedByInheritance": true
- }
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-04-30",
- "2019-12-31-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UK South",
- "UK West",
- "West Europe",
- "West US 2",
- "West US"
- ],
- "apiVersions": [
- "2020-04-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsstatus",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UK South",
- "UK West",
- "West Europe",
- "West US 2",
- "West US"
- ],
- "apiVersions": [
- "2020-04-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "OpenShiftClusters",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UK South",
- "UK West",
- "West Europe",
- "West US 2",
- "West US"
- ],
- "apiVersions": [
- "2020-04-30"
- ],
- "defaultApiVersion": "2020-04-30",
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-04-30",
- "2019-12-31-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceConnector",
- "namespace": "Microsoft.ResourceConnector",
- "authorizations": [
- {
- "applicationId": "585fc3c3-9a59-4720-8319-53cce041a605",
- "roleDefinitionId": "008e7b93-7712-4d05-83ce-a9fcc80300e9"
- },
- {
- "applicationId": "d22ea4d1-2678-4a7b-aa5e-f340c2a7d993",
- "roleDefinitionId": "7c812eee-67c9-4a05-a1b1-c0ac88fd1067"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-09-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2020-07-15-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "e0a56fdf-acc9-427b-b9f2-763bb3e8724e"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceGraph",
- "namespace": "Microsoft.ResourceGraph",
- "authorization": {
- "applicationId": "509e4652-da8d-478d-a730-e9d4a1996ca4"
- },
- "resourceTypes": [
- {
- "resourceType": "resources",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-04-01-preview",
- "2019-04-01",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourcesHistory",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2020-04-01-preview",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceChanges",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2020-04-01-preview",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceChangeDetails",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2020-04-01-preview",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-04-01-preview",
- "2019-04-01",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptionsStatus",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2019-04-01",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "queries",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources",
- "namespace": "Microsoft.Resources",
- "authorization": {
- "applicationId": "3b990c8b-9607-4c2a-8b04-1d41985facca"
- },
- "resourceTypes": [
- {
- "resourceType": "tenants",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "notifyResourceJobs",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "tags",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "checkPolicyCompliance",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providers",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkresourcename",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "calculateTemplateHash",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resources",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/resources",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/providers",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/operationresults",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceGroups",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "SupportsLocation"
- },
- {
- "resourceType": "subscriptions/resourceGroups",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "subscriptions/resourcegroups/resources",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/locations",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/tagnames",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/tagNames/tagValues",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deployments",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-06-01",
- "2019-09-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deployments/operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-06-01",
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "links",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-01-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-01-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "bulkDelete",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deploymentScripts",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Switzerland North",
- "Germany West Central",
- "East US 2",
- "East US",
- "Central US",
- "North Central US",
- "France Central",
- "UK South",
- "Central India",
- "South India",
- "Japan East",
- "Korea Central",
- "North Europe",
- "Norway East",
- "UAE North",
- "West Central US",
- "West Europe",
- "West US 2",
- "West US",
- "South Central US"
- ],
- "apiVersions": [
- "2020-10-01",
- "2019-10-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "deploymentScripts/logs",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Switzerland North",
- "Germany West Central",
- "East US 2",
- "East US",
- "Central US",
- "North Central US",
- "France Central",
- "UK South",
- "Central India",
- "South India",
- "Japan East",
- "Korea Central",
- "North Europe",
- "Norway East",
- "UAE North",
- "West Central US",
- "West Europe",
- "West US 2",
- "West US",
- "South Central US"
- ],
- "apiVersions": [
- "2020-10-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deploymentScriptOperationResults",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Switzerland North",
- "Germany West Central",
- "East US 2",
- "East US",
- "Central US",
- "North Central US",
- "France Central",
- "UK South",
- "Central India",
- "South India",
- "Japan East",
- "Korea Central",
- "North Europe",
- "Norway East",
- "UAE North",
- "West Central US",
- "West Europe",
- "West US 2",
- "West US",
- "South Central US"
- ],
- "apiVersions": [
- "2020-10-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "templateSpecs",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Central",
- "Australia Central 2",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Switzerland North",
- "Germany West Central",
- "East US 2",
- "East US",
- "Central US",
- "North Central US",
- "France Central",
- "UK South",
- "UK West",
- "Central India",
- "West India",
- "South India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Europe",
- "Norway East",
- "UAE North",
- "West Central US",
- "West Europe",
- "West US 2",
- "West US",
- "South Central US",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "templateSpecs/versions",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Central",
- "Australia Central 2",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Switzerland North",
- "Germany West Central",
- "East US 2",
- "East US",
- "Central US",
- "North Central US",
- "France Central",
- "UK South",
- "UK West",
- "Central India",
- "West India",
- "South India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Europe",
- "Norway East",
- "UAE North",
- "West Central US",
- "West Europe",
- "West US 2",
- "West US",
- "South Central US",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "endpoints": {
- "galleryEndpoint": "https://gallery.azure.com",
- "graphEndpoint": "https://graph.windows.net/",
- "portalEndpoint": "https://portal.azure.com",
- "graphAudience": "https://graph.windows.net/",
- "authentication": {
- "loginEndpoint": "https://login.windows.net",
- "audiences": [
- "https://management.core.windows.net/",
- "https://management.azure.com/"
- ],
- "tenant": "common",
- "identityProvider": "AAD"
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "3b990c8b-9607-4c2a-8b04-1d41985facca"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SaaS",
- "namespace": "Microsoft.SaaS",
- "authorizations": [
- {
- "applicationId": "f738ef14-47dc-4564-b53b-45069484ccc7",
- "roleDefinitionId": "b131dd2d-387a-4cae-bb9b-3d021f80d1e6"
- },
- {
- "applicationId": "20e940b3-4c77-4b0b-9a53-9e16a1b010a7"
- },
- {
- "applicationId": "5b712e99-51a3-41ce-86ff-046e0081c5c0"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "applications",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checknameavailability",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "saasresources",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resources",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Scheduler",
- "namespace": "Microsoft.Scheduler",
- "resourceTypes": [
- {
- "resourceType": "jobcollections",
- "locations": [
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Central US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South"
- ],
- "apiVersions": [
- "2016-03-01",
- "2016-01-01",
- "2014-08-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Central US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South"
- ],
- "apiVersions": [
- "2016-03-01",
- "2016-01-01",
- "2014-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Central US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South"
- ],
- "apiVersions": [
- "2016-03-01",
- "2016-01-01",
- "2014-08-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Scom",
- "namespace": "Microsoft.Scom",
- "authorizations": [
- {
- "applicationId": "d3315f6c-968a-40bb-94d2-a6a9503b05f5",
- "roleDefinitionId": "a51caa68-288c-4fb0-87d2-a722d0910d90",
- "managedByRoleDefinitionId": "2324acd9-7b7e-49d0-a2a8-e084c9adc580"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2021-06-30-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-06-30-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-30-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances",
- "locations": [
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2021-06-30-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ScVmm",
- "namespace": "Microsoft.ScVmm",
- "authorizations": [
- {
- "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05",
- "roleDefinitionId": "4fe6d683-8411-4247-8525-b6b5b8a80669"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-06-05-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US",
- "West US 2",
- "East US 2 EUAP",
- "West Europe"
- ],
- "apiVersions": [
- "2020-06-05-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-06-05-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Search",
- "namespace": "Microsoft.Search",
- "authorizations": [
- {
- "applicationId": "408992c7-2af6-4ff1-92e3-65b73d2b5092",
- "roleDefinitionId": "20FA3191-87CF-4C3D-9510-74CCB594A310"
- },
- {
- "applicationId": "880da380-985e-4198-81b9-e05b1cc53158",
- "roleDefinitionId": "d2e67903-baaa-4696-926b-61ab86235aaf"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "searchServices",
- "locations": [
- "Jio India West",
- "West US 3",
- "Germany West Central",
- "Norway East",
- "Switzerland West",
- "Switzerland North",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "Japan West",
- "Japan East",
- "Korea Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "Canada Central",
- "UK South",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-Preview",
- "2020-08-01-Preview",
- "2020-08-01",
- "2020-03-13",
- "2019-10-01-Preview",
- "2015-08-19",
- "2015-02-28",
- "2014-07-31-Preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkServiceNameAvailability",
- "locations": [],
- "apiVersions": [
- "2015-02-28",
- "2014-07-31-Preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-04-01-Preview",
- "2020-08-01-Preview",
- "2020-08-01",
- "2020-03-13",
- "2019-10-01-Preview",
- "2015-08-19"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceHealthMetadata",
- "locations": [
- "Jio India West",
- "West US 3",
- "Germany West Central",
- "Norway East",
- "Switzerland West",
- "Switzerland North",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "Japan West",
- "Japan East",
- "Korea Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "Canada Central",
- "UK South",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-Preview",
- "2020-08-01-Preview",
- "2020-08-01",
- "2020-03-13",
- "2019-10-01-Preview",
- "2015-08-19"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-Preview",
- "2020-08-01-Preview",
- "2020-08-01",
- "2020-03-13",
- "2019-10-01-Preview",
- "2015-08-19",
- "2015-02-28"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "7a9069fc-325f-43a6-a3b2-2bd000d8cc08"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureSearch"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "azsearchshoeboxprod",
- "sourceMdmNamespace": "Microsoft.Search"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureSearch",
- "onbehalfSupportedLogCategories": [
- "OperationLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SecurityDetonation",
- "namespace": "Microsoft.SecurityDetonation",
- "authorizations": [
- {
- "applicationId": "29820072-374d-49b8-945a-3941d7e9b468",
- "roleDefinitionId": "4ddf1807-30b0-464a-9d16-a8822daf866b"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Australia Central 2",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West"
- ],
- "apiVersions": [
- "2020-07-01-preview",
- "2019-08-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-07-01-preview",
- "operations": "2020-07-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.SecurityDetonation"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSecurityDetonationShoeboxCentralUS",
- "sourceMdmNamespace": "DaaSRPProd"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SecurityInsights",
- "namespace": "Microsoft.SecurityInsights",
- "authorizations": [
- {
- "applicationId": "98785600-1bb7-4fb9-b9fa-19afe2c8a360",
- "roleDefinitionId": "ef1c46aa-ae81-4091-ab83-f75f28efb7b8"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "alertRules",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "alertRuleTemplates",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "cases",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "bookmarks",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "dataConnectors",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "dataConnectorsCheckRequirements",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "enrichment",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "entities",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "incidents",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "officeConsents",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "settings",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "aggregations",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "entityQueries",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "entityQueryTemplates",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "threatIntelligence",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "automationRules",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "sourceControls",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "listrepositories",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "watchlists",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "onboardingStates",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "metadata",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SerialConsole",
- "namespace": "Microsoft.SerialConsole",
- "resourceTypes": [
- {
- "resourceType": "consoleServices",
- "locations": [],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "serialPorts",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/consoleServices",
- "locations": [
- "West US 2",
- "East US 2"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceFabric",
- "namespace": "Microsoft.ServiceFabric",
- "authorization": {
- "applicationId": "74cb6831-0dbb-4be1-8206-fd4df301cdc2",
- "roleDefinitionId": "e55cc65f-6903-4917-b4ef-f8d4640b57f5",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- },
- "resourceTypes": [
- {
- "resourceType": "clusters",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters/applications",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/clusterVersions",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/environments",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedclusters",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managedclusters/nodetypes",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedclusters/applicationTypes",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedclusters/applicationTypes/versions",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedclusters/applications",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "managedclusters/applications/services",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedClusterOperations",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedClusterOperationResults",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedClusterVersions",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/environments/managedClusterVersions",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "74cb6831-0dbb-4be1-8206-fd4df301cdc2"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceFabricMesh",
- "namespace": "Microsoft.ServiceFabricMesh",
- "authorizations": [
- {
- "applicationId": "d10de03d-5ba3-497a-90e6-7ff8c9736059",
- "roleDefinitionId": "BC13595A-E262-4621-929E-56FF90E6BF18"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "applications",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-09-01-preview",
- "operations": "2018-09-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.ServiceFabricMesh"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftServiceFabricMeshShoebox",
- "sourceMdmNamespace": "SFMeshProd"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networks",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "volumes",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "secrets",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "gateways",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/applicationOperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/networkOperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/volumeOperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/gatewayOperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/secretOperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "d10de03d-5ba3-497a-90e6-7ff8c9736059"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-09-01-preview",
- "operations": "2018-09-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.ServiceFabricMesh"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftServiceFabricMeshShoebox",
- "sourceMdmNamespace": "SFMeshProd"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceLinker",
- "namespace": "Microsoft.ServiceLinker",
- "authorizations": [
- {
- "applicationId": "c4288165-6698-45ba-98a5-48ea7791fed3",
- "roleDefinitionId": "57197417-7922-48fd-b5ed-7b142db155ea"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2 EUAP",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServicesHub",
- "namespace": "Microsoft.ServicesHub",
- "authorizations": [
- {
- "applicationId": "9ed4cd8c-9a98-405f-966b-38ab1b0c24a3"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "connectors",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "Southeast Asia",
- "South Central US",
- "UK South",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2019-08-15-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces",
- "locations": [],
- "apiVersions": [
- "2019-08-15-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "supportOfferingEntitlement",
- "locations": [],
- "apiVersions": [
- "2019-08-15-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-08-15-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Singularity",
- "namespace": "Microsoft.Singularity",
- "authorizations": [
- {
- "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3",
- "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee"
- },
- {
- "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1",
- "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee"
- },
- {
- "applicationId": "17724442-aa9a-46cc-bf09-c47bb1a98518",
- "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/storageContainers",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/accountQuotaPolicies",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/groupPolicies",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/jobs",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "accounts/models",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Central US",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceTypeSeries",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceTypeSeries/instanceTypes",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "images",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central",
- "South Central US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationIds": [
- "349e15d0-1c96-4829-95e5-7fc8fb358ff3",
- "9581bc0e-c952-4fd3-8d99-e777877718b1"
- ]
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SoftwarePlan",
- "namespace": "Microsoft.SoftwarePlan",
- "resourceTypes": [
- {
- "resourceType": "hybridUseBenefits",
- "locations": [],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2019-06-01-preview"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Solutions",
- "namespace": "Microsoft.Solutions",
- "authorization": {
- "applicationId": "ba4bc2bd-843f-4d61-9d33-199178eae34e",
- "roleDefinitionId": "6cb99a0b-29a8-49bc-b57b-057acc68cd9a",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635",
- "managedByAuthorization": {
- "managedByResourceRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- }
- },
- "resourceTypes": [
- {
- "resourceType": "applications",
- "locations": [
- "South Central US",
- "North Central US",
- "West Central US",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "West India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview",
- "2018-06-01",
- "2018-03-01",
- "2018-02-01",
- "2017-12-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2019-07-01",
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationDefinitions",
- "locations": [
- "South Central US",
- "North Central US",
- "West Central US",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "West India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview",
- "2018-06-01",
- "2018-03-01",
- "2018-02-01",
- "2017-12-01",
- "2017-09-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West Central US"
- ],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview",
- "2018-06-01",
- "2018-03-01",
- "2018-02-01",
- "2017-12-01",
- "2017-09-01",
- "2016-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "jitRequests",
- "locations": [
- "South Central US",
- "North Central US",
- "West Central US",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "West India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "South Central US",
- "North Central US",
- "West Central US",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "West India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview",
- "2018-06-01",
- "2018-03-01",
- "2018-02-01",
- "2017-12-01",
- "2017-09-01",
- "2016-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview",
- "2018-06-01",
- "2018-03-01",
- "2018-02-01",
- "2017-12-01",
- "2017-09-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "f7da168b-7d8a-4c9d-a1fa-5daaf05e32c2"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SqlVirtualMachine",
- "namespace": "Microsoft.SqlVirtualMachine",
- "authorizations": [
- {
- "applicationId": "bd93b475-f9e2-476e-963d-b2daf143ffb9",
- "roleDefinitionId": "f96bd990-ffdf-4c17-8ee3-77454d9c3f5d"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "SqlVirtualMachineGroups",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "SqlVirtualMachines",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "SqlVirtualMachineGroups/AvailabilityGroupListeners",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationTypes",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/sqlVirtualMachineOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/sqlVirtualMachineGroupOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/availabilityGroupListenerOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/registerSqlVmCandidate",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "ProviderDescrption": "Provisions and maintains always on clusters for Sql VMs"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StorageCache",
- "namespace": "Microsoft.StorageCache",
- "authorizations": [
- {
- "applicationId": "4392ab71-2ce2-4b0d-8770-b352745c73f5",
- "roleDefinitionId": "e27430df-bd6b-4f3a-bd6d-d52ad1a7d075"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "caches",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Korea Central",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.StorageCache"
- }
- ]
- }
- }
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "caches/storageTargets",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Korea Central",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Korea Central",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "usageModels",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Korea Central",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/ascoperations",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Korea Central",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "4392ab71-2ce2-4b0d-8770-b352745c73f5"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2021-03-01",
- "operations": "2021-03-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.StorageCache"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftStorageCacheShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StoragePool",
- "namespace": "Microsoft.StoragePool",
- "authorizations": [
- {
- "applicationId": "5741a1ff-751d-4ad7-bcd1-dfe3c998fd11",
- "roleDefinitionId": "3eef04c6-e880-42e9-aaef-6e04c508124c",
- "managedByRoleDefinitionId": "7379b183-294f-4404-b062-f3b9a0f03f5a"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-03-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-03-15-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StorageSync",
- "namespace": "Microsoft.StorageSync",
- "authorizations": [
- {
- "applicationId": "9469b9f5-6722-4481-a2b2-14ed560b706f",
- "roleDefinitionId": "4cd49d82-1f4d-43fc-af0c-1c1203668e5a"
- },
- {
- "applicationId": "1fcdfafe-959b-4b32-afff-84f850974e84",
- "roleDefinitionId": "18c76bf0-ff35-48d1-8a74-bcd770c71a1f"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "storageSyncServices",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2018-04-02",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "storageSyncServices/syncGroups",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "storageSyncServices/syncGroups/cloudEndpoints",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "storageSyncServices/syncGroups/serverEndpoints",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "storageSyncServices/registeredServers",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "storageSyncServices/workflows",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "Central US EUAP",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "East US 2 EUAP",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02"
- ],
- "defaultApiVersion": "2018-04-02",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/workflows",
- "locations": [
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "West Central US",
- "West US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02"
- ],
- "defaultApiVersion": "2018-04-02",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-06-05-preview",
- "operations": "2017-06-05-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.StorageSync"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "StorageSyncShoebox",
- "sourceMdmNamespace": "ServerTelemetry"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StreamAnalytics",
- "namespace": "Microsoft.StreamAnalytics",
- "resourceTypes": [
- {
- "resourceType": "streamingjobs",
- "locations": [
- "Central US",
- "West Europe",
- "East US 2",
- "North Europe",
- "Japan East",
- "West US",
- "Southeast Asia",
- "South Central US",
- "East Asia",
- "Japan West",
- "North Central US",
- "East US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "South India",
- "Norway East",
- "Germany West Central",
- "Uae North",
- "Australia Central"
- ],
- "apiVersions": [
- "2019-06-01",
- "2018-11-01",
- "2017-04-01-preview",
- "2016-03-01",
- "2015-11-01",
- "2015-10-01",
- "2015-09-01",
- "2015-08-01-preview",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-03-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters",
- "locations": [
- "Central US",
- "West Europe",
- "East US 2",
- "North Europe",
- "Japan East",
- "West US",
- "Southeast Asia",
- "South Central US",
- "East Asia",
- "Japan West",
- "North Central US",
- "East US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "South India",
- "Norway East",
- "Germany West Central",
- "Uae North",
- "Australia Central"
- ],
- "apiVersions": [
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters/privateEndpoints",
- "locations": [
- "Central US",
- "West Europe",
- "East US 2",
- "North Europe",
- "Japan East",
- "West US",
- "Southeast Asia",
- "South Central US",
- "East Asia",
- "Japan West",
- "North Central US",
- "East US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "South India",
- "Norway East",
- "Germany West Central",
- "Uae North",
- "Australia Central"
- ],
- "apiVersions": [
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West Europe",
- "Central US",
- "East US 2",
- "North Europe",
- "Japan East",
- "West US",
- "Southeast Asia",
- "South Central US",
- "East Asia",
- "Japan West",
- "North Central US",
- "East US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "UK South",
- "West US 2",
- "UK West",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "France Central",
- "South India",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Australia Central"
- ],
- "apiVersions": [
- "2019-06-01",
- "2018-11-01",
- "2017-04-01-preview",
- "2016-03-01",
- "2015-11-01",
- "2015-10-01",
- "2015-09-01",
- "2015-08-01-preview",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/quotas",
- "locations": [],
- "apiVersions": [
- "2019-06-01",
- "2018-11-01",
- "2017-04-01-preview",
- "2016-03-01",
- "2015-11-01",
- "2015-10-01",
- "2015-09-01",
- "2015-08-01-preview",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/testQuery",
- "locations": [],
- "apiVersions": [
- "2017-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [],
- "apiVersions": [
- "2017-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Europe",
- "West US",
- "Central US",
- "East US 2",
- "North Europe",
- "Japan East",
- "Southeast Asia",
- "South Central US",
- "East Asia",
- "Japan West",
- "North Central US",
- "East US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "UK South",
- "Germany West Central",
- "UK West",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "South India",
- "Norway East",
- "Uae North",
- "Australia Central"
- ],
- "apiVersions": [
- "2019-06-01",
- "2018-11-01",
- "2017-04-01-preview",
- "2016-03-01",
- "2015-11-01",
- "2015-10-01",
- "2015-09-01",
- "2015-08-01-preview",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "66f1e791-7bfb-4e18-aed8-1720056421c7"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftStreamanalytics"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "StreamAnalyticsUserMetricsProd",
- "sourceMdmNamespace": "ShoeBox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftStreamanalytics",
- "onbehalfSupportedLogCategories": [
- "Execution",
- "Authoring"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Subscription",
- "namespace": "Microsoft.Subscription",
- "authorizations": [
- {
- "applicationId": "e3335adb-5ca0-40dc-b8d3-bedc094e523b"
- },
- {
- "applicationId": "5da7367f-09c8-493e-8fd4-638089cddec3"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "SubscriptionDefinitions",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2017-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "SubscriptionOperations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2019-10-01-preview",
- "2018-11-01-preview",
- "2018-03-01-preview",
- "2017-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "CreateSubscription",
- "locations": [
- "Central US"
- ],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview",
- "2018-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2017-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "cancel",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-10-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "rename",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-10-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "enable",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-10-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "aliases",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2020-09-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "Central US"
- ],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "acceptChangeTenant",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "changeTenantStatus",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "changeTenantRequest",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "policies",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "acceptOwnership",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "acceptOwnershipStatus",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.support",
- "namespace": "microsoft.support",
- "authorizations": [
- {
- "applicationId": "959678cf-d004-4c22-82a6-d2ce549a58b8",
- "roleDefinitionId": "81a3dd11-5123-4ec3-9485-772b0a27d1bd"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview",
- "2015-07-01-Preview",
- "2015-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/problemclassifications",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "supporttickets",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview",
- "2015-07-01-Preview",
- "2015-03-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operationresults",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationsstatus",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Synapse",
- "namespace": "Microsoft.Synapse",
- "authorizations": [
- {
- "applicationId": "9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b",
- "roleDefinitionId": "a53b114a-452b-4d20-bcd6-c51c3c8c5878",
- "managedByRoleDefinitionId": "ede175bc-31e5-4074-ba98-e62b895797aa"
- },
- {
- "applicationId": "1ac05c7e-12d2-4605-bf9d-549d7041c6b3",
- "roleDefinitionId": "48e77487-c9fa-4abe-8484-71ebdebdbbc2"
- },
- {
- "applicationId": "ec52d13d-2e85-410e-a89a-8c79fb6a32ac",
- "roleDefinitionId": "c3a447c3-a63a-4905-a125-c6856f9d0e17"
- },
- {
- "applicationId": "5ebe1e69-13dd-4953-84fa-a74ed591db2e",
- "roleDefinitionId": "e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f"
- },
- {
- "applicationId": "2e458d69-0892-4655-b713-4f7b182315dd",
- "roleDefinitionId": "45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSynapseShoebox",
- "sourceMdmNamespace": "Microsoft.Synapse"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse",
- "onbehalfSupportedLogCategories": [
- "SynapseRbacOperations",
- "GatewayApiRequests",
- "SQLSecurityAuditEvents",
- "BuiltinSqlReqsEnded",
- "IntegrationPipelineRuns",
- "IntegrationActivityRuns",
- "IntegrationTriggerRuns"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/bigDataPools",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSynapseShoebox",
- "sourceMdmNamespace": "Microsoft.Synapse"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse",
- "onbehalfSupportedLogCategories": [
- "BigDataPoolAppsEnded"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/sqlPools",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2020-04-01-preview",
- "2019-06-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSynapseShoebox",
- "sourceMdmNamespace": "SQLStandardMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse",
- "onbehalfSupportedLogCategories": [
- "SqlRequests",
- "RequestSteps",
- "ExecRequests",
- "DmsWorkers",
- "Waits",
- "SQLSecurityAuditEvents"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/sqlDatabases",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSynapseShoebox",
- "sourceMdmNamespace": "SQLStandardMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/sqlDatabaseAzureAsyncOperation",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/sqlDatabaseOperationResults",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/sqlPoolAzureAsyncOperation",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/sqlPoolOperationResults",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/operationStatuses",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/operationResults",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "kustoOperations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateLinkHubs",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-06-01-preview",
- "operations": "2019-06-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSynapseShoebox",
- "sourceMdmNamespace": "Microsoft.Synapse"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.TestBase",
- "namespace": "Microsoft.TestBase",
- "authorizations": [
- {
- "applicationId": "f3625a3e-6360-4580-968d-fae4cabc75a0",
- "roleDefinitionId": "97af1d96-7c92-442d-8117-11e604996ca4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "East US 2 EUAP",
- "West US"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "skus",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "testBaseAccounts/usages",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/availableOSs",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/testTypes",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/flightingRings",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/packages",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "testBaseAccounts/packages/osUpdates",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/testSummaries",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/packages/favoriteProcesses",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/packages/testResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/packages/testResults/analysisResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/emailEvents",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/customerEvents",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.TimeSeriesInsights",
- "namespace": "Microsoft.TimeSeriesInsights",
- "authorizations": [
- {
- "applicationId": "120d688d-1518-4cf7-bd38-182f158850b6",
- "roleDefinitionId": "5a43abdf-bb87-42c4-9e56-1c24bf364150"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "environments",
- "locations": [
- "Canada Central",
- "France Central",
- "South Central Us",
- "East US 2",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "Central US",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "East Asia",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2020-05-15",
- "2018-08-15-preview",
- "2017-11-15",
- "2017-02-28-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-02-28-preview",
- "operations": "2017-02-28-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftTimeSeriesInsights"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "RDXProdShoebox",
- "sourceMdmNamespace": "Environment"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.TimeSeriesInsights",
- "onbehalfSupportedLogCategories": [
- "Ingress",
- "Management"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "environments/eventsources",
- "locations": [
- "Canada Central",
- "France Central",
- "South Central Us",
- "East US 2",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "Central US",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "East Asia",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2020-05-15",
- "2018-08-15-preview",
- "2017-11-15",
- "2017-02-28-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-02-28-preview",
- "operations": "2017-02-28-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftTimeSeriesInsights"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "RDXProdShoebox",
- "sourceMdmNamespace": "EventSource"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.TimeSeriesInsights",
- "onbehalfSupportedLogCategories": [
- "Ingress",
- "Management"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "environments/referenceDataSets",
- "locations": [
- "Canada Central",
- "France Central",
- "South Central Us",
- "East US 2",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "Central US",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "East Asia",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2020-05-15",
- "2018-08-15-preview",
- "2017-11-15",
- "2017-02-28-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "environments/accessPolicies",
- "locations": [
- "Canada Central",
- "France Central",
- "South Central Us",
- "East US 2",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "Central US",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "East Asia",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2020-05-15",
- "2018-08-15-preview",
- "2017-11-15",
- "2017-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Canada Central",
- "West India",
- "France Central",
- "South Central Us",
- "East US 2",
- "West US",
- "East US",
- "East US 2 EUAP",
- "North Europe",
- "West Europe",
- "West US 2",
- "Central US",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "East Asia",
- "UK West",
- "North Central US",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-31-preview",
- "2020-05-15",
- "2018-08-15-preview",
- "2017-11-15",
- "2017-05-31-privatepreview",
- "2017-02-28-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "120d688d-1518-4cf7-bd38-182f158850b6"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-02-28-preview",
- "operations": "2017-02-28-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftTimeSeriesInsights"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "RDXProdShoebox",
- "sourceMdmNamespace": "Environment"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VirtualMachineImages",
- "namespace": "Microsoft.VirtualMachineImages",
- "authorizations": [
- {
- "applicationId": "cf32a0cc-373c-47c9-9156-0db11f6a6dfc",
- "roleDefinitionId": "0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "imageTemplates",
- "locations": [
- "East US",
- "East US 2",
- "West Central US",
- "West US",
- "West US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-02-14",
- "2019-05-01-preview",
- "2019-02-01-preview",
- "2018-02-01-preview"
- ],
- "defaultApiVersion": "2020-02-14",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "imageTemplates/runOutputs",
- "locations": [
- "East US",
- "East US 2",
- "West Central US",
- "West US",
- "West US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-02-14",
- "2019-05-01-preview",
- "2019-02-01-preview",
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East US",
- "East US 2",
- "West Central US",
- "West US",
- "West US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-02-14",
- "2019-05-01-preview",
- "2019-02-01-preview",
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "East US",
- "East US 2",
- "West Central US",
- "West US",
- "West US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-02-14",
- "2019-05-01-preview",
- "2019-02-01-preview",
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US",
- "East US 2",
- "West Central US",
- "West US",
- "West US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-02-14",
- "2019-05-01-preview",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "cf32a0cc-373c-47c9-9156-0db11f6a6dfc"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VMware",
- "namespace": "Microsoft.VMware",
- "authorizations": [
- {
- "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7",
- "roleDefinitionId": "dd032bd9-65cc-4171-b688-c612566422ae"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2019-12-20-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US",
- "West US",
- "East US 2 EUAP",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview",
- "2019-12-20-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2019-12-20-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "VCenters/InventoryItems",
- "locations": [
- "East US",
- "West US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VMwareCloudSimple",
- "namespace": "Microsoft.VMwareCloudSimple",
- "authorizations": [
- {
- "applicationId": "d96199e7-4674-4bbf-a1c6-ddf93682f5ee",
- "roleDefinitionId": "533012ca-a3e7-44e4-93b4-3143f8b9409d",
- "allowedThirdPartyExtensions": [
- {
- "name": "CloudSimpleExtension"
- }
- ]
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "virtualMachines",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dedicatedCloudNodes",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dedicatedCloudServices",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/availabilities",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateClouds",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateClouds/virtualNetworks",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateClouds/virtualMachineTemplates",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateClouds/resourcePools",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-04-01",
- "operations": "2019-04-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "CloudSimplePrivateCloudIAASShoebox",
- "sourceMdmNamespace": "Microsoft.VMwareCloudSimple"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VSOnline",
- "namespace": "Microsoft.VSOnline",
- "authorizations": [
- {
- "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6",
- "roleDefinitionId": "b879ac78-f1e6-448d-ab4c-5908cd5967c1"
- },
- {
- "applicationId": "48ef7923-268f-473d-bcf1-07f0997961f4",
- "roleDefinitionId": "b879ac78-f1e6-448d-ab4c-5908cd5967c1"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "West Europe",
- "East US",
- "West Us 2",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2019-07-01-preview",
- "2019-07-01-beta",
- "2019-07-01-alpha"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "plans",
- "locations": [
- "West Europe",
- "East US",
- "West Us 2",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-05-26-preview",
- "2020-05-26-beta",
- "2020-05-26-alpha",
- "2019-07-01-preview",
- "2019-07-01-beta",
- "2019-07-01-alpha"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-05-26-privatepreview",
- "2020-05-26-preview",
- "2020-05-26-beta",
- "2020-05-26-alpha",
- "2019-07-01-privatepreview",
- "2019-07-01-preview",
- "2019-07-01-beta",
- "2019-07-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-05-26-privatepreview",
- "2020-05-26-preview",
- "2020-05-26-beta",
- "2020-05-26-alpha",
- "2019-07-01-privatepreview",
- "2019-07-01-preview",
- "2019-07-01-beta",
- "2019-07-01-alpha"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WindowsESU",
- "namespace": "Microsoft.WindowsESU",
- "authorizations": [
- {
- "applicationId": "e6c69915-bcc7-4335-b655-c62f949d691b",
- "roleDefinitionId": "9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2019-09-16-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2019-09-16-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-10-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WorkloadBuilder",
- "namespace": "Microsoft.WorkloadBuilder",
- "authorizations": [
- {
- "applicationId": "63c2c773-89fe-4164-a02f-b8c7fc1772ae",
- "roleDefinitionId": "322358fa-ea51-4f6c-b9d6-3be64015f074"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2020-07-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "West Central US",
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2020-07-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2020-07-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WorkloadMonitor",
- "namespace": "Microsoft.WorkloadMonitor",
- "authorizations": [
- {
- "applicationId": "ddc728e9-153d-4032-ab80-80e57af7a56f",
- "roleDefinitionId": "553f60de-cc15-412f-9fdf-8f5152e7e0f5",
- "managedByRoleDefinitionId": "553f60de-cc15-412f-9fdf-8f5152e7e0f5"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-01-13-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "monitors",
- "locations": [],
- "apiVersions": [
- "2020-01-13-preview"
- ],
- "capabilities": "SupportsExtension"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Paraleap.CloudMonix",
- "namespace": "Paraleap.CloudMonix",
- "resourceTypes": [
- {
- "resourceType": "services",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2016-08-10"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-08-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-10"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Pokitdok.Platform",
- "namespace": "Pokitdok.Platform",
- "resourceTypes": [
- {
- "resourceType": "services",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2016-05-17"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-05-17"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-05-17"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-05-17"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/RavenHq.Db",
- "namespace": "RavenHq.Db",
- "resourceTypes": [
- {
- "resourceType": "databases",
- "locations": [
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2016-07-18"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-07-18"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-07-18"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-07-18"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Raygun.CrashReporting",
- "namespace": "Raygun.CrashReporting",
- "resourceTypes": [
- {
- "resourceType": "apps",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2015-01-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2015-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2015-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Sendgrid.Email",
- "namespace": "Sendgrid.Email",
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2015-01-01"
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 612 792\u0027 enable-background=\u0027new 0 0 612 792\u0027 xml:space=\u0027preserve\u0027\u003E \u003Cg\u003E \u003Cg\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M399,118c61,0,122,0,183-0.1c3.4,0,4.1,0.7,4.1,4.1c-0.1,60.7-0.1,121.3-0.1,182 c-58.9,0-117.8,0-176.8-0.1c-3.1,0-6.2,1.5-9.2,0.1c-0.3-0.3-0.6-0.7-1-1C399,241.3,399,179.7,399,118z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M28,304c61.9,0,123.9,0,185.8,0l0.4-0.1c-0.1,2.2-0.2,4.3-0.2,6.5c0,59.9,0,119.8,0,179.6l0.1-0.1 c-62,0-124,0-186,0C28,428,28,366,28,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M28,490c62,0,124,0,186,0c0,62,0,124,0,186c-60.7,0-121.3,0-182,0.1c-3.4,0-4.1-0.7-4.1-4.1 C28,611.3,28,550.7,28,490z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M214,676c0-62,0-124,0-186c0,0-0.1,0.1-0.1,0.1c59.9,0,119.8,0,179.6,0c2.2,0,4.3-0.2,6.5-0.2l-0.1,0.4 c0,61.9,0,123.9,0,185.8C338,676,276,676,214,676z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M586,490c-60,0-120,0-180,0c-2,0-4,0.1-6,0.2c0,0,0.1-0.4,0.1-0.4c0-61.9,0-123.8-0.1-185.8 c3.1,1.5,6.2-0.1,9.2-0.1C468.2,304,527.1,304,586,304C586,366,586,428,586,490z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M213.8,304c0.1-5.1,0.2-10.3,0.2-15.4c0-56.9,0-113.7,0-170.6c61.7,0,123.3,0,185,0c0,61.7,0,123.3,0,185 c-1.1,1.4-2.7,1-4.2,1c-60.2,0-120.4,0-180.6,0L213.8,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M214.3,303.9c60.2,0,120.4,0,180.6,0c1.4,0,3,0.4,4.2-1c0.3,0.3,0.6,0.7,1,1c0,61.9,0,123.8,0.1,185.8 c-2.2,0.1-4.3,0.2-6.5,0.2c-59.9,0-119.8,0-179.6,0c0-59.9,0-119.8,0-179.6C214,308.2,214.2,306.1,214.3,303.9z\u0027/\u003E \u003C/g\u003E \u003C/g\u003E \u003C/svg\u003E"
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2015-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 612 792\u0027 enable-background=\u0027new 0 0 612 792\u0027 xml:space=\u0027preserve\u0027\u003E \u003Cg\u003E \u003Cg\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M399,118c61,0,122,0,183-0.1c3.4,0,4.1,0.7,4.1,4.1c-0.1,60.7-0.1,121.3-0.1,182 c-58.9,0-117.8,0-176.8-0.1c-3.1,0-6.2,1.5-9.2,0.1c-0.3-0.3-0.6-0.7-1-1C399,241.3,399,179.7,399,118z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M28,304c61.9,0,123.9,0,185.8,0l0.4-0.1c-0.1,2.2-0.2,4.3-0.2,6.5c0,59.9,0,119.8,0,179.6l0.1-0.1 c-62,0-124,0-186,0C28,428,28,366,28,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M28,490c62,0,124,0,186,0c0,62,0,124,0,186c-60.7,0-121.3,0-182,0.1c-3.4,0-4.1-0.7-4.1-4.1 C28,611.3,28,550.7,28,490z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M214,676c0-62,0-124,0-186c0,0-0.1,0.1-0.1,0.1c59.9,0,119.8,0,179.6,0c2.2,0,4.3-0.2,6.5-0.2l-0.1,0.4 c0,61.9,0,123.9,0,185.8C338,676,276,676,214,676z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M586,490c-60,0-120,0-180,0c-2,0-4,0.1-6,0.2c0,0,0.1-0.4,0.1-0.4c0-61.9,0-123.8-0.1-185.8 c3.1,1.5,6.2-0.1,9.2-0.1C468.2,304,527.1,304,586,304C586,366,586,428,586,490z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M213.8,304c0.1-5.1,0.2-10.3,0.2-15.4c0-56.9,0-113.7,0-170.6c61.7,0,123.3,0,185,0c0,61.7,0,123.3,0,185 c-1.1,1.4-2.7,1-4.2,1c-60.2,0-120.4,0-180.6,0L213.8,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M214.3,303.9c60.2,0,120.4,0,180.6,0c1.4,0,3,0.4,4.2-1c0.3,0.3,0.6,0.7,1,1c0,61.9,0,123.8,0.1,185.8 c-2.2,0.1-4.3,0.2-6.5,0.2c-59.9,0-119.8,0-179.6,0c0-59.9,0-119.8,0-179.6C214,308.2,214.2,306.1,214.3,303.9z\u0027/\u003E \u003C/g\u003E \u003C/g\u003E \u003C/svg\u003E"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Wandisco.Fusion",
- "namespace": "Wandisco.Fusion",
- "authorizations": [
- {
- "applicationId": "37b36496-3f4f-443a-a406-5e0a0535f6a3",
- "roleDefinitionId": "b10cdc1f-fd21-4fe9-bae7-7e2e25a91a21"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "fusionGroups",
- "locations": [
- "East US",
- "East Asia",
- "North Europe",
- "Southeast Asia",
- "West Europe",
- "West Central US",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "fusionGroups/azureZones",
- "locations": [
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "fusionGroups/azureZones/plugins",
- "locations": [
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "fusionGroups/replicationRules",
- "locations": [
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Locations",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/operationStatuses",
- "locations": [
- "Canada Central",
- "East Asia",
- "East US",
- "East US 2 EUAP",
- "Korea Central",
- "North Europe",
- "Southeast Asia",
- "West Europe",
- "West Central US",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "fusionGroups/replicationRules/migrations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "fusionGroups/hiveReplicationRules",
- "locations": [
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "fusionGroups/managedOnPremZones",
- "locations": [
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "migrators",
- "locations": [
- "Canada Central",
- "East US",
- "Korea Central",
- "East Asia",
- "North Europe",
- "Southeast Asia",
- "West Europe",
- "West Central US",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/targets",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/liveDataMigrations",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/exclusionTemplates",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/metadataMigrations",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/metadataTargets",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/pathMappings",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
+ "namespace": "Microsoft.Resources",
+ "resourceTypes": [
+ {
+ "resourceType": "tenants",
+ "locations": [],
+ "apiVersions": [
+ "2020-01-01",
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "locations",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "operationresults",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "notifyResourceJobs",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "tags",
+ "locations": [],
+ "apiVersions": [
+ "2019-10-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01"
+ ],
+ "capabilities": "SupportsExtension"
+ },
+ {
+ "resourceType": "checkPolicyCompliance",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "checkZonePeers",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "providers",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "checkresourcename",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "calculateTemplateHash",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "resources",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions",
+ "locations": [],
+ "apiVersions": [
+ "2019-10-01",
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/resources",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/providers",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/operationresults",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "resourceGroups",
+ "locations": [
+ "Central US",
+ "East Asia",
+ "Southeast Asia",
+ "East US",
+ "East US 2",
+ "West US",
+ "West US 2",
+ "North Central US",
+ "South Central US",
+ "West Central US",
+ "North Europe",
+ "West Europe",
+ "Japan East",
+ "Japan West",
+ "Brazil South",
+ "Australia Southeast",
+ "Australia East",
+ "West India",
+ "South India",
+ "Central India",
+ "Canada Central",
+ "Canada East",
+ "UK South",
+ "UK West",
+ "Korea Central",
+ "Korea South",
+ "France Central",
+ "South Africa North",
+ "UAE North",
+ "Australia Central",
+ "Switzerland North",
+ "Germany West Central",
+ "Norway East",
+ "East US SLV",
+ "Jio India West",
+ "West US 3",
+ "France South",
+ "Australia Central 2",
+ "UAE Central",
+ "South Africa West",
+ "Switzerland West",
+ "Germany North",
+ "Norway West",
+ "Brazil Southeast",
+ "Jio India Central",
+ "Sweden Central",
+ "Sweden South",
+ "East US STG",
+ "South Central US STG",
+ "East US 2 EUAP",
+ "Central US EUAP"
+ ],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "SupportsLocation"
+ },
+ {
+ "resourceType": "subscriptions/resourceGroups",
+ "locations": [
+ "Central US",
+ "East Asia",
+ "Southeast Asia",
+ "East US",
+ "East US 2",
+ "West US",
+ "West US 2",
+ "North Central US",
+ "South Central US",
+ "West Central US",
+ "North Europe",
+ "West Europe",
+ "Japan East",
+ "Japan West",
+ "Brazil South",
+ "Australia Southeast",
+ "Australia East",
+ "West India",
+ "South India",
+ "Central India",
+ "Canada Central",
+ "Canada East",
+ "UK South",
+ "UK West",
+ "Korea Central",
+ "Korea South",
+ "France Central",
+ "South Africa North",
+ "UAE North",
+ "Australia Central",
+ "Switzerland North",
+ "Germany West Central",
+ "Norway East",
+ "East US SLV",
+ "Jio India West",
+ "West US 3",
+ "France South",
+ "Australia Central 2",
+ "UAE Central",
+ "South Africa West",
+ "Switzerland West",
+ "Germany North",
+ "Norway West",
+ "Brazil Southeast",
+ "Jio India Central",
+ "Sweden Central",
+ "Sweden South",
+ "East US STG",
+ "South Central US STG",
+ "East US 2 EUAP",
+ "Central US EUAP"
+ ],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ },
+ {
+ "resourceType": "subscriptions/resourcegroups/resources",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/locations",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/tagnames",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/tagNames/tagValues",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "deployments",
+ "locations": [],
+ "apiVersions": [
+ "2021-01-01",
+ "2020-10-01",
+ "2020-06-01",
+ "2019-09-01",
+ "2019-08-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "deployments/operations",
+ "locations": [],
+ "apiVersions": [
+ "2021-01-01",
+ "2020-10-01",
+ "2020-06-01",
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "links",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "SupportsExtension"
+ },
+ {
+ "resourceType": "operations",
+ "locations": [],
+ "apiVersions": [
+ "2015-01-01"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2015-01-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "bulkDelete",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "deploymentScripts",
+ "locations": [
+ "East Asia",
+ "Southeast Asia",
+ "Australia East",
+ "Brazil South",
+ "Canada Central",
+ "Canada East",
+ "Switzerland North",
+ "Central US EUAP",
+ "Germany West Central",
+ "East US 2",
+ "East US",
+ "Central US",
+ "North Central US",
+ "East US 2 EUAP",
+ "France Central",
+ "UK South",
+ "Central India",
+ "South India",
+ "Japan East",
+ "Korea Central",
+ "North Europe",
+ "Norway East",
+ "UAE North",
+ "West Central US",
+ "West Europe",
+ "West US 2",
+ "West US",
+ "South Central US"
+ ],
+ "apiVersions": [
+ "2020-10-01",
+ "2019-10-01-preview"
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ },
+ {
+ "resourceType": "deploymentScripts/logs",
+ "locations": [
+ "East Asia",
+ "Southeast Asia",
+ "Australia East",
+ "Brazil South",
+ "Canada Central",
+ "Canada East",
+ "Switzerland North",
+ "Central US EUAP",
+ "Germany West Central",
+ "East US 2",
+ "East US",
+ "Central US",
+ "North Central US",
+ "East US 2 EUAP",
+ "France Central",
+ "UK South",
+ "Central India",
+ "South India",
+ "Japan East",
+ "Korea Central",
+ "North Europe",
+ "Norway East",
+ "UAE North",
+ "West Central US",
+ "West Europe",
+ "West US 2",
+ "West US",
+ "South Central US"
+ ],
+ "apiVersions": [
+ "2020-10-01",
+ "2019-10-01-preview"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "locations/deploymentScriptOperationResults",
+ "locations": [
+ "East Asia",
+ "Southeast Asia",
+ "Australia East",
+ "Brazil South",
+ "Canada Central",
+ "Canada East",
+ "Switzerland North",
+ "Central US EUAP",
+ "Germany West Central",
+ "East US 2",
+ "East US",
+ "Central US",
+ "North Central US",
+ "East US 2 EUAP",
+ "France Central",
+ "UK South",
+ "Central India",
+ "South India",
+ "Japan East",
+ "Korea Central",
+ "North Europe",
+ "Norway East",
+ "UAE North",
+ "West Central US",
+ "West Europe",
+ "West US 2",
+ "West US",
+ "South Central US"
+ ],
+ "apiVersions": [
+ "2020-10-01",
+ "2019-10-01-preview"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "templateSpecs",
+ "locations": [
+ "East Asia",
+ "Southeast Asia",
+ "Australia East",
+ "Australia Central",
+ "Australia Central 2",
+ "Australia Southeast",
+ "Brazil South",
+ "Canada Central",
+ "Canada East",
+ "Switzerland North",
+ "Switzerland West",
+ "Central US EUAP",
+ "Germany North",
+ "Germany West Central",
+ "East US 2",
+ "East US",
+ "Central US",
+ "North Central US",
+ "East US 2 EUAP",
+ "France Central",
+ "France South",
+ "UK South",
+ "UK West",
+ "Central India",
+ "West India",
+ "South India",
+ "Japan East",
+ "Japan West",
+ "Korea Central",
+ "Korea South",
+ "North Europe",
+ "Norway East",
+ "Norway West",
+ "UAE Central",
+ "UAE North",
+ "West Central US",
+ "West Europe",
+ "West US 2",
+ "West US",
+ "South Central US",
+ "South Africa North",
+ "South Africa West"
+ ],
+ "apiVersions": [
+ "2021-05-01",
+ "2021-03-01-preview",
+ "2019-06-01-preview"
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ },
+ {
+ "resourceType": "templateSpecs/versions",
+ "locations": [
+ "East Asia",
+ "Southeast Asia",
+ "Australia East",
+ "Australia Central",
+ "Australia Central 2",
+ "Australia Southeast",
+ "Brazil South",
+ "Canada Central",
+ "Canada East",
+ "Switzerland North",
+ "Switzerland West",
+ "Central US EUAP",
+ "Germany North",
+ "Germany West Central",
+ "East US 2",
+ "East US",
+ "Central US",
+ "North Central US",
+ "East US 2 EUAP",
+ "France Central",
+ "France South",
+ "UK South",
+ "UK West",
+ "Central India",
+ "West India",
+ "South India",
+ "Japan East",
+ "Japan West",
+ "Korea Central",
+ "Korea South",
+ "North Europe",
+ "Norway East",
+ "Norway West",
+ "UAE Central",
+ "UAE North",
+ "West Central US",
+ "West Europe",
+ "West US 2",
+ "West US",
+ "South Central US",
+ "South Africa North",
+ "South Africa West"
+ ],
+ "apiVersions": [
+ "2021-05-01",
+ "2021-03-01-preview",
+ "2019-06-01-preview"
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
}
]
}
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json
index 73f251cf0dbef..37e77c579f0aa 100644
--- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json
@@ -6,7 +6,8 @@
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "traceparent": "00-2c0f99141d38e549ba4e00f210befa69-f1f88745b7192440-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
"x-ms-client-request-id": "8ea69f816f2f18ccce65ca21918d7337",
"x-ms-return-client-request-id": "true"
},
@@ -16,15 +17,15 @@
"Cache-Control": "no-cache",
"Content-Length": "450",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 16 Jun 2021 00:01:04 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:32 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "dcaf23c1-9c1d-4d12-a620-a87e134ba9c5",
- "x-ms-ratelimit-remaining-subscription-reads": "11926",
- "x-ms-request-id": "dcaf23c1-9c1d-4d12-a620-a87e134ba9c5",
- "x-ms-routing-request-id": "WESTUS2:20210616T000104Z:dcaf23c1-9c1d-4d12-a620-a87e134ba9c5"
+ "x-ms-correlation-request-id": "d4e84ba4-f772-4151-a14b-19db64766e7a",
+ "x-ms-ratelimit-remaining-subscription-reads": "11996",
+ "x-ms-request-id": "d4e84ba4-f772-4151-a14b-19db64766e7a",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:d4e84ba4-f772-4151-a14b-19db64766e7a"
},
"ResponseBody": {
"id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c",
@@ -53,8 +54,8 @@
"Authorization": "Sanitized",
"Content-Length": "34",
"Content-Type": "application/json",
- "traceparent": "00-a1b4f017c15f2845826a56e355683f29-03cf9af89b1bc04c-00",
- "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "traceparent": "00-7c1fb2be7628e942af4c63622c4adeb0-de9bfd012ab6cf4e-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
"x-ms-client-request-id": "22bcabeba86cfa7cc2b3b13c9ce6eda2",
"x-ms-return-client-request-id": "true"
},
@@ -67,15 +68,15 @@
"Cache-Control": "no-cache",
"Content-Length": "228",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 16 Jun 2021 00:01:05 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "0aae8317-f1fd-4567-8745-46f922adf235",
- "x-ms-ratelimit-remaining-subscription-writes": "1195",
- "x-ms-request-id": "0aae8317-f1fd-4567-8745-46f922adf235",
- "x-ms-routing-request-id": "WESTUS2:20210616T000105Z:0aae8317-f1fd-4567-8745-46f922adf235"
+ "x-ms-correlation-request-id": "b4db2854-c982-4104-933b-d0a1169d7582",
+ "x-ms-ratelimit-remaining-subscription-writes": "1199",
+ "x-ms-request-id": "b4db2854-c982-4104-933b-d0a1169d7582",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:b4db2854-c982-4104-933b-d0a1169d7582"
},
"ResponseBody": {
"id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3699",
@@ -89,13 +90,13 @@
}
},
{
- "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers?$expand=metadata\u0026api-version=2019-10-01",
+ "RequestUri": "https://management.azure.com/providers/Microsoft.Resources?api-version=2019-10-01",
"RequestMethod": "GET",
"RequestHeaders": {
"Accept": "application/json",
"Authorization": "Sanitized",
- "traceparent": "00-0642cf8ace4c00488b3900624af7ec29-9825d36e09a5734c-00",
- "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "traceparent": "00-5ace9981a728b543ba4e294a59149569-54dea025ae356644-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210708.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
"x-ms-client-request-id": "528e1efe62ef073f41b442f10cdf8fa8",
"x-ms-return-client-request-id": "true"
},
@@ -103,86785 +104,1258 @@
"StatusCode": 200,
"ResponseHeaders": {
"Cache-Control": "no-cache",
- "Content-Length": "1339892",
+ "Content-Length": "17442",
"Content-Type": "application/json; charset=utf-8",
- "Date": "Wed, 16 Jun 2021 00:01:07 GMT",
+ "Date": "Fri, 09 Jul 2021 00:03:33 GMT",
"Expires": "-1",
"Pragma": "no-cache",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
- "x-ms-correlation-request-id": "e5d8d195-12bb-4555-aeeb-25f906524c01",
- "x-ms-ratelimit-remaining-subscription-reads": "11925",
- "x-ms-request-id": "e5d8d195-12bb-4555-aeeb-25f906524c01",
- "x-ms-routing-request-id": "WESTUS2:20210616T000108Z:e5d8d195-12bb-4555-aeeb-25f906524c01"
+ "x-ms-correlation-request-id": "985a8229-eb4c-471e-b006-5b2995dcb412",
+ "x-ms-ratelimit-remaining-tenant-reads": "11999",
+ "x-ms-request-id": "985a8229-eb4c-471e-b006-5b2995dcb412",
+ "x-ms-routing-request-id": "WESTUS2:20210709T000333Z:985a8229-eb4c-471e-b006-5b2995dcb412"
},
"ResponseBody": {
- "value": [
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.insights",
- "namespace": "microsoft.insights",
- "authorizations": [
- {
- "applicationId": "6bccf540-eb86-4037-af03-7fa058c2db75",
- "roleDefinitionId": "89dcede2-9219-403a-9723-d3c6473f9472"
- },
- {
- "applicationId": "11c174dc-1945-4a9a-a36b-c79a0f246b9b",
- "roleDefinitionId": "dd9d4347-f397-45f2-b538-85f21c90037b"
- },
- {
- "applicationId": "035f9e1d-4f00-4419-bf50-bf2d87eb4878",
- "roleDefinitionId": "323795fe-ba3d-4f5a-ad42-afb4e1ea9485"
- },
- {
- "applicationId": "f5c26e74-f226-4ae8-85f0-b4af0080ac9e",
- "roleDefinitionId": "529d7ae6-e892-4d43-809d-8547aeb90643"
- },
- {
- "applicationId": "b503eb83-1222-4dcc-b116-b98ed5216e05",
- "roleDefinitionId": "68699c37-c689-44d4-9248-494b782d46ae"
- },
- {
- "applicationId": "ca7f3f0b-7d91-482c-8e09-c5d840d0eac5",
- "roleDefinitionId": "5d5a2e56-9835-44aa-93db-d2f19e155438"
- },
- {
- "applicationId": "3af5a1e8-2459-45cb-8683-bcd6cccbcc13",
- "roleDefinitionId": "b1309299-720d-4159-9897-6158a61aee41"
- },
- {
- "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da",
- "roleDefinitionId": "d2eda64b-c5e6-4930-8642-2d80ecd7c2e2"
- },
- {
- "applicationId": "707be275-6b9d-4ee7-88f9-c0c2bd646e0f",
- "roleDefinitionId": "fa027d90-6ba0-4c33-9a54-59edaf2327e7"
- },
- {
- "applicationId": "461e8683-5575-4561-ac7f-899cc907d62a",
- "roleDefinitionId": "68699c37-c689-44d4-9248-494b782d46ae"
- },
- {
- "applicationId": "562db366-1b96-45d2-aa4a-f2148cef2240",
- "roleDefinitionId": "4109c8be-c1c8-4be0-af52-9d3c76c140ab"
- },
- {
- "applicationId": "e933bd07-d2ee-4f1d-933c-3752b819567b",
- "roleDefinitionId": "abbcfd44-e662-419a-9b5a-478f8e2f57c9"
- },
- {
- "applicationId": "f6b60513-f290-450e-a2f3-9930de61c5e7",
- "roleDefinitionId": "4ef11659-08ac-48af-98a7-25fb6b1e1bc4"
- },
- {
- "applicationId": "12743ff8-d3de-49d0-a4ce-6c91a4245ea0",
- "roleDefinitionId": "207b20a7-6802-4ae4-aaa2-1a36dd45bba0"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "components",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Canada Central",
- "Central India",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast",
- "Australia Central 2",
- "Germany West Central",
- "Switzerland West",
- "UAE Central",
- "UK West",
- "Japan West",
- "Brazil Southeast",
- "UAE North",
- "Australia Central",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-02-02-preview",
- "2020-02-02",
- "2018-05-01-preview",
- "2015-05-01",
- "2014-12-01-preview",
- "2014-08-01",
- "2014-04-01"
- ],
- "metadata": {
- "portal": {
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/ApplicationInsights.svg",
- "kinds": [
- {
- "kind": "web",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Web.svg",
- "blade": {
- "name": "AspNetOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "phone",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Phone.svg",
- "blade": {
- "name": "DeviceOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "store",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Store.svg",
- "blade": {
- "name": "DeviceOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "java",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Java.svg",
- "blade": {
- "name": "JavaWebOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "other",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/ApplicationInsights.svg",
- "blade": {
- "name": "OtherOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "android",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Android.svg",
- "blade": {
- "name": "DeviceOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "ios",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Ios.svg",
- "blade": {
- "name": "DeviceOverview",
- "extension": "AppInsightsExtension"
- }
- },
- {
- "kind": "devices",
- "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Phone.svg",
- "blade": {
- "name": "DeviceOverview",
- "extension": "AppInsightsExtension"
- }
- }
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.AppId",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ApplicationInsights_PROD_",
- "sourceMdmNamespace": "ApplicationInsights"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "ApplicationInsights",
- "onbehalfSupportedLogCategories": [
- "AppAvailabilityResults",
- "AppBrowserTimings",
- "AppDependencies",
- "AppEvents",
- "AppExceptions",
- "AppMetrics",
- "AppPageViews",
- "AppPerformanceCounters",
- "AppRequests",
- "AppSystemEvents",
- "AppTraces"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "components/query",
- "locations": [],
- "apiVersions": [
- "2018-04-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "components/metadata",
- "locations": [],
- "apiVersions": [
- "2018-04-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "components/metrics",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "East US 2",
- "East Asia",
- "West US",
- "Central US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Australia Southeast",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2018-04-20",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "components/events",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "East US 2",
- "East Asia",
- "West US",
- "Central US",
- "South Africa North",
- "North Central US"
- ],
- "apiVersions": [
- "2018-04-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "webtests",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast",
- "Australia Central 2",
- "Germany West Central",
- "Switzerland West",
- "UAE Central",
- "UK West",
- "Brazil Southeast",
- "Japan West",
- "UAE North",
- "Australia Central",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2018-05-01-preview",
- "2015-05-01",
- "2014-08-01",
- "2014-04-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "webtests/getTestResultFile",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "East US 2",
- "East Asia",
- "West US",
- "Central US",
- "South Africa North",
- "North Central US"
- ],
- "apiVersions": [
- "2020-02-10-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "scheduledqueryrules",
- "locations": [
- "Global",
- "West Central US",
- "Australia East",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Japan East",
- "North Europe",
- "South Africa North",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US 2",
- "Central India",
- "Canada Central",
- "Australia Southeast",
- "South Central US",
- "Australia Central",
- "Korea Central",
- "East Asia",
- "West US",
- "North Central US",
- "Brazil South",
- "UK West",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Germany West Central",
- "Australia Central 2",
- "Brazil SouthEast",
- "Norway East",
- "UAE North",
- "Japan West",
- "South India",
- "France South",
- "Norway West"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-05-01-preview",
- "2018-04-16",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-04-16",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "components/pricingPlans",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "migrateToNewPricingModel",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "rollbackToLegacyPricingModel",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listMigrationdate",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "logprofiles",
- "locations": [],
- "apiVersions": [
- "2016-03-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "migratealertrules",
- "locations": [],
- "apiVersions": [
- "2018-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "metricalerts",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2018-03-01",
- "2017-09-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "alertrules",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2016-03-01",
- "2015-04-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "autoscalesettings",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "Australia East",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2015-04-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2015-04-01",
- "operations": "2015-04-01"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Autoscale",
- "onbehalfSupportedLogCategories": [
- "AutoscaleEvaluations",
- "AutoscaleScaleActions"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "eventtypes",
- "locations": [],
- "apiVersions": [
- "2017-03-01-preview",
- "2016-09-01-preview",
- "2015-04-01",
- "2014-11-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2015-04-01",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [],
- "apiVersions": [
- "2015-04-01",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "vmInsightsOnboardingStatuses",
- "locations": [],
- "apiVersions": [
- "2018-11-27-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-04-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "diagnosticSettings",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01-preview",
- "2017-05-01-preview",
- "2016-09-01",
- "2015-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-09-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "diagnosticSettingsCategories",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01-preview",
- "2017-05-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "extendedDiagnosticSettings",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2017-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-02-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "metricDefinitions",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Canada East",
- "Canada Central",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "North Europe",
- "West US 2",
- "Jio India West",
- "West US 3",
- "West Central US",
- "Korea South",
- "Korea Central",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2018-01-01",
- "2017-12-01-preview",
- "2017-09-01-preview",
- "2017-05-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-01-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "logDefinitions",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West Central US",
- "West US 2",
- "Korea South",
- "Korea Central",
- "Australia Central",
- "Australia Central 2",
- "France Central"
- ],
- "apiVersions": [
- "2015-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-07-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "eventCategories",
- "locations": [],
- "apiVersions": [
- "2015-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "metrics",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Canada East",
- "Canada Central",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "North Europe",
- "West US 2",
- "Jio India West",
- "West US 3",
- "West Central US",
- "Korea South",
- "Korea Central",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2019-07-01",
- "2018-01-01",
- "2017-12-01-preview",
- "2017-09-01-preview",
- "2017-05-01-preview",
- "2016-09-01",
- "2016-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-01-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "metricbatch",
- "locations": [],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "metricNamespaces",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Canada East",
- "Canada Central",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "North Europe",
- "West US 2",
- "Jio India West",
- "West US 3",
- "West Central US",
- "Korea South",
- "Korea Central",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2017-12-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "actiongroups",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-06-01",
- "2019-03-01",
- "2018-09-01",
- "2018-03-01",
- "2017-04-01",
- "2017-03-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "activityLogAlerts",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2017-04-01",
- "2017-03-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "baseline",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Canada East",
- "Canada Central",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "North Europe",
- "Norway East",
- "Germany West Central",
- "Switzerland North",
- "West US 2",
- "West Central US",
- "Korea South",
- "Korea Central",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01",
- "2017-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "metricbaselines",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Canada East",
- "Canada Central",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "North Europe",
- "Norway East",
- "Germany West Central",
- "Switzerland North",
- "West US 2",
- "West Central US",
- "Korea South",
- "Korea Central",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2019-03-01",
- "2018-09-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "calculatebaseline",
- "locations": [],
- "apiVersions": [
- "2018-09-01",
- "2017-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "workbooks",
- "locations": [
- "West Europe",
- "South Central US",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West US 2",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "Canada Central",
- "Central India",
- "UK South",
- "UK West",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast",
- "Australia Central 2",
- "Germany West Central",
- "Switzerland West",
- "UAE Central",
- "Japan West",
- "Brazil Southeast",
- "UAE North",
- "Australia Central",
- "France South",
- "South India",
- "West Central US",
- "West US 3",
- "Korea South"
- ],
- "apiVersions": [
- "2021-03-08",
- "2020-10-20",
- "2020-02-12",
- "2018-06-17-preview",
- "2018-06-01-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da"
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workbooktemplates",
- "locations": [
- "West Europe",
- "South Central US",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West US 2",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "Canada Central",
- "Central India",
- "UK South",
- "UK West",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast",
- "Australia Central 2",
- "Germany West Central",
- "Switzerland West",
- "UAE Central",
- "Japan West",
- "Brazil Southeast",
- "UAE North",
- "Australia Central",
- "France South",
- "South India",
- "West Central US",
- "West US 3",
- "Korea South"
- ],
- "apiVersions": [
- "2020-11-20",
- "2019-10-17-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "myWorkbooks",
- "locations": [
- "West Europe",
- "South Central US",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Canada Central",
- "Central India",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2021-03-08",
- "2020-10-20",
- "2020-02-12",
- "2018-06-17-preview",
- "2018-06-15-preview",
- "2018-06-01-preview",
- "2016-06-15-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da"
- }
- },
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "logs",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "Australia Central",
- "South Africa North"
- ],
- "apiVersions": [
- "2018-08-01-preview",
- "2018-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "transactions",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "East US 2",
- "East Asia",
- "West US",
- "Central US",
- "South Africa North",
- "North Central US"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "topology",
- "locations": [
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Central India",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "East US 2",
- "East Asia",
- "West US",
- "Central US",
- "South Africa North",
- "North Central US"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "generateLiveToken",
- "locations": [],
- "apiVersions": [
- "2020-06-02-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "dataCollectionRules",
- "locations": [
- "Australia Southeast",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Central India",
- "Germany West Central",
- "North Central US",
- "South Central US",
- "East US",
- "Central US",
- "West Europe",
- "West US 2",
- "Southeast Asia",
- "East US 2",
- "UK South",
- "North Europe",
- "West US",
- "Australia Central",
- "West Central US",
- "East Asia",
- "UK West",
- "Korea Central",
- "France Central",
- "South Africa North",
- "Switzerland North",
- "Australia Central 2",
- "Brazil Southeast",
- "France South",
- "Norway West",
- "UAE North",
- "Japan West",
- "Norway East",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2019-11-01-preview"
- ],
- "defaultApiVersion": "2019-11-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dataCollectionRuleAssociations",
- "locations": [
- "Australia Southeast",
- "Canada Central",
- "Japan East",
- "Australia East",
- "Central India",
- "Germany West Central",
- "North Central US",
- "South Central US",
- "East US",
- "Central US",
- "West Europe",
- "West US 2",
- "Southeast Asia",
- "East US 2",
- "UK South",
- "North Europe",
- "West US",
- "Australia Central",
- "West Central US",
- "East Asia",
- "UK West",
- "Korea Central",
- "France Central",
- "South Africa North",
- "Switzerland North",
- "Brazil South",
- "Australia Central 2",
- "Brazil Southeast",
- "Canada East",
- "France South",
- "Korea South",
- "Norway West",
- "UAE North",
- "Japan West",
- "Norway East",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2019-11-01-preview"
- ],
- "defaultApiVersion": "2019-11-01-preview",
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "privateLinkScopes",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateLinkScopes/privateEndpointConnections",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateLinkScopes/privateEndpointConnectionProxies",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateLinkScopes/scopedResources",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "components/linkedstorageaccounts",
- "locations": [
- "East US",
- "West Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Canada Central",
- "Central India",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Norway West",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateLinkScopeOperationStatuses",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2019-10-17-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "monitoringServiceProperties": {
- "mdsAccount": "MdsGeneric",
- "mdsEnvironment": null
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2015-07-01",
- "components": "2015-05-01",
- "autoscalesettings": "2015-04-01",
- "operations": "2015-04-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzMonitoringAutoscale",
- "sourceMdmNamespace": "AzureMonitoring/Autoscale"
- }
- ]
- }
- },
- "notifications": {
- "sources": [
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmsas1",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- },
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmsas2",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- },
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmsus1",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- },
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmsus2",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- },
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmseu1",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- },
- {
- "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae",
- "storageAccountName": "evtrpnmseu2",
- "queueNames": [
- "nms-0",
- "nms-1"
- ],
- "blobContainerName": "nms"
- }
- ]
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": ""
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ContainerRegistry",
- "namespace": "Microsoft.ContainerRegistry",
- "authorizations": [
- {
- "applicationId": "6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26",
- "roleDefinitionId": "78e18383-93eb-418a-9887-bc9271046576"
- },
- {
- "applicationId": "737d58c1-397a-46e7-9d12-7d8c830883c2",
- "roleDefinitionId": "716bb53a-0390-4428-bf41-b1bedde7d751"
- },
- {
- "applicationId": "918d0db8-4a38-4938-93c1-9313bdfe0272",
- "roleDefinitionId": "dcd2d2c9-3f80-4d72-95a8-2593111b4b12"
- },
- {
- "applicationId": "d2fa1650-4805-4a83-bcb9-cf41fe63539c",
- "roleDefinitionId": "c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"
- },
- {
- "applicationId": "a4c95b9e-3994-40cc-8953-5dc66d48348d",
- "roleDefinitionId": "dc88c655-90fa-48d9-8d51-003cc8738508"
- },
- {
- "applicationId": "62c559cd-db0c-4da0-bab2-972528c65d42",
- "roleDefinitionId": "437b639a-6d74-491d-959f-d172e8c5c1fc"
- },
- {
- "applicationId": "a3747411-ce7c-4888-9ddc-3a230786ca19",
- "roleDefinitionId": "b29ead14-d6d9-4957-bdf1-494b07fe2e87"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "registries",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-03-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/connectedRegistries",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/connectedRegistries/deactivate",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/scopeMaps",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/tokens",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/generateCredentials",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/privateEndpointConnections",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/privateEndpointConnectionProxies",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/privateEndpointConnectionProxies/validate",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/privateLinkResources",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/importImage",
- "locations": [
- "South Central US",
- "West Central US",
- "East US",
- "West Europe",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/exportPipelines",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "registries/importPipelines",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "registries/pipelineRuns",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "Switzerland North",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/listBuildSourceUploadUrl",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/scheduleRun",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/runs",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/taskRuns",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "defaultApiVersion": "2019-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "registries/taskRuns/listDetails",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/agentPools",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Europe"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "defaultApiVersion": "2019-06-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/agentPools/listQueueStatus",
- "locations": [
- "East US",
- "West US 2",
- "South Central US",
- "Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/runs/listLogSasUrl",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/runs/cancel",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/tasks",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2019-04-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/tasks/listDetails",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-04-01",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/getBuildSourceUploadUrl",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/queueBuild",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/builds",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/builds/getLogLink",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/builds/cancel",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/buildTasks",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/buildTasks/listSourceRepositoryProperties",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/buildTasks/steps",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/buildTasks/steps/listBuildArguments",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/replications",
- "locations": [
- "South Central US",
- "West Central US",
- "East US",
- "West Europe",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/webhooks",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registries/webhooks/ping",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/webhooks/getCallbackConfig",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/webhooks/listEvents",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/setupAuth",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/authorize",
- "locations": [
- "East US",
- "West Europe",
- "West US 2",
- "South Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "West Central US",
- "France Central",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Brazil Southeast",
- "Germany West Central",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "France Central",
- "Central US",
- "South Africa North",
- "UAE North",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/GetCredentials",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2016-06-27-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/listCredentials",
- "locations": [
- "South Central US",
- "East US",
- "West US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/regenerateCredential",
- "locations": [
- "South Central US",
- "West US",
- "East US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/listUsages",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "South Central US",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/listPolicies",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/updatePolicies",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/regenerateCredentials",
- "locations": [
- "West US",
- "East US",
- "South Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2016-06-27-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registries/eventGridFilters",
- "locations": [
- "South Central US",
- "West Central US",
- "East US",
- "West Europe",
- "West US",
- "Japan East",
- "North Europe",
- "Southeast Asia",
- "North Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Australia East",
- "Central India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "France Central",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "Australia Southeast",
- "East Asia",
- "Japan West",
- "South India",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2019-05-01",
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "South Central US",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-06-01-preview",
- "2017-03-01",
- "2016-06-27-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "South Central US",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-06-01-preview",
- "2017-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "South Central US",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "North Central US",
- "West Central US",
- "West US 2",
- "Brazil South",
- "Canada East",
- "Canada Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "East Asia",
- "Japan East",
- "Japan West",
- "Southeast Asia",
- "South India",
- "Korea Central",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "UAE Central",
- "Switzerland West",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East",
- "Korea South",
- "West US 3",
- "Norway West"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2019-12-01-preview",
- "2019-05-01-preview",
- "2019-05-01",
- "2017-10-01",
- "2017-06-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-10-01",
- "operations": "2017-10-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftContainerRegistryShoebox",
- "sourceMdmNamespace": "MicrosoftContainerRegistryMdmNamespace"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.ContainerRegistry",
- "onbehalfSupportedLogCategories": [
- "ContainerRegistryRepositoryEvents",
- "ContainerRegistryLoginEvents"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "d2fa1650-4805-4a83-bcb9-cf41fe63539c"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ContainerService",
- "namespace": "Microsoft.ContainerService",
- "authorizations": [
- {
- "applicationId": "7319c514-987d-4e9b-ac3d-d38c4f427f4c",
- "roleDefinitionId": "1b4a0c7f-2217-416f-acfa-cf73452fdc1c",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635",
- "managedByAuthorization": {
- "allowManagedByInheritance": true
- }
- },
- {
- "applicationId": "6dae42f8-4368-4678-94ff-3960e28e3630",
- "roleDefinitionId": "831388fc-33b1-4dd1-b64c-40fdcaf96654"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "containerServices",
- "locations": [
- "Japan East",
- "Central US",
- "East US 2",
- "Japan West",
- "East Asia",
- "South Central US",
- "North Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Southeast Asia",
- "West US",
- "West Europe",
- "North Europe",
- "East US",
- "UK West",
- "UK South",
- "West Central US",
- "West US 2",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "Korea South",
- "Korea Central",
- "South Africa North"
- ],
- "apiVersions": [
- "2017-07-01",
- "2017-01-31",
- "2016-09-30",
- "2016-03-30"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managedClusters",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "France Central",
- "France South",
- "Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "West US",
- "West US 2",
- "Australia East",
- "Australia Central",
- "North Europe",
- "Japan East",
- "Japan West",
- "East US 2",
- "South Central US",
- "North Central US",
- "Southeast Asia",
- "Australia Southeast",
- "UK West",
- "South India",
- "Central India",
- "East Asia",
- "Korea South",
- "Korea Central",
- "South Africa North",
- "Brazil South",
- "Brazil Southeast",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "UAE North",
- "UAE Central",
- "Norway East",
- "Norway West",
- "West US 3",
- "Jio India Central",
- "Jio India West",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2021-02-01",
- "2020-12-01",
- "2020-11-01",
- "2020-09-01",
- "2020-07-01",
- "2020-06-01",
- "2020-04-01",
- "2020-03-01",
- "2020-02-01",
- "2020-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-08-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-08-01-preview",
- "2018-03-31",
- "2017-08-31"
- ],
- "defaultApiVersion": "2019-04-01",
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "openShiftManagedClusters",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK South",
- "France Central",
- "Canada East",
- "Southeast Asia",
- "Japan East"
- ],
- "apiVersions": [
- "2019-09-30-preview",
- "2019-04-30"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/openShiftClusters",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "Canada East",
- "Southeast Asia",
- "Japan East"
- ],
- "apiVersions": [
- "2019-09-30-preview",
- "2019-04-30",
- "2018-09-30-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2017-08-31",
- "2017-01-31",
- "2016-09-30",
- "2016-03-30",
- "2015-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "East US",
- "West Europe",
- "France Central",
- "France South",
- "Central US",
- "UK West",
- "West Central US",
- "West US",
- "West US 2",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "Korea South",
- "Korea Central",
- "UK South",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "North Europe",
- "Japan East",
- "Japan West",
- "East US 2",
- "South Central US",
- "North Central US",
- "Southeast Asia",
- "East Asia",
- "South Africa North",
- "Brazil South",
- "Brazil Southeast",
- "Australia Central 2",
- "Jio India Central",
- "Jio India West",
- "West US 3",
- "Germany North",
- "Germany West Central",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UAE Central",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2017-08-31",
- "2016-03-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "France Central",
- "France South",
- "East US",
- "West Europe",
- "Central US",
- "Canada East",
- "UK West",
- "UK South",
- "West Central US",
- "West US 2",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Korea South",
- "Korea Central",
- "West US",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "North Europe",
- "Japan East",
- "Japan West",
- "East US 2",
- "South Central US",
- "North Central US",
- "Southeast Asia",
- "East Asia",
- "South Africa North",
- "Brazil South",
- "Brazil Southeast",
- "Australia Central 2",
- "Jio India Central",
- "Jio India West",
- "West US 3",
- "Germany North",
- "Germany West Central",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UAE Central",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2016-03-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-10-31",
- "2018-03-31",
- "2017-08-31",
- "2017-07-01",
- "2017-01-31",
- "2016-09-30",
- "2016-03-30",
- "2015-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/orchestrators",
- "locations": [
- "East US",
- "West Europe",
- "France Central",
- "France South",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "West Central US",
- "West US",
- "West US 2",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "North Europe",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "East US 2",
- "South Central US",
- "North Central US",
- "Southeast Asia",
- "South India",
- "Central India",
- "East Asia",
- "South Africa North",
- "Brazil South",
- "Brazil Southeast",
- "Australia Central 2",
- "Jio India Central",
- "Jio India West",
- "West US 3",
- "Germany North",
- "Germany West Central",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UAE Central",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2021-02-01",
- "2020-12-01",
- "2020-11-01",
- "2020-09-01",
- "2020-07-01",
- "2020-06-01",
- "2020-04-01",
- "2020-03-01",
- "2020-02-01",
- "2020-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-08-01",
- "2019-06-01",
- "2019-04-01",
- "2017-09-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/osOptions",
- "locations": [
- "East US",
- "West Europe",
- "France Central",
- "France South",
- "Central US",
- "Canada East",
- "Canada Central",
- "UK South",
- "UK West",
- "West Central US",
- "West US",
- "West US 2",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "North Europe",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "East US 2",
- "South Central US",
- "North Central US",
- "Southeast Asia",
- "South India",
- "Central India",
- "East Asia",
- "South Africa North",
- "Brazil South",
- "Brazil Southeast",
- "Australia Central 2",
- "Jio India Central",
- "Jio India West",
- "West US 3",
- "Germany North",
- "Germany West Central",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UAE Central",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "7319c514-987d-4e9b-ac3d-d38c4f427f4c"
- },
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-08-31",
- "operations": "2017-07-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AKSCustomerData"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftContainerServiceShoebox",
- "sourceMdmNamespace": "Prometheus"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AKSCustomerData",
- "onbehalfSupportedLogCategories": [
- "kube-apiserver",
- "kube-controller-manager",
- "kube-scheduler",
- "kube-audit",
- "guard"
- ]
- }
- ],
- "categories": [
- {
- "Name": "cluster-autoscaler"
- },
- {
- "Name": "guard"
- },
- {
- "Name": "kube-apiserver"
- },
- {
- "Name": "kube-audit"
- },
- {
- "Name": "kube-controller-manager"
- },
- {
- "Name": "kube-scheduler"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Sql",
- "namespace": "Microsoft.Sql",
- "authorizations": [
- {
- "applicationId": "e4ab13ed-33cb-41b4-9140-6e264582cf85",
- "roleDefinitionId": "ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"
- },
- {
- "applicationId": "0130cc9f-7ac5-4026-bd5f-80a08a54e6d9",
- "roleDefinitionId": "45e8abf8-0ec4-44f3-9c37-cff4f7779302"
- },
- {
- "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d",
- "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29"
- },
- {
- "applicationId": "76c7f279-7959-468f-8943-3954880e0d8c",
- "roleDefinitionId": "7f7513a8-73f9-4c5f-97a2-c41f0ea783ef",
- "managedByRoleDefinitionId": "f2f79976-90be-4501-89c6-7caf12474683"
- },
- {
- "applicationId": "022907d3-0f1b-48f7-badc-1ba6abab6d66"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capabilities",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/databaseAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/databaseOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/keys",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/encryptionProtector",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/encryptionProtectorOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/encryptionProtectorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceKeyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceKeyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceEncryptionProtectorOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceEncryptionProtectorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/tdeCertificates",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/tdeCertAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/tdeCertOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01",
- "2014-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/databases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-01-01",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "metadata": {
- "portal": {
- "kinds": [
- {
- "kind": "system",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "v12.0,system",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "v12.0,user"
- },
- {
- "kind": "v12.0,user,vcore"
- },
- {
- "kind": "v12.0,user,datawarehouse",
- "blade": {
- "name": "DataWarehouseBlade",
- "extension": "SqlAzureExtension"
- }
- },
- {
- "kind": "v12.0,user,stretch",
- "blade": {
- "name": "StretchDatabaseBlade",
- "extension": "SqlAzureExtension"
- }
- }
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2014-01-01"
- },
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftSqlShoebox",
- "sourceMdmNamespace": "MicrosoftSql"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "logFilterPathSelector": "kind",
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "onbehalfSupportedLogCategories": [
- "SQLInsights",
- "AutomaticTuning",
- "QueryStoreRuntimeStatistics",
- "QueryStoreWaitStatistics",
- "Errors",
- "DatabaseWaitStatistics",
- "Timeouts",
- "Blocks",
- "Deadlocks",
- "DmsWorkers",
- "ExecRequests",
- "RequestSteps",
- "SqlRequests",
- "Waits"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/serviceObjectives",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/communicationLinks",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/administrators",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/administratorOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverAdministratorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverAdministratorOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/restorableDroppedDatabases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/recoverableDatabases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/geoBackupPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/import",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/importExportOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/operationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/backupLongTermRetentionPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/backupShortTermRetentionPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databaseSecurityPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/automaticTuning",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/automaticTuning",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/transparentDataEncryption",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/ledgerDigestUploads",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/ledgerDigestUploadsOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/recommendedElasticPools",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/dataMaskingPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/dataMaskingPolicies/rules",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/securityAlertPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/securityAlertPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/auditingSettings",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/auditingSettings",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/extendedAuditingSettings",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/devOpsAuditingSettings",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/auditingSettingsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/auditingSettingsOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/extendedAuditingSettingsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/extendedAuditingSettingsOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/devOpsAuditingSettingsOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/devOpsAuditingSettingsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/elasticPoolAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/elasticPoolOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/elasticpools",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-09-01-preview",
- "2015-05-01-preview",
- "2015-05-01",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2014-01-01"
- },
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftSqlShoebox",
- "sourceMdmNamespace": "MicrosoftSqlElasticPools"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "mdsEnvironment": "prod"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/jobAccounts",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/jobAgents",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/jobAgentOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/jobAgentAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/jobAgents/jobs",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/jobAgents/jobs/steps",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/jobAgents/jobs/executions",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/disasterRecoveryConfiguration",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/dnsAliases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/dnsAliasAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/dnsAliasOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/failoverGroups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/failoverGroupAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/failoverGroupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/firewallRulesOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/firewallRulesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/virtualNetworkRules",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/virtualNetworkRulesOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/virtualNetworkRulesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnetsOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2015-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/databaseRestoreAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/usages",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/metricDefinitions",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/metrics",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/aggregatedDatabaseMetrics",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/elasticpools/metrics",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/elasticpools/metricdefinitions",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/topQueries",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/topQueries/queryText",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/advisors",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/elasticPools/advisors",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/advisors",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview",
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/extensions",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/elasticPoolEstimates",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/auditRecords",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/VulnerabilityAssessmentScans",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/workloadGroups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/vulnerabilityAssessments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/vulnerabilityAssessments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/databases/vulnerabilityAssessments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/vulnerabilityAssessments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/VulnerabilityAssessmentSettings",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/VulnerabilityAssessment",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/vulnerabilityAssessmentScanAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/vulnerabilityAssessmentScanOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/recommendedSensitivityLabels",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/syncGroups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/databases/syncGroups/syncMembers",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/syncAgents",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "instancePools",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/importExportOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-08-01",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/importExportAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-08-01",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instancePoolOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instancePoolAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2014-01-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftSqlShoebox",
- "sourceMdmNamespace": "MicrosoftSqlManagedInstance"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "onbehalfSupportedLogCategories": [
- "ResourceUsageStats"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managedInstances/administrators",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/databases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2014-01-01"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "onbehalfSupportedLogCategories": [
- "SQLInsights",
- "QueryStoreRuntimeStatistics",
- "QueryStoreWaitStatistics",
- "Errors"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managedInstances/recoverableDatabases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/metrics",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/metricDefinitions",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/databases/backupLongTermRetentionPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/sqlAgent",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstancePrivateEndpointConnectionProxyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstancePrivateEndpointConnectionOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionManagedInstances",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionManagedInstanceBackups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceLongTermRetentionPolicyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionManagedInstanceBackupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseRestoreAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseRestoreOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseCompleteRestoreAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseCompleteRestoreOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedServerSecurityAlertPoliciesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances/tdeCertificates",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceTdeCertAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceTdeCertOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedServerSecurityAlertPoliciesOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualClusters",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/virtualClusterAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/virtualClusterOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedInstanceOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/syncGroupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/syncMemberOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/syncAgentOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/syncDatabaseIds",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionServers",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionBackups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionPolicyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionBackupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/longTermRetentionBackupAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/shortTermRetentionPolicyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedShortTermRetentionPolicyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceFailoverGroups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceFailoverGroupAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceFailoverGroupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/outboundFirewallRulesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/outboundFirewallRulesOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/notifyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview",
- "2019-06-01-preview",
- "2018-06-01-preview",
- "2017-10-01-preview",
- "2017-03-01-preview",
- "2015-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverTrustGroups",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverTrustGroupOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverTrustGroupAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-11-01-preview",
- "2020-08-01-preview",
- "2020-02-02-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseMoveOperationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedDatabaseMoveAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/connectionPolicies",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Jio India West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2014-01-01",
- "servers/databases": "2018-06-01-preview",
- "servers/elasticpools": "2018-06-01-preview",
- "managedInstances": "2018-06-01-preview",
- "managedInstances/databases": "2017-03-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftSqlShoebox",
- "sourceMdmNamespace": "MicrosoftSql"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv3",
- "mdsEnvironment": "prod"
- }
- ]
- }
- }
- },
- "Microsoft.managedIdentity": {
- "applicationId": "0a929f38-4ca4-4168-8d99-4a4fa344fb98"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Logic",
- "namespace": "Microsoft.Logic",
- "authorization": {
- "applicationId": "7cd684f4-8a78-49b0-91ec-6a35d38739ba",
- "roleDefinitionId": "cb3ef1fb-6e31-49e2-9d87-ed821053fe58"
- },
- "resourceTypes": [
- {
- "resourceType": "workflows",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Brazil Southeast",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-05-01",
- "2018-07-01-preview",
- "2017-07-01",
- "2016-10-01",
- "2016-06-01",
- "2015-08-01-preview",
- "2015-02-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLogic"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "LogicApp",
- "sourceMdmNamespace": "FlowMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLogic",
- "onbehalfSupportedLogCategories": [
- "WorkflowRuntime"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/workflows",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Brazil Southeast",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-05-01",
- "2018-07-01-preview",
- "2017-07-01",
- "2016-10-01",
- "2016-06-01",
- "2015-08-01-preview",
- "2015-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "North Central US"
- ],
- "apiVersions": [
- "2019-05-01",
- "2018-07-01-preview",
- "2017-07-01",
- "2016-10-01",
- "2016-06-01",
- "2015-08-01-preview",
- "2015-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Brazil Southeast",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-05-01",
- "2018-07-01-preview",
- "2017-07-01",
- "2016-10-01",
- "2016-06-01",
- "2015-08-01-preview",
- "2015-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "integrationAccounts",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Brazil Southeast",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-05-01",
- "2018-07-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLogic",
- "onbehalfSupportedLogCategories": [
- "IntegrationAccountTrackingEvents"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "integrationServiceEnvironments",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "Canada Central",
- "West US 2",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-05-01",
- "2018-07-01-preview",
- "2018-03-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-07-01-preview",
- "operations": "2016-06-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLogic"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "LogicApp",
- "sourceMdmNamespace": "FlowISEMetrics"
- }
- ]
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.integrationServiceEnvironmentId"
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "integrationServiceEnvironments/managedApis",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2019-06-01-preview",
- "2019-05-01",
- "2018-07-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-07-01-preview",
- "operations": "2016-06-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLogic"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "LogicApp",
- "sourceMdmNamespace": "FlowISEMetrics"
- }
- ]
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.integrationServiceEnvironmentId"
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "7cd684f4-8a78-49b0-91ec-6a35d38739ba"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-06-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "LogicApp",
- "sourceMdmNamespace": "FlowMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Portal",
- "namespace": "Microsoft.Portal",
- "resourceTypes": [
- {
- "resourceType": "dashboards",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "Switzerland West",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2020-09-01-alpha",
- "2019-01-01-preview",
- "2018-10-01-preview",
- "2015-08-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "tenantconfigurations",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "Switzerland West",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listTenantConfigurationViolations",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "Switzerland West",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East"
- ],
- "apiVersions": [
- "2015-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-04-01-preview",
- "2018-10-01",
- "2017-12-01-preview",
- "2017-08-01-preview",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "consoles",
- "locations": [],
- "apiVersions": [
- "2020-04-01-preview",
- "2018-10-01",
- "2017-12-01-preview",
- "2017-08-01-preview",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/consoles",
- "locations": [
- "West US",
- "East US",
- "Central India",
- "North Europe",
- "West Europe",
- "South Central US",
- "Southeast Asia",
- "East US 2",
- "Central US"
- ],
- "apiVersions": [
- "2020-04-01-preview",
- "2018-10-01",
- "2017-12-01-preview",
- "2017-08-01-preview",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "userSettings",
- "locations": [],
- "apiVersions": [
- "2020-04-01-preview",
- "2018-10-01",
- "2017-12-01-preview",
- "2017-08-01-preview",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/userSettings",
- "locations": [
- "West US",
- "East US",
- "Central India",
- "North Europe",
- "West Europe",
- "South Central US",
- "Southeast Asia",
- "East US 2",
- "Central US"
- ],
- "apiVersions": [
- "2020-04-01-preview",
- "2018-10-01",
- "2017-12-01-preview",
- "2017-08-01-preview",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OperationsManagement",
- "namespace": "Microsoft.OperationsManagement",
- "authorization": {
- "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77",
- "roleDefinitionId": "aa249101-6816-4966-aafa-08175d795f14"
- },
- "resourceTypes": [
- {
- "resourceType": "solutions",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia East",
- "Australia Central",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central Us",
- "East Us 2",
- "East Asia",
- "West Us",
- "South Central Us",
- "North Central US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "Australia Central 2",
- "Germany West Central",
- "Japan West",
- "UAE North",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2015-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managementconfigurations",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia East",
- "Australia Central",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central Us",
- "East Us 2",
- "East Asia",
- "West Us",
- "South Central Us",
- "North Central US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2015-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managementassociations",
- "locations": [],
- "apiVersions": [
- "2015-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "views",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia East",
- "Australia Central",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central Us",
- "East Us 2",
- "East Asia",
- "West Us",
- "South Central Us",
- "North Central US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2017-08-21-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AppConfiguration",
- "namespace": "Microsoft.AppConfiguration",
- "authorizations": [
- {
- "applicationId": "35ffadb3-7fc1-497e-b61b-381d28e744cc",
- "roleDefinitionId": "fffa409e-a8cc-4cbf-8e1c-6d940b33040e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "configurationStores",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "configurationStores/keyValues",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "configurationStores/eventGridFilters",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "Central US",
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "North Europe",
- "UK South",
- "South Central US",
- "East US 2",
- "West US 2",
- "Brazil South",
- "Canada Central",
- "Central India",
- "East Asia",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Central US",
- "Switzerland North",
- "Germany West Central",
- "UAE North",
- "Norway East",
- "South Africa North",
- "UK West"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-07-01-preview",
- "2020-06-01",
- "2019-11-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "35ffadb3-7fc1-497e-b61b-381d28e744cc"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-10-01",
- "operations": "2021-03-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "AppConfig",
- "sourceMdmNamespace": "AzConfig"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.AppConfiguration",
- "onbehalfSupportedLogCategories": [
- "HttpRequest",
- "Audit"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HardwareSecurityModules",
- "namespace": "Microsoft.HardwareSecurityModules",
- "authorizations": [
- {
- "applicationId": "0eb690b7-d23e-4fb0-b43e-cd161ac80cc3",
- "roleDefinitionId": "48397dc8-3910-486a-8165-ab2df987447f"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-10-31-preview",
- "2018-10-31"
- ],
- "defaultApiVersion": "2018-10-31",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast",
- "West US 2",
- "South India",
- "Central India",
- "Japan East",
- "Japan West",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2018-10-31-preview",
- "2018-10-31"
- ],
- "defaultApiVersion": "2018-10-31",
- "capabilities": "None"
- },
- {
- "resourceType": "dedicatedHSMs",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "South India",
- "Central India",
- "Japan East",
- "Japan West",
- "Switzerland North",
- "Switzerland West",
- "South Central US",
- "West US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2018-10-31-preview",
- "2018-10-31"
- ],
- "defaultApiVersion": "2018-10-31",
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": []
- },
- {
- "location": "West Europe",
- "zones": []
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": []
- },
- {
- "location": "North Europe",
- "zones": []
- },
- {
- "location": "East US",
- "zones": []
- },
- {
- "location": "UK South",
- "zones": []
- },
- {
- "location": "Japan East",
- "zones": []
- },
- {
- "location": "Australia East",
- "zones": []
- },
- {
- "location": "South Central US",
- "zones": []
- },
- {
- "location": "Canada Central",
- "zones": []
- },
- {
- "location": "Central India",
- "zones": []
- },
- {
- "location": "East Asia",
- "zones": []
- }
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "South India",
- "Central India",
- "Japan East",
- "Japan West",
- "Switzerland North",
- "Switzerland West",
- "South Central US",
- "West US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2018-10-31-preview",
- "2018-10-31"
- ],
- "defaultApiVersion": "2018-10-31",
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WindowsIoT",
- "namespace": "Microsoft.WindowsIoT",
- "resourceTypes": [
- {
- "resourceType": "DeviceServices",
- "locations": [
- "West US",
- "East US"
- ],
- "apiVersions": [
- "2019-06-01",
- "2018-02-16-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2019-06-01",
- "2018-02-16-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforPostgreSQL",
- "namespace": "Microsoft.DBforPostgreSQL",
- "authorizations": [
- {
- "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d",
- "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29"
- },
- {
- "applicationId": "93efed00-6552-4119-833a-422b297199f9",
- "roleDefinitionId": "a864a0a2-ab66-47a6-97a8-223dc1379f87"
- },
- {
- "applicationId": "5ed8fe41-c1bc-4c06-a531-d91e1f1c2fac",
- "roleDefinitionId": "95173bdd-3b59-46f3-be65-7cee4193b078"
- },
- {
- "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serversv2",
- "locations": [
- "East US 2",
- "East US",
- "North Central US",
- "Canada Central",
- "Australia East",
- "UK South",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "North Europe"
- ],
- "apiVersions": [
- "2018-03-29-privatepreview"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "MicrosoftSqlElasticServersShoebox",
- "sourceMdmNamespace": "MicrosoftOrcasBreadthServers"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "onbehalfSupportedLogCategories": [
- "PostgreSQLLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serverGroupsv2",
- "locations": [
- "East US 2",
- "East US",
- "North Central US",
- "Canada Central",
- "Australia East",
- "UK South",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "North Europe"
- ],
- "apiVersions": [
- "2020-10-05-privatepreview"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDBForPGHyperShoeboxProd",
- "sourceMdmNamespace": "CustomerFacingMetrics"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "onbehalfSupportedLogCategories": [
- "PostgreSQLLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serverGroups",
- "locations": [
- "East US 2",
- "East US",
- "North Central US",
- "Canada Central",
- "Australia East",
- "UK South",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "North Europe"
- ],
- "apiVersions": [
- "2018-03-29-privatepreview"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "flexibleServers",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Korea Central",
- "Japan East",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "West US",
- "West US 2",
- "West Europe"
- ],
- "apiVersions": [
- "2021-04-10-privatepreview",
- "2020-11-05-preview",
- "2020-02-14-privatepreview",
- "2020-02-14-preview"
- ],
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": []
- },
- {
- "location": "Canada Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Brazil South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Korea Central",
- "zones": []
- },
- {
- "location": "Norway East",
- "zones": []
- }
- ],
- "metadata": {
- "portal": {
- "kinds": []
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDBForPGFlexShoeboxProd",
- "sourceMdmNamespace": "CustomerFacingMetrics"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "onbehalfSupportedLogCategories": [
- "PostgreSQLLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "37ef5504-7ac2-4c18-ad5a-09b4c66ce5f9"
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/capabilities",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-11-05-preview",
- "2020-02-14-privatepreview",
- "2020-02-14-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-11-05-preview",
- "2020-02-14-privatepreview",
- "2020-02-14-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/recoverableServers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/virtualNetworkRules",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "getPrivateDnsZoneSuffix",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Europe",
- "North Central US",
- "Norway East",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-31-privatepreview",
- "2020-10-05-privatepreview",
- "2018-03-29-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/azureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkVirtualNetworkSubnetUsage",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan West",
- "Japan East",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-11-05-preview",
- "2020-02-14-privatepreview",
- "2020-02-14-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/performanceTiers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/topQueryStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/queryTexts",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/waitStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/resetQueryPerformanceInsightData",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/advisors",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateLinkResources",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnections",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnectionProxies",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/keys",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-12-01",
- "serversv2": "2018-03-29-privatepreview",
- "flexibleServers": "2020-02-14-privatepreview",
- "serverGroupsv2": "2020-10-05-privatepreview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "AzureDBProduction",
- "sourceMdmNamespace": "MicrosoftSqlElasticServers"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "onbehalfSupportedLogCategories": [
- "PostgreSQLLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.managedIdentity": {
- "applicationId": "c39e7899-4b62-43a9-8a02-3f99028555f9"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DesktopVirtualization",
- "namespace": "Microsoft.DesktopVirtualization",
- "authorizations": [
- {
- "applicationId": "50e95039-b200-4007-bc97-8d5790743a63",
- "roleDefinitionId": "CAD30215-AD1C-43BF-BE90-7BFA8B493E62"
- },
- {
- "applicationId": "9cdead84-a844-4324-93f2-b2e6bb768d07"
- },
- {
- "applicationId": "a85cf173-4192-42f8-81fa-777a763e6e2c"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-01-23-preview",
- "operations": "2019-01-23-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.DesktopVirtualization",
- "onbehalfSupportedLogCategories": [
- "Feed"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationgroups",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationgroups/applications",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationgroups/desktops",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationgroups/startmenuitems",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostpools",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-01-23-preview",
- "operations": "2019-01-23-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.DesktopVirtualization",
- "onbehalfSupportedLogCategories": [
- "Connection",
- "HostRegistration",
- "AgentHealthStatus"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "hostpools/msixpackages",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostpools/sessionhosts",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostpools/sessionhosts/usersessions",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostpools/usersessions",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "scalingplans",
- "locations": [
- "UK South",
- "UK West",
- "North Europe",
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-14-preview",
- "2020-11-10-preview",
- "2020-11-02-preview",
- "2020-10-19-preview",
- "2020-09-21-preview",
- "2019-12-10-preview",
- "2019-09-24-preview",
- "2019-01-23-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "build": "",
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-12-10-preview",
- "operations": "2019-12-10-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.DesktopVirtualization",
- "onbehalfSupportedLogCategories": [
- "Management",
- "Checkpoint",
- "Error"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Attestation",
- "namespace": "Microsoft.Attestation",
- "authorizations": [
- {
- "applicationId": "c61423b7-1d1f-430d-b444-0eee53298103",
- "roleDefinitionId": "7299b0b1-11da-4858-8943-7db197005959"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "attestationProviders",
- "locations": [
- "East US 2",
- "Central US",
- "UK South",
- "East US",
- "Canada Central",
- "Canada East",
- "UK West",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-10-01",
- "2018-09-01-preview",
- "2018-09-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "attestationProviders": "2018-09-01-preview",
- "operations": "2018-09-01-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Attestation",
- "onbehalfSupportedLogCategories": [
- "INF",
- "WRN",
- "ERR",
- "AuditEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "defaultProviders",
- "locations": [
- "East US 2",
- "Central US",
- "UK South",
- "East US",
- "Canada Central",
- "Canada East",
- "UK West",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-10-01",
- "2018-09-01-preview",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-10-01",
- "2018-09-01-preview",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/defaultProvider",
- "locations": [
- "East US 2",
- "Central US",
- "UK South",
- "East US",
- "Canada Central",
- "Canada East",
- "UK West",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-10-01",
- "2018-09-01-preview",
- "2018-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-10-01",
- "2018-09-01-preview",
- "2018-09-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "attestationProviders": "2018-09-01-preview",
- "operations": "2018-09-01-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Attestation",
- "onbehalfSupportedLogCategories": [
- "INF",
- "WRN",
- "ERR",
- "AuditEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.GuestConfiguration",
- "namespace": "Microsoft.GuestConfiguration",
- "authorizations": [
- {
- "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9",
- "roleDefinitionId": "9c6ffa40-421e-4dc0-9739-76b0699a11de"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "guestConfigurationAssignments",
- "locations": [],
- "apiVersions": [
- "2020-06-25",
- "2018-11-20",
- "2018-06-30-preview",
- "2018-01-20-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "software",
- "locations": [
- "East US 2",
- "South Central US"
- ],
- "apiVersions": [
- "2018-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "softwareUpdates",
- "locations": [
- "East US 2",
- "South Central US"
- ],
- "apiVersions": [
- "2018-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "softwareUpdateProfile",
- "locations": [
- "East US 2",
- "South Central US"
- ],
- "apiVersions": [
- "2018-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-06-25",
- "2018-11-20",
- "2018-06-30-preview",
- "2018-01-20-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftGuestConfiguration"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "mdsEnvironment": "prod",
- "serviceIdentity": "MicrosoftGuestConfiguration"
- }
- ]
- },
- "version": "1.0"
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Relay",
- "namespace": "Microsoft.Relay",
- "authorizations": [
- {
- "applicationId": "91bb937c-29c2-4275-982f-9465f0caf03d",
- "roleDefinitionId": "6ea9e989-a5f4-4187-8d11-c8db3dd04da1"
- },
- {
- "applicationId": "80369ed6-5f11-4dd9-bef3-692475845e77"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "namespaces",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2016-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "namespaces/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/privateEndpointConnections",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/hybridconnections",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/hybridconnections/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/wcfrelays",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/wcfrelays/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-07-01"
- ],
- "defaultApiVersion": "2017-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-04-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.metricId",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "servicebus",
- "sourceMdmNamespace": "OperationQoSMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus",
- "onbehalfSupportedLogCategories": [
- "HybridConnectionsLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Communication",
- "namespace": "Microsoft.Communication",
- "authorizations": [
- {
- "applicationId": "632ec9eb-fad7-4cbd-993a-e72973ba2acc",
- "roleDefinitionId": "6c5c31b0-3a00-47ea-9555-f233670ba313"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "CommunicationServices",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "defaultApiVersion": "2020-08-20-preview",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "CommunicationServices/eventGridFilters",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "defaultApiVersion": "2020-08-20-preview",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "defaultApiVersion": "2020-08-20-preview",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/operationStatuses",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "CheckNameAvailability",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-08-20-preview",
- "2020-08-20"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataShare",
- "namespace": "Microsoft.DataShare",
- "authorization": {
- "applicationId": "799f1985-1517-4fe1-af2b-ba3d87d4996b",
- "roleDefinitionId": "0146496b-e06f-439a-83be-49fac884edf5"
- },
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-11-01",
- "operations": "2018-11-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataShare"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDataShareShoebox",
- "sourceMdmNamespace": "RP"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataShare",
- "onbehalfsupportedLogCategories": [
- "Shares",
- "ShareSubcriptions",
- "SentShareSnapshots",
- "ReceivedShareSnapshots"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/shares",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/shares/datasets",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/shares/synchronizationSettings",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/shares/invitations",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/sharesubscriptions",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/shares/providersharesubscriptions",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/sharesubscriptions/datasetmappings",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/sharesubscriptions/triggers",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/sharesubscriptions/consumerSourceDataSets",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listinvitations",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "Southeast Asia",
- "UK South",
- "West Central US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-11-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East US 2"
- ],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-09-01",
- "2019-11-01",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/rejectInvitation",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-09-01",
- "2019-11-01",
- "2018-11-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/consumerInvitations",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-09-01",
- "2019-11-01",
- "2018-11-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-09-01",
- "2019-11-01",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "799f1985-1517-4fe1-af2b-ba3d87d4996b"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-11-01",
- "operations": "2018-11-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataShare"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDataShareShoebox",
- "sourceMdmNamespace": "RP"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SignalRService",
- "namespace": "Microsoft.SignalRService",
- "authorizations": [
- {
- "applicationId": "cdad765c-f191-43ba-b9f5-7aef392f811d",
- "roleDefinitionId": "346b504e-4aec-45d1-be25-a6e10f3cb4fe"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "SignalR",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "WebPubSub",
- "locations": [
- "East US",
- "North Europe",
- "Southeast Asia",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-05-01"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "WebPubSub",
- "onbehalfSupportedLogCategories": [
- "AllLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Central US EUAP",
- "West Central US",
- "West US 2",
- "East US",
- "East US 2",
- "West US",
- "Central US"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "SignalR/eventGridFilters",
- "locations": [
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "Switzerland North",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-07-01-preview",
- "2020-05-01",
- "2018-10-01",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "SignalR": "2018-10-01",
- "WebPubSub": "2021-04-01-preview",
- "operations": "2018-10-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.SignalRService"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSignalRServiceShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.SignalRService",
- "onbehalfSupportedLogCategories": [
- "AllLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "cdad765c-f191-43ba-b9f5-7aef392f811d"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforMySQL",
- "namespace": "Microsoft.DBforMySQL",
- "authorizations": [
- {
- "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d",
- "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29"
- },
- {
- "applicationId": "e6f9f783-1fdb-4755-acaf-abed6c642885",
- "roleDefinitionId": "a864a0a2-ab66-47a6-97a8-223dc1379f87"
- },
- {
- "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "flexibleServers",
- "locations": [
- "East US 2",
- "West US 2",
- "Brazil South",
- "France Central",
- "Southeast Asia",
- "North Europe",
- "AUSTRALIA EAST",
- "JAPAN EAST",
- "KOREA CENTRAL",
- "UK SOUTH",
- "WEST EUROPE",
- "CANADA CENTRAL",
- "CENTRAL US",
- "EAST US",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-07-01-privatepreview",
- "2020-07-01-preview"
- ],
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "CENTRAL US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "WEST EUROPE",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "EAST US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK SOUTH",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "JAPAN EAST",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "AUSTRALIA EAST",
- "zones": []
- },
- {
- "location": "CANADA CENTRAL",
- "zones": []
- },
- {
- "location": "Brazil South",
- "zones": []
- },
- {
- "location": "KOREA CENTRAL",
- "zones": []
- }
- ],
- "metadata": {
- "portal": {
- "kinds": []
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-07-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDBForMySQLFlexShoeboxProd",
- "sourceMdmNamespace": "CustomerFacingMetrics"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftOrcasBreadthServers",
- "onbehalfSupportedLogCategories": [
- "MySqlSlowLogs",
- "MySqlAuditLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "cb43afba-eb6b-4cef-bf00-758b6c233beb"
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/recoverableServers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "Central India",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/virtualNetworkRules",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capabilities",
- "locations": [
- "East US 2",
- "West US 2",
- "Brazil South",
- "France Central",
- "Southeast Asia",
- "North Europe",
- "AUSTRALIA EAST",
- "JAPAN EAST",
- "KOREA CENTRAL",
- "UK SOUTH",
- "WEST EUROPE",
- "CANADA CENTRAL",
- "CENTRAL US",
- "EAST US",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-07-01-privatepreview",
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-07-01-privatepreview",
- "2020-07-01-preview",
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkVirtualNetworkSubnetUsage",
- "locations": [
- "East US 2",
- "West US 2",
- "Brazil South",
- "France Central",
- "Southeast Asia",
- "North Europe",
- "AUSTRALIA EAST",
- "JAPAN EAST",
- "KOREA CENTRAL",
- "UK SOUTH",
- "WEST EUROPE",
- "CANADA CENTRAL",
- "CENTRAL US",
- "EAST US",
- "Switzerland North"
- ],
- "apiVersions": [
- "2020-07-01-privatepreview",
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/azureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/administratorAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/performanceTiers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "UAE North",
- "Norway East",
- "Switzerland North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01-preview",
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/topQueryStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/queryTexts",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/waitStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/resetQueryPerformanceInsightData",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/advisors",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateLinkResources",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnections",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnectionProxies",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/keys",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/start",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/stop",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/upgrade",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-12-01",
- "flexibleServers": "2020-07-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "AzureDBProduction",
- "sourceMdmNamespace": "MicrosoftSqlElasticServers"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "onbehalfSupportedLogCategories": [
- "MySqlSlowLogs",
- "MySqlAuditLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.managedIdentity": {
- "applicationId": "ff39e39d-6b44-4bd0-8ef5-a4d02e0e53f6"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache",
- "namespace": "Microsoft.Cache",
- "authorization": {
- "applicationId": "96231a05-34ce-4eb4-aa6a-70759cbb5e83",
- "roleDefinitionId": "4f731528-ba85-45c7-acfb-cd0a9b3cf31b"
- },
- "resourceTypes": [
- {
- "resourceType": "Redis",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-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": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Redis/privateEndpointConnectionProxies",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Redis/privateEndpointConnectionProxies/validate",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Redis/privateEndpointConnections",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Redis/privateLinkResources",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/asyncOperations",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "South India",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-12-01",
- "2020-06-01",
- "2020-04-01-preview",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "South India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2020-04-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01-alpha",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-12-01",
- "2020-10-01-preview",
- "2020-06-01",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01-alpha",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "redisEnterprise",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2020-04-01-preview"
- }
- ],
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central India",
- "zones": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftCache"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "RedisEnterpriseAzureMonitor",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "RedisEnterprise/privateEndpointConnectionProxies",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RedisEnterprise/privateEndpointConnectionProxies/validate",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RedisEnterprise/privateEndpointConnectionProxies/operationresults",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RedisEnterprise/privateEndpointConnections",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RedisEnterprise/privateEndpointConnections/operationresults",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RedisEnterprise/privateLinkResources",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "redisEnterprise/databases",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "East US",
- "West Europe",
- "West US",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "North Europe",
- "Central US",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-01-preview",
- "2020-10-01-preview",
- "2020-04-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "Redis/EventGridFilters",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "South India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West US 2",
- "West Central US",
- "Korea Central",
- "Korea South",
- "France South",
- "France Central",
- "Australia Central",
- "Australia Central 2",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany North",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-06-01",
- "2019-07-01",
- "2018-03-01",
- "2017-10-01",
- "2017-02-01",
- "2016-04-01",
- "2015-08-01",
- "2015-03-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftCache"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "redisinsightsprod",
- "sourceMdmNamespace": "ShoeBox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network",
- "namespace": "Microsoft.Network",
- "authorizations": [
- {
- "applicationId": "2cf9eb86-36b5-49dc-86ae-9a63135dfa8c",
- "roleDefinitionId": "13ba9ab4-19f0-4804-adc4-14ece36cc7a1"
- },
- {
- "applicationId": "7c33bfcb-8d33-48d6-8e60-dc6404003489",
- "roleDefinitionId": "ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"
- },
- {
- "applicationId": "1e3e4475-288f-4018-a376-df66fd7fac5f",
- "roleDefinitionId": "1d538b69-3d87-4e56-8ff8-25786fd48261"
- },
- {
- "applicationId": "a0be0c72-870e-46f0-9c49-c98333a996f7",
- "roleDefinitionId": "7ce22727-ffce-45a9-930c-ddb2e56fa131"
- },
- {
- "applicationId": "486c78bf-a0f7-45f1-92fd-37215929e116",
- "roleDefinitionId": "98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"
- },
- {
- "applicationId": "19947cfd-0303-466c-ac3c-fcc19a7a1570",
- "roleDefinitionId": "d813ab6c-bfb7-413e-9462-005b21f0ce09"
- },
- {
- "applicationId": "341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd",
- "roleDefinitionId": "8141843c-c51c-4c1e-a5bf-0d351594b86c"
- },
- {
- "applicationId": "328fd23b-de6e-462c-9433-e207470a5727",
- "roleDefinitionId": "79e29e06-4056-41e5-a6b2-959f1f47747e"
- },
- {
- "applicationId": "6d057c82-a784-47ae-8d12-ca7b38cf06b4",
- "roleDefinitionId": "c27dd31e-c1e5-4ab0-93e1-a12ba34f182e"
- },
- {
- "applicationId": "b4ca0290-4e73-4e31-ade0-c82ecfaabf6a",
- "roleDefinitionId": "18363e25-ff21-4159-ae8d-7dfecb5bd001"
- },
- {
- "applicationId": "79d7fb34-4bef-4417-8184-ff713af7a679",
- "roleDefinitionId": "1c1f11ef-abfa-4abe-a02b-226771d07fc7"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "virtualNetworks",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "CNSec",
- "onbehalfSupportedLogCategories": [
- "VMProtectionAlerts"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "virtualNetworks/taggedTrafficConsumers",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "natGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01"
- ],
- "defaultApiVersion": "2020-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": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "slbv2",
- "sourceMdmNamespace": "NatService"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "publicIPAddresses",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": []
- },
- {
- "location": "South Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Canada Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "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": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "metrics": {
- "metricsFilterPathSelector": "sku.name",
- "mdsInfo": [
- {
- "serviceIdentity": "NetMon"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "CNS",
- "sourceMdmNamespace": "ShoeboxProd"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "NetMon",
- "onbehalfSupportedLogCategories": [
- "DDoSProtectionNotifications",
- "DDoSMitigationFlowLogs",
- "DDoSMitigationReports"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "customIpPrefixes",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-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": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "NetMon"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "CNS",
- "sourceMdmNamespace": "BYOIP"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "NetMon",
- "onbehalfSupportedLogCategories": [
- "BYOIPNotifications",
- "BYOIPReports"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkInterfaces",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-04-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "VfpMdm",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dscpConfigurations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateEndpoints",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "VNetMDMShoebox",
- "sourceMdmNamespace": "VNetAzureMonitoring"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateEndpointRedirectMaps",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "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": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "loadBalancers",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "NetMon",
- "onbehalfSupportedLogCategories": [
- "LoadBalancerAlertEvents",
- "LoadBalancerProbeHealthStatus"
- ]
- }
- ]
- },
- "metrics": {
- "metricsFilterPathSelector": "sku.name",
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "slbv2",
- "sourceMdmNamespace": "Health"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkSecurityGroups",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "LNMAgentService",
- "onbehalfSupportedLogCategories": [
- "NetworkSecurityGroupEvent",
- "NetworkSecurityGroupRuleCounter",
- "NetworkSecurityGroupFlowEvent"
- ]
- }
- ],
- "categories": [
- {
- "Name": "NetworkSecurityGroupFlowEvent",
- "requiredFeatures": [
- "Microsoft.Network/AllowNsgFlowLogging"
- ],
- "excludeFromEventHub": true
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationSecurityGroups",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serviceEndpointPolicies",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkIntentPolicies",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "routeTables",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "publicIPPrefixes",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01"
- ],
- "defaultApiVersion": "2020-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": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ddosCustomPolicies",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkWatchers",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkWatchers/connectionMonitors",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "NetworkAnalytics",
- "sourceMdmNamespace": "NodePluginHost"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkWatchers/flowLogs",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkWatchers/pingMeshes",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "NetAnalyticsPingMesh",
- "sourceMdmNamespace": "PingMesh"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "virtualNetworkGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "metricsFilterPathSelector": "properties.gatewayType",
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "BrkGWTShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid",
- "onbehalfSupportedLogCategories": [
- "GatewayDiagnosticLog",
- "TunnelDiagnosticLog",
- "RouteDiagnosticLog",
- "IKEDiagnosticLog",
- "P2SDiagnosticLog"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "localNetworkGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "connections",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "HybridGWShoeboxProd",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-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": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-09-01"
- },
- "metrics": {
- "metricsFilterPathSelector": "properties.sku.tier",
- "mdmInfo": [
- {
- "sourceMdmAccount": "AppGWT",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureApplicationGatewayService",
- "onbehalfSupportedLogCategories": [
- "ApplicationGatewayAccessLog",
- "ApplicationGatewayPerformanceLog",
- "ApplicationGatewayFirewallLog"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationGatewayWebApplicationFirewallPolicies",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/CheckDnsNameAvailability",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/setLoadBalancerFrontendPublicIpAddresses",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2015-06-15"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/virtualNetworkAvailableEndpointServices",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/availableDelegations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serviceTags",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/availablePrivateEndpointTypes",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/availableServiceAliases",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkPrivateLinkServiceVisibility",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/autoApprovedPrivateLinkServices",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/batchValidatePrivateEndpointsForResourceMove",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/batchNotifyPrivateEndpointsForResourceMove",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/supportedVirtualMachineSizes",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/setAzureNetworkManagerConfiguration",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/getAzureNetworkManagerConfiguration",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkAcceleratedNetworkingSupport",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/validateResourceOwnership",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/setResourceOwnership",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/effectiveResourceOwnership",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-04-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-04-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-04-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "CloudDNSShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dnsOperationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnsOperationStatuses",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "getDnsResourceReference",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "internalNotify",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/A",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/AAAA",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/CNAME",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/PTR",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/MX",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/TXT",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/SRV",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/SOA",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/NS",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/CAA",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/recordsets",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dnszones/all",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01-preview",
- "2017-10-01",
- "2017-09-15-preview",
- "2017-09-01",
- "2016-04-01",
- "2015-05-04-preview"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "PrivateDnsShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateDnsZones/virtualNetworkLinks",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateDnsOperationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsOperationStatuses",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZonesInternal",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01"
- ],
- "defaultApiVersion": "2020-01-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/A",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/AAAA",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/CNAME",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/PTR",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/MX",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/TXT",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/SRV",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/SOA",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "privateDnsZones/all",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01",
- "2020-01-01",
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "virtualNetworks/privateDnsZoneLinks",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "trafficmanagerprofiles",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-08-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2017-05-01",
- "2017-03-01",
- "2015-11-01",
- "2015-04-28-preview"
- ],
- "defaultApiVersion": "2018-08-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "TrafficManagerShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "TrafficManager",
- "onbehalfSupportedLogCategories": [
- "ProbeHealthStatusEvents"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "trafficmanagerprofiles/heatMaps",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-08-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkTrafficManagerNameAvailability",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-08-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2017-05-01",
- "2017-03-01",
- "2015-11-01",
- "2015-04-28-preview"
- ],
- "defaultApiVersion": "2018-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "trafficManagerUserMetricsKeys",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-08-01",
- "2018-04-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "trafficManagerGeographicHierarchies",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-08-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2017-05-01",
- "2017-03-01"
- ],
- "defaultApiVersion": "2018-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "expressRouteCircuits",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "metricsFilterPathSelector": "properties.globalReachEnabled",
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureERShoeboxProd",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid",
- "onbehalfSupportedLogCategories": [
- "PeeringRouteLog"
- ]
- }
- ]
- },
- "apiVersions": {
- "bastionHosts": "2019-08-01"
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "expressRouteServiceProviders",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationGatewayAvailableWafRuleSets",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationGatewayAvailableSslOptions",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationGatewayAvailableServerVariables",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationGatewayAvailableRequestHeaders",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationGatewayAvailableResponseHeaders",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "routeFilters",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01",
- "2016-11-01",
- "2016-10-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-30",
- "2015-06-15",
- "2015-05-01-preview",
- "2014-12-01-preview"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "bgpServiceCommunities",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01",
- "2017-08-01",
- "2017-06-01",
- "2017-04-01",
- "2017-03-01",
- "2016-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualWans",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "vpnSites",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "vpnServerConfigurations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "virtualHubs",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "vpnGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01",
- "2018-01-01",
- "2017-11-01",
- "2017-10-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "BrkGWTShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid",
- "onbehalfSupportedLogCategories": [
- "GatewayDiagnosticLog",
- "TunnelDiagnosticLog",
- "RouteDiagnosticLog",
- "IKEDiagnosticLog"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "p2sVpnGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "BrkGWTShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid",
- "onbehalfSupportedLogCategories": [
- "GatewayDiagnosticLog",
- "IKEDiagnosticLog",
- "P2SDiagnosticLog"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "expressRouteGateways",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureERShoeboxProd",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "expressRoutePortsLocations",
- "locations": [
- "France Central"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "firewallPolicies",
- "locations": [
- "UAE North",
- "Australia Central 2",
- "UAE Central",
- "Germany North",
- "Central India",
- "Korea South",
- "Switzerland North",
- "Switzerland West",
- "Japan West",
- "France South",
- "South Africa West",
- "West India",
- "Canada East",
- "South India",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "South Africa North",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Brazil South",
- "Brazil Southeast",
- "Japan East",
- "UK West",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West Central US",
- "South Central US",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "UK South",
- "East US 2",
- "West US 2",
- "North Central US",
- "Canada Central",
- "France Central",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01"
- ],
- "defaultApiVersion": "2020-04-01",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "328fd23b-de6e-462c-9433-e207470a5727"
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ipGroups",
- "locations": [
- "UAE North",
- "Australia Central 2",
- "UAE Central",
- "Germany North",
- "Central India",
- "Korea South",
- "Switzerland North",
- "Switzerland West",
- "Japan West",
- "France South",
- "South Africa West",
- "West India",
- "Canada East",
- "South India",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "South Africa North",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Brazil South",
- "Japan East",
- "UK West",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "South Central US",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "UK South",
- "East US 2",
- "West US 2",
- "North Central US",
- "Canada Central",
- "France Central",
- "West Central US",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "azureWebCategories",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/nfvOperations",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/nfvOperationResults",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "securityPartnerProviders",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "azureFirewalls",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "France Central",
- "Australia Central",
- "Japan West",
- "Japan East",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01"
- ],
- "defaultApiVersion": "2020-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": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-06-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFirewall"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureFirewallShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFirewall",
- "onbehalfSupportedLogCategories": [
- "AzureFirewallApplicationRule",
- "AzureFirewallNetworkRule",
- "AzureFirewallDnsProxy"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "azureFirewallFqdnTags",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualNetworkTaps",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateLinkServices",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "VNetMDMShoebox",
- "sourceMdmNamespace": "VNetAzureMonitoring"
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/privateLinkServices",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ddosProtectionPlans",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01",
- "2018-04-01",
- "2018-03-01",
- "2018-02-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkProfiles",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01",
- "2018-06-01",
- "2018-05-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "frontdoorOperationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-11-01",
- "2020-07-01",
- "2020-05-01",
- "2020-04-01",
- "2020-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkFrontdoorNameAvailability",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-07-01",
- "2020-05-01",
- "2020-01-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "frontdoors",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-07-01",
- "2020-05-01",
- "2020-04-01",
- "2020-01-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureFrontdoorShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor",
- "onbehalfSupportedLogCategories": [
- "FrontdoorAccessLog",
- "FrontdoorWebApplicationFirewallLog"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "frontdoors/frontendEndpoints",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-07-01",
- "2020-05-01",
- "2020-04-01",
- "2020-01-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "frontdoors/frontendEndpoints/customHttpsConfiguration",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-07-01",
- "2020-05-01",
- "2020-04-01",
- "2020-01-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "frontdoorWebApplicationFirewallPolicies",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-11-01",
- "2020-04-01",
- "2019-10-01",
- "2019-03-01",
- "2018-08-01"
- ],
- "defaultApiVersion": "2020-11-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "frontdoorWebApplicationFirewallManagedRuleSets",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-11-01",
- "2020-04-01",
- "2019-10-01",
- "2019-03-01"
- ],
- "defaultApiVersion": "2020-11-01",
- "capabilities": "None"
- },
- {
- "resourceType": "networkExperimentProfiles",
- "locations": [
- "global",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "West US 2",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2019-11-01"
- ],
- "defaultApiVersion": "2019-11-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/bareMetalTenants",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01",
- "2018-08-01",
- "2018-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "bastionHosts",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-04-01",
- "2019-02-01",
- "2018-12-01",
- "2018-11-01",
- "2018-10-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureBastionHostService"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "BrkBastionHost",
- "sourceMdmNamespace": "BrkBastion"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureBastionHostService",
- "onbehalfSupportedLogCategories": [
- "BastionAuditLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "virtualRouters",
- "locations": [
- "UAE North",
- "Australia Central 2",
- "UAE Central",
- "Germany North",
- "Central India",
- "Korea South",
- "Switzerland North",
- "Switzerland West",
- "Japan West",
- "France South",
- "South Africa West",
- "West India",
- "Canada East",
- "South India",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "South Africa North",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Brazil South",
- "Japan East",
- "UK West",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West Central US",
- "South Central US",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "UK South",
- "East US 2",
- "West US 2",
- "North Central US",
- "Canada Central",
- "France Central",
- "Central US"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01",
- "2019-11-01",
- "2019-09-01",
- "2019-08-01",
- "2019-07-01"
- ],
- "defaultApiVersion": "2020-04-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureERShoeboxProd",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networkVirtualAppliances",
- "locations": [
- "UAE North",
- "Australia Central 2",
- "UAE Central",
- "Germany North",
- "Central India",
- "Korea South",
- "Switzerland North",
- "Switzerland West",
- "Japan West",
- "France South",
- "South Africa West",
- "West India",
- "Canada East",
- "South India",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "South Africa North",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Brazil South",
- "Japan East",
- "UK West",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West Central US",
- "South Central US",
- "Australia East",
- "Australia Central",
- "Australia Southeast",
- "UK South",
- "East US 2",
- "West US 2",
- "North Central US",
- "Canada Central",
- "France Central",
- "Central US"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-12-01"
- ],
- "defaultApiVersion": "2020-04-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureHybrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureERShoeboxProd",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ipAllocations",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/commitInternalAzureNetworkManagerConfiguration",
- "locations": [
- "West Central US",
- "North Central US",
- "West US",
- "West Europe",
- "UAE Central",
- "Germany North",
- "East US",
- "West India",
- "East US 2",
- "Australia Central",
- "Australia Central 2",
- "South Africa West",
- "Brazil South",
- "UK West",
- "North Europe",
- "Central US",
- "UAE North",
- "Germany West Central",
- "Switzerland West",
- "East Asia",
- "Jio India West",
- "South Africa North",
- "UK South",
- "South India",
- "Australia Southeast",
- "France South",
- "West US 2",
- "Japan West",
- "Norway East",
- "France Central",
- "West US 3",
- "Central India",
- "Korea South",
- "Brazil Southeast",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Norway West",
- "Australia East",
- "Japan East",
- "Canada East",
- "Canada Central",
- "Switzerland North"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01",
- "2019-12-01",
- "2019-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/internalAzureVirtualNetworkManagerOperation",
- "locations": [
- "West Central US",
- "North Central US",
- "West US",
- "West Europe",
- "UAE Central",
- "Germany North",
- "East US",
- "West India",
- "East US 2",
- "Australia Central",
- "Australia Central 2",
- "South Africa West",
- "Brazil South",
- "UK West",
- "North Europe",
- "Central US",
- "UAE North",
- "Germany West Central",
- "Switzerland West",
- "East Asia",
- "Jio India West",
- "South Africa North",
- "UK South",
- "South India",
- "Australia Southeast",
- "France South",
- "West US 2",
- "Japan West",
- "Norway East",
- "France Central",
- "West US 3",
- "Central India",
- "Korea South",
- "Brazil Southeast",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Norway West",
- "Australia East",
- "Japan East",
- "Canada East",
- "Canada Central",
- "Switzerland North"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "networkVirtualApplianceSkus",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-11-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-04-01",
- "2020-03-01"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-09-01",
- "trafficmanagerprofiles": "2018-08-01",
- "secureGateways": "2018-04-01",
- "azureFirewalls": "2018-06-01",
- "frontdoors": "2019-04-01",
- "expressRouteCircuits": "2019-04-01",
- "bastionHosts": "2019-08-01",
- "networkWatchers/connectionMonitors": "2017-09-01",
- "vpnGateways": "2019-11-01",
- "p2SVpnGateways": "2019-11-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "AppGWT",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "2cf9eb86-36b5-49dc-86ae-9a63135dfa8c"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Web",
- "namespace": "Microsoft.Web",
- "authorization": {
- "applicationId": "abfa0a7c-a6b6-4736-8310-5855508787cd",
- "roleDefinitionId": "f47ed98b-b063-4a5b-9e10-4b9b44fa7735"
- },
- "resourceTypes": [
- {
- "resourceType": "publishingUsers",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ishostnameavailable",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validate",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "isusernameavailable",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "generateGithubAccessTokenForAppserviceCLI",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "East US",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "West Europe",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sourceControls",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "availableStacks",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "webAppStacks",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/webAppStacks",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "functionAppStacks",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/functionAppStacks",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "staticSites",
- "locations": [
- "West US 2",
- "Central US",
- "East US 2",
- "West Europe",
- "East Asia"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-12-01-preview",
- "2019-08-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2016-03-01",
- "staticSites": "2019-08-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "id",
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "WAWS Shoebox",
- "sourceMdmNamespace": "Microsoft/Web/StaticSites"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/previewStaticSiteWorkflowFile",
- "locations": [
- "West US 2",
- "Central US",
- "East US 2",
- "West Europe",
- "East Asia"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-12-01-preview",
- "2019-08-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "staticSites/userProvidedFunctionApps",
- "locations": [
- "West US 2",
- "Central US",
- "East US 2",
- "West Europe",
- "East Asia"
- ],
- "apiVersions": [
- "2020-12-01"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "staticSites/builds",
- "locations": [
- "West US 2",
- "Central US",
- "East US 2",
- "West Europe",
- "East Asia"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-12-01-preview",
- "2019-08-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "staticSites/builds/userProvidedFunctionApps",
- "locations": [
- "West US 2",
- "Central US",
- "East US 2",
- "West Europe",
- "East Asia"
- ],
- "apiVersions": [
- "2020-12-01"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "listSitesAssignedToHostName",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/getNetworkPolicies",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "France Central",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2016-08-01"
- ],
- "defaultApiVersion": "2018-02-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US 2",
- "East US 2",
- "East US",
- "UK South",
- "Southeast Asia",
- "North Europe",
- "Japan East",
- "West Europe",
- "East Asia",
- "West US",
- "Australia East",
- "Brazil South",
- "Central US",
- "Japan West",
- "Central India",
- "Canada East",
- "Korea Central",
- "France Central",
- "West India",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-12-01-preview",
- "2019-08-01",
- "2019-01-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01"
- ],
- "defaultApiVersion": "2019-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US 2",
- "East US 2",
- "East US",
- "UK South",
- "Southeast Asia",
- "North Europe",
- "Japan East",
- "West Europe",
- "East Asia",
- "West US",
- "Australia East",
- "Brazil South",
- "Central US",
- "Japan West",
- "Central India",
- "Canada East",
- "Korea Central",
- "France Central",
- "West India",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-12-01-preview",
- "2019-08-01",
- "2019-01-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01"
- ],
- "defaultApiVersion": "2019-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/networkConfig",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/slots/networkConfig",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/hostNameBindings",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/slots/hostNameBindings",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-08-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "certificates",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serverFarms",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "portal": {
- "kinds": [
- {
- "kind": "entitlement",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "functionapp",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/DynamicAppServicePlan.svg"
- }
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.mdmId",
- "metrics": {
- "metricsFilterPathSelector": "sku.tier",
- "mdmInfo": [
- {
- "sourceMdmAccount": "WAWS Shoebox",
- "sourceMdmNamespace": "Microsoft/Web/AppServicePlans"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sites",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-08-01",
- "2016-03-01",
- "2015-11-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2015-01-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "portal": {
- "kinds": [
- {
- "kind": "gateway",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "microservice",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "apiApp",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "api",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/apiapps.svg"
- },
- {
- "kind": "api,entitlement",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/apiapps.svg"
- },
- {
- "kind": "entitlement",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webapp.svg",
- "blade": {
- "name": "EntitlementAppBlade",
- "extension": "WebsitesExtension"
- }
- },
- {
- "kind": "mobileapp",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/mobileapps.svg"
- },
- {
- "kind": "mobileapp,entitlement",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/mobileapps.svg",
- "blade": {
- "name": "EntitlementAppBlade",
- "extension": "WebsitesExtension"
- }
- },
- {
- "kind": "webjob",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webjobs.svg"
- },
- {
- "kind": "webjob,entitlement",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webjobs.svg",
- "blade": {
- "name": "EntitlementAppBlade",
- "extension": "WebsitesExtension"
- }
- },
- {
- "kind": "functionapp",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/Functions.svg",
- "blade": {
- "name": "FunctionsIFrameBlade",
- "extension": "WebsitesExtension"
- }
- },
- {
- "kind": "functionappdev",
- "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/Functions.svg",
- "blade": {
- "name": "FunctionsIFrameBlade",
- "extension": "WebsitesExtension"
- }
- }
- ]
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sites/slots",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-08-01",
- "2016-03-01",
- "2015-11-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2015-01-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "portal": {
- "kinds": [
- {
- "kind": "microservice",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "apiApp",
- "browseConfig": {
- "visibility": "hidden"
- }
- },
- {
- "kind": "gateway",
- "browseConfig": {
- "visibility": "hidden"
- }
- }
- ]
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "runtimes",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "recommendations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceHealthMetadata",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "georegions",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/premieraddons",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "hostingEnvironments",
- "locations": [
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Central US",
- "West US 3",
- "South Africa North",
- "West US 2",
- "East US 2",
- "UK South",
- "Southeast Asia",
- "North Europe",
- "Japan East",
- "East Asia",
- "West US",
- "Australia East",
- "Brazil South",
- "Central US",
- "Japan West",
- "Central India",
- "Canada East",
- "Korea Central",
- "France Central",
- "West India",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2019-02-01",
- "2019-01-01",
- "2018-11-01",
- "2018-08-01",
- "2018-05-01-preview",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2016-03-01",
- "hostingEnvironments": "2019-01-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "id",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Web",
- "onbehalfSupportedLogCategories": [
- "AppServiceEnvironmentPlatformLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "hostingEnvironments/multiRolePools",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2019-02-01",
- "2018-11-01",
- "2018-08-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.mdmId",
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "WAWS Shoebox",
- "sourceMdmNamespace": "Microsoft/Web/AppServiceEnvironments"
- }
- ]
- }
- }
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "hostingEnvironments/workerPools",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2019-02-01",
- "2018-11-01",
- "2018-08-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.mdmId",
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "WAWS Shoebox",
- "sourceMdmNamespace": "Microsoft/Web/AppServiceEnvironments"
- }
- ]
- }
- }
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "kubeEnvironments",
- "locations": [
- "North Central US (Stage)",
- "West Central US",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2019-02-01",
- "2019-01-01",
- "2018-11-01",
- "2018-08-01",
- "2018-05-01-preview",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-09-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2017-08-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "metadata": {},
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "deploymentLocations",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deletedSites",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deletedSites",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "East Asia",
- "Japan East",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "defaultApiVersion": "2018-02-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ishostingenvironmentnameavailable",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-11-01",
- "2016-08-01",
- "2016-03-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "defaultApiVersion": "2018-02-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "connections",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Brazil Southeast",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-01-preview",
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "customApis",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Brazil Southeast",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-01-preview",
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-07-01-preview",
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/listWsdlInterfaces",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/extractApiDefinitionFromWsdl",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedApis",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Brazil Southeast",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-01-preview",
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/runtimes",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/apiOperations",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Brazil Southeast",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-01-preview",
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "connectionGateways",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/connectionGatewayInstallations",
- "locations": [
- "North Central US",
- "Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "East US 2",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Brazil Southeast",
- "South India",
- "Central India",
- "West India",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "South Africa West",
- "South Africa North",
- "UAE Central",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Germany North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-03-01-preview",
- "2016-06-01",
- "2015-08-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingMeters",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "verifyHostingEnvironmentVnet",
- "locations": [
- "Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "East Asia",
- "East US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "West India",
- "Central India",
- "South India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "UK West",
- "UK South",
- "West US 2",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "East Asia (Stage)",
- "Central US (Stage)",
- "North Central US (Stage)",
- "France Central",
- "South Africa North",
- "West US 3",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-03-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "serverFarms/eventGridFilters",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway West",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "South Africa West",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/eventGridFilters",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway West",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "South Africa West",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-08-01",
- "2016-03-01",
- "2015-11-01",
- "2015-08-01-preview",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2015-01-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites/slots/eventGridFilters",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway West",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "South Africa West",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-08-01",
- "2016-03-01",
- "2015-11-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2015-01-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostingEnvironments/eventGridFilters",
- "locations": [
- "West US",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada East",
- "UK West",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US 2",
- "East US 2",
- "UK South",
- "Southeast Asia",
- "North Europe",
- "Japan East",
- "East Asia",
- "Australia East",
- "Central US",
- "Japan West",
- "Central India",
- "Korea Central",
- "France Central",
- "West India",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2019-02-01",
- "2019-01-01",
- "2018-11-01",
- "2018-08-01",
- "2018-05-01-preview",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "serverFarms/firstPartyApps",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "East US",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway West",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "West Europe",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "South Africa West"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "serverFarms/firstPartyApps/keyVaultSettings",
- "locations": [
- "South Central US",
- "MSFT West US",
- "MSFT East US",
- "MSFT East Asia",
- "MSFT North Europe",
- "East US 2 (Stage)",
- "Central US (Stage)",
- "South Africa North",
- "West US 3",
- "West US",
- "Australia East",
- "Brazil South",
- "Southeast Asia",
- "Central US",
- "Japan West",
- "Central India",
- "UK South",
- "Canada East",
- "Korea Central",
- "France Central",
- "North Europe",
- "West US 2",
- "East US",
- "West India",
- "East US 2",
- "Australia Central",
- "Germany West Central",
- "Norway West",
- "Norway East",
- "UAE North",
- "Switzerland North",
- "North Central US",
- "UK West",
- "Australia Southeast",
- "Korea South",
- "Canada Central",
- "West Europe",
- "South India",
- "West Central US",
- "East Asia (Stage)",
- "North Central US (Stage)",
- "East Asia",
- "Japan East",
- "South Africa West"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-11-01",
- "2018-02-01",
- "2017-08-01",
- "2016-09-01",
- "2016-03-01",
- "2015-08-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-02-01",
- "2014-11-01",
- "2014-06-01",
- "2014-04-01-preview",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workerApps",
- "locations": [
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2021-02-01",
- "2021-01-01",
- "2020-12-01"
- ],
- "defaultApiVersion": "2021-02-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "dnsSuffix": "azurewebsites.net",
- "Microsoft.managedIdentity": {
- "applicationId": "abfa0a7c-a6b6-4736-8310-5855508787cd"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.defaultHostName",
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "WAWS Shoebox",
- "sourceMdmNamespace": "Microsoft/Web/WebApps"
- }
- ]
- },
- "logs": {
- "logFilterPathSelector": "kind",
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Web",
- "onbehalfSupportedLogCategories": [
- "FunctionAppLogs",
- "AppServiceHTTPLogs",
- "AppServiceFileAuditLogs",
- "AppServiceAuditLogs",
- "AppServiceConsoleLogs",
- "AppServicePlatformLogs",
- "AppServiceIPSecAuditLogs",
- "AppServiceAntivirusScanAuditLogs",
- "AppServiceAppLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "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": []
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId"
- }
- }
- },
- "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": [
- "2021-03-01",
- "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": [
- "2021-03-01",
- "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": [
- "2021-03-01",
- "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": [
- "2021-03-01",
- "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": [
- "2021-03-01",
- "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",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af"
- }
- },
- "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": []
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId"
- }
- }
- },
- "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",
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId"
- }
- }
- },
- "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": []
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.hostId"
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356"
- },
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.vmId",
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "AzComputeShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ManagedIdentity",
- "namespace": "Microsoft.ManagedIdentity",
- "resourceTypes": [
- {
- "resourceType": "Identities",
- "locations": [
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "Central India",
- "West India",
- "Jio India West",
- "South India",
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "North Europe",
- "West Europe",
- "UK West",
- "UK South",
- "Switzerland North",
- "Germany West Central",
- "Central US",
- "North Central US",
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "West US 2",
- "West US 3",
- "West Central US",
- "France Central",
- "Norway East"
- ],
- "apiVersions": [
- "2018-11-30",
- "2015-08-31-PREVIEW"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "userAssignedIdentities",
- "locations": [
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "Central India",
- "West India",
- "Jio India West",
- "South India",
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "North Europe",
- "West Europe",
- "UK West",
- "UK South",
- "Switzerland North",
- "Germany West Central",
- "Central US",
- "North Central US",
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "West US 2",
- "West US 3",
- "West Central US",
- "France Central",
- "Norway East"
- ],
- "apiVersions": [
- "2018-11-30",
- "2015-08-31-PREVIEW"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "South Africa North",
- "South Africa West",
- "UAE North",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "Central India",
- "West India",
- "Jio India West",
- "South India",
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "Korea South",
- "North Europe",
- "West Europe",
- "UK West",
- "UK South",
- "Switzerland North",
- "Germany West Central",
- "Central US",
- "North Central US",
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "West US 2",
- "West US 3",
- "West Central US",
- "France Central",
- "Norway East"
- ],
- "apiVersions": [
- "2018-11-30",
- "2015-08-31-PREVIEW"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OperationalInsights",
- "namespace": "Microsoft.OperationalInsights",
- "authorizations": [
- {
- "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77",
- "roleDefinitionId": "86695298-2eb9-48a7-9ec3-2fdb38b6878b"
- },
- {
- "applicationId": "ca7f3f0b-7d91-482c-8e09-c5d840d0eac5",
- "roleDefinitionId": "5d5a2e56-9835-44aa-93db-d2f19e155438"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview",
- "2017-04-26-preview",
- "2017-03-15-preview",
- "2017-03-03-preview",
- "2017-01-01-preview",
- "2015-11-01-preview",
- "2015-03-20"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-03-01-preview",
- "operations": "2020-03-01-preview"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.OperationalInsights",
- "onbehalfSupportedLogCategories": [
- "Audit"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "querypacks",
- "locations": [
- "West Central US",
- "East US",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "West US 2",
- "UK South",
- "Canada Central",
- "Central India",
- "Japan East",
- "Australia East",
- "Korea Central",
- "France Central",
- "Central US",
- "East US 2",
- "East Asia",
- "West US",
- "South Africa North",
- "North Central US",
- "Brazil South",
- "Switzerland North",
- "Norway East",
- "Australia Southeast",
- "Australia Central 2",
- "Germany West Central",
- "Switzerland West",
- "UAE Central",
- "UK West",
- "Brazil Southeast",
- "Japan West",
- "UAE North",
- "Australia Central",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2019-09-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview",
- "2017-04-26-preview",
- "2017-03-15-preview",
- "2017-03-03-preview",
- "2017-01-01-preview",
- "2015-11-01-preview",
- "2015-03-20"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview",
- "2017-04-26-preview",
- "2017-03-15-preview",
- "2017-03-03-preview",
- "2017-01-01-preview",
- "2015-11-01-preview",
- "2015-03-20"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/scopedPrivateLinkProxies",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-03-01-preview",
- "2019-08-01-preview",
- "2015-11-01-preview"
- ],
- "defaultApiVersion": "2020-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/query",
- "locations": [],
- "apiVersions": [
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/metadata",
- "locations": [],
- "apiVersions": [
- "2017-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/dataSources",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2015-11-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/linkedStorageAccounts",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/tables",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia East",
- "Australia Central",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2017-04-26-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/storageInsightConfigs",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia East",
- "Australia Central",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2017-04-26-preview",
- "2017-03-15-preview",
- "2017-03-03-preview",
- "2017-01-01-preview",
- "2015-11-01-preview",
- "2015-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageInsightConfigs",
- "locations": [],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2014-10-10"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "workspaces/linkedServices",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview",
- "2015-11-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "linkTargets",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2020-03-01-preview",
- "2015-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deletedWorkspaces",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview",
- "2015-11-01-preview",
- "2014-11-10"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central",
- "Australia Central 2",
- "UAE Central",
- "Brazil South",
- "UAE North",
- "Japan West",
- "Brazil Southeast",
- "Norway East",
- "Norway West",
- "France South",
- "South India"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/dataExports",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Australia Southeast",
- "West Central US",
- "Japan East",
- "UK South",
- "Central India",
- "Canada Central",
- "West US 2",
- "Australia Central",
- "Australia East",
- "France Central",
- "Korea Central",
- "North Europe",
- "Central US",
- "East Asia",
- "East US 2",
- "South Central US",
- "North Central US",
- "West US",
- "UK West",
- "South Africa North",
- "Brazil South"
- ],
- "apiVersions": [
- "2020-08-01",
- "2020-03-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77"
- },
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-03-01-preview",
- "workspaces": "2020-03-01-preview",
- "operations": "2020-03-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.OperationalInsights"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "OmsShoeboxMetrics",
- "sourceMdmNamespace": "OmsShoeboxMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Advisor",
- "namespace": "Microsoft.Advisor",
- "authorization": {
- "applicationId": "c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7",
- "roleDefinitionId": "8a63b04c-3731-409b-9765-f1175c047872"
- },
- "resourceTypes": [
- {
- "resourceType": "suppressions",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2017-04-19",
- "2017-03-31",
- "2016-07-12-preview",
- "2016-05-09-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "configurations",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2017-04-19",
- "2017-03-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "recommendations",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2017-04-19",
- "2017-03-31",
- "2016-07-12-preview",
- "2016-05-09-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "generateRecommendations",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2017-04-19",
- "2017-03-31",
- "2016-07-12-preview",
- "2016-05-09-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview",
- "2020-01-01",
- "2017-04-19",
- "2017-03-31",
- "2016-07-12-preview",
- "2016-05-09-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AlertsManagement",
- "namespace": "Microsoft.AlertsManagement",
- "authorizations": [
- {
- "applicationId": "3af5a1e8-2459-45cb-8683-bcd6cccbcc13",
- "roleDefinitionId": "b1309299-720d-4159-9897-6158a61aee41"
- },
- {
- "applicationId": "161a339d-b9f5-41c5-8856-6a6669acac64",
- "roleDefinitionId": "b61a6c11-d848-4eec-8c37-fb13ab7d5729"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "resourceHealthAlertRules",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2020-08-04-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "alerts",
- "locations": [],
- "apiVersions": [
- "2019-05-05-preview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-11-02-privatepreview",
- "2018-05-05-preview",
- "2018-05-05",
- "2017-11-15-privatepreview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "alertsSummary",
- "locations": [],
- "apiVersions": [
- "2019-05-05-preview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-05-05-preview",
- "2018-05-05",
- "2017-11-15-privatepreview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "smartGroups",
- "locations": [],
- "apiVersions": [
- "2019-05-05-preview",
- "2018-05-05-preview",
- "2018-05-05",
- "2017-11-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "smartDetectorAlertRules",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-04-01",
- "2019-06-01",
- "2019-03-01",
- "2018-02-01-privatepreview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrateFromSmartDetection",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "actionRules",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2019-05-05-preview",
- "2018-11-02-privatepreview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "alertsList",
- "locations": [],
- "apiVersions": [
- "2018-11-02-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "alertsSummaryList",
- "locations": [],
- "apiVersions": [
- "2018-11-02-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "alertsMetaData",
- "locations": [],
- "apiVersions": [
- "2019-05-05-preview",
- "2019-03-01-preview",
- "2019-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-05-05-preview",
- "2018-05-05",
- "2017-11-15-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ApiManagement",
- "namespace": "Microsoft.ApiManagement",
- "authorization": {
- "applicationId": "8602e328-9b72-4f2d-a4ae-1387d013a2b3",
- "roleDefinitionId": "e263b525-2e60-4418-b655-420bae0b172e"
- },
- "resourceTypes": [
- {
- "resourceType": "service",
- "locations": [
- "Central India",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "West Central US",
- "Norway East",
- "Switzerland North",
- "Korea South",
- "West India",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Brazil South",
- "East Asia",
- "South India",
- "Canada Central",
- "Canada East",
- "Australia Southeast",
- "Japan East",
- "North Central US",
- "Southeast Asia",
- "West US 2",
- "Central US",
- "UK South",
- "Australia East",
- "Japan West",
- "West US",
- "France Central",
- "South Central US",
- "East US 2",
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview",
- "2019-12-01-preview",
- "2019-12-01",
- "2019-01-01",
- "2018-06-01-preview",
- "2018-01-01",
- "2017-03-01",
- "2016-10-10",
- "2016-07-07",
- "2015-09-15",
- "2014-02-14"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "deletedServices",
- "locations": [
- "Central India",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "West Central US",
- "Norway East",
- "Switzerland North",
- "Korea South",
- "West India",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Brazil South",
- "East Asia",
- "South India",
- "Canada Central",
- "Canada East",
- "Australia Southeast",
- "Japan East",
- "North Central US",
- "Southeast Asia",
- "West US 2",
- "Central US",
- "UK South",
- "Australia East",
- "Japan West",
- "West US",
- "France Central",
- "South Central US",
- "East US 2",
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deletedServices",
- "locations": [
- "Central India",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "West Central US",
- "Norway East",
- "Switzerland North",
- "Korea South",
- "West India",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Brazil South",
- "East Asia",
- "South India",
- "Canada Central",
- "Canada East",
- "Australia Southeast",
- "Japan East",
- "North Central US",
- "Southeast Asia",
- "West US 2",
- "Central US",
- "UK South",
- "Australia East",
- "Japan West",
- "West US",
- "France Central",
- "South Central US",
- "East US 2",
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "validateServiceName",
- "locations": [],
- "apiVersions": [
- "2015-09-15",
- "2014-02-14"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkServiceNameAvailability",
- "locations": [],
- "apiVersions": [
- "2015-09-15",
- "2014-02-14"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Central India",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "West Central US",
- "Norway East",
- "Switzerland North",
- "Korea South",
- "West India",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Brazil South",
- "East Asia",
- "South India",
- "Canada Central",
- "Canada East",
- "Australia Southeast",
- "Japan East",
- "North Central US",
- "Southeast Asia",
- "West US 2",
- "Central US",
- "UK South",
- "Australia East",
- "Japan West",
- "West US",
- "France Central",
- "South Central US",
- "East US 2",
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview",
- "2019-12-01-preview",
- "2019-12-01",
- "2019-01-01",
- "2018-06-01-preview",
- "2018-01-01",
- "2017-03-01",
- "2016-10-10",
- "2016-07-07",
- "2015-09-15",
- "2014-02-14"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "reportFeedback",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview",
- "2019-12-01-preview",
- "2019-12-01",
- "2019-01-01",
- "2018-06-01-preview",
- "2018-01-01",
- "2017-03-01",
- "2016-10-10",
- "2016-07-07",
- "2015-09-15",
- "2014-02-14"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkFeedbackRequired",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview",
- "2019-12-01-preview",
- "2019-12-01",
- "2019-01-01",
- "2018-06-01-preview",
- "2018-01-01",
- "2017-03-01",
- "2016-10-10",
- "2016-07-07",
- "2015-09-15",
- "2014-02-14"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01",
- "2020-06-01-preview",
- "2019-12-01-preview",
- "2019-12-01",
- "2019-01-01",
- "2018-06-01-preview",
- "2018-01-01",
- "2017-03-01",
- "2016-10-10",
- "2016-07-07",
- "2015-09-15",
- "2014-02-14"
- ],
- "defaultApiVersion": "2019-12-01",
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "ApiManagement"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "ApiManagementProd",
- "sourceMdmNamespace": "Proxy"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "ApiManagement",
- "onbehalfSupportedLogCategories": [
- "GatewayLogs"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "getDomainOwnershipIdentifier",
- "locations": [
- "Central India",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "West Central US",
- "Norway East",
- "Switzerland North",
- "Korea South",
- "West India",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Brazil South",
- "East Asia",
- "South India",
- "Canada Central",
- "Canada East",
- "Australia Southeast",
- "Japan East",
- "North Central US",
- "Southeast Asia",
- "West US 2",
- "Central US",
- "UK South",
- "Australia East",
- "Japan West",
- "West US",
- "France Central",
- "South Central US",
- "East US 2",
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "8602e328-9b72-4f2d-a4ae-1387d013a2b3"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-12-01",
- "operations": "2019-12-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "ApiManagement"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "ApiManagementProd",
- "sourceMdmNamespace": "Proxy"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "ApiManagement",
- "onbehalfSupportedLogCategories": [
- "GatewayLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Authorization",
- "namespace": "Microsoft.Authorization",
- "authorizations": [
- {
- "applicationId": "de926fbf-e23b-41f9-ae15-c943a9cfa630"
- },
- {
- "applicationId": "01fc33a7-78ba-4d2f-a4b7-768e336e890e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "roleAssignments",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-08-01-preview",
- "2020-04-01-preview",
- "2020-03-01-preview",
- "2019-04-01-preview",
- "2018-12-01-preview",
- "2018-09-01-preview",
- "2018-07-01",
- "2018-01-01-preview",
- "2017-10-01-preview",
- "2017-09-01",
- "2017-05-01",
- "2016-07-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01-preview",
- "2014-10-01-preview",
- "2014-07-01-preview",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2015-07-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "roleDefinitions",
- "locations": [],
- "apiVersions": [
- "2018-07-01",
- "2018-01-01-preview",
- "2017-09-01",
- "2017-05-01",
- "2016-07-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01-preview",
- "2014-10-01-preview",
- "2014-07-01-preview",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-05-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2015-07-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "classicAdministrators",
- "locations": [],
- "apiVersions": [
- "2015-06-01",
- "2015-05-01-preview",
- "2014-10-01-preview",
- "2014-07-01-preview",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "permissions",
- "locations": [],
- "apiVersions": [
- "2018-07-01",
- "2018-01-01-preview",
- "2017-05-01",
- "2016-07-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01-preview",
- "2014-10-01-preview",
- "2014-07-01-preview",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-05-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2015-07-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "denyAssignments",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview",
- "2018-07-01-preview",
- "2018-07-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "locks",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-09-01",
- "2015-06-01",
- "2015-05-01-preview",
- "2015-01-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-09-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-05-01",
- "2016-07-01",
- "2015-07-01",
- "2015-01-01",
- "2014-10-01-preview",
- "2014-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "policyDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-08-01",
- "2020-03-01",
- "2019-09-01",
- "2019-06-01",
- "2019-01-01",
- "2018-05-01",
- "2018-03-01",
- "2016-12-01",
- "2016-04-01",
- "2015-10-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-12-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "policySetDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-08-01",
- "2020-03-01",
- "2019-09-01",
- "2019-06-01",
- "2019-01-01",
- "2018-05-01",
- "2018-03-01",
- "2017-06-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "policyAssignments",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-08-01",
- "2020-03-01",
- "2019-09-01",
- "2019-06-01",
- "2019-01-01",
- "2018-05-01",
- "2018-03-01",
- "2017-06-01-preview",
- "2016-12-01",
- "2016-04-01",
- "2015-10-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-03-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-12-01"
- }
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsExtension"
- },
- {
- "resourceType": "policyExemptions",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "dataAliases",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-03-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providerOperations",
- "locations": [],
- "apiVersions": [
- "2018-07-01",
- "2018-01-01-preview",
- "2017-05-01",
- "2016-07-01",
- "2015-07-01-preview",
- "2015-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-05-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2015-07-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "elevateAccess",
- "locations": [],
- "apiVersions": [
- "2017-05-01",
- "2016-07-01",
- "2015-07-01",
- "2015-06-01",
- "2015-05-01-preview",
- "2014-10-01-preview",
- "2014-07-01-preview",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkAccess",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "findOrphanRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2019-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "roleAssignmentsUsageMetrics",
- "locations": [],
- "apiVersions": [
- "2019-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "privateLinkAssociations",
- "locations": [],
- "apiVersions": [
- "2020-05-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "resourceManagementPrivateLinks",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-05-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operationStatus",
- "locations": [],
- "apiVersions": [
- "2020-05-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.managedIdentity": {
- "applicationId": "1dcb1bc7-c721-498e-b2fa-bcddcea44171"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Batch",
- "namespace": "Microsoft.Batch",
- "authorization": {
- "applicationId": "ddbf3205-c6bd-46ae-8127-60eb93363864",
- "roleDefinitionId": "b7f84953-1d03-4eab-9ea4-45f065258ff8"
- },
- "resourceTypes": [
- {
- "resourceType": "batchAccounts",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01",
- "2017-01-01",
- "2015-12-01",
- "2015-09-01",
- "2015-07-01",
- "2014-05-01-privatepreview"
- ],
- "defaultApiVersion": "2021-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "batchAccounts/pools",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2021-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "batchAccounts/certificates",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01",
- "2017-01-01",
- "2015-12-01",
- "2015-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01",
- "2017-01-01",
- "2015-12-01",
- "2015-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/quotas",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01",
- "2017-01-01",
- "2015-12-01",
- "2015-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01"
- ],
- "defaultApiVersion": "2021-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-09-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/accountOperationResults",
- "locations": [
- "West Europe",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "Brazil South",
- "North Europe",
- "Central US",
- "East Asia",
- "Japan East",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "Korea Central",
- "Southeast Asia",
- "South Central US",
- "Australia East",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Germany West Central",
- "Switzerland North",
- "Norway East",
- "Brazil Southeast",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-01",
- "2020-05-01",
- "2020-03-01-preview",
- "2020-03-01",
- "2019-08-01",
- "2019-04-01",
- "2018-12-01",
- "2017-09-01",
- "2017-05-01",
- "2017-01-01",
- "2015-12-01",
- "2015-09-01",
- "2015-07-01",
- "2014-05-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureBatch"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "BatchProdShoebox",
- "sourceMdmNamespace": "BatchShoeboxMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureBatch",
- "onbehalfSupportedLogCategories": [
- "ServiceLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "ddbf3205-c6bd-46ae-8127-60eb93363864",
- "delegationAppIds": [
- "ddbf3205-c6bd-46ae-8127-60eb93363864"
- ]
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cdn",
- "namespace": "Microsoft.Cdn",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "profiles",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "metadata": {
- "portal": {
- "kinds": [
- {
- "kind": "frontdoor",
- "icon": "https://afdxportalprod.blob.core.windows.net/portalicons/frontdoor.svg",
- "blade": {
- "name": "ProfileBlade",
- "extension": "Microsoft_Azure_Cdn"
- }
- },
- {
- "kind": "cdn",
- "icon": "https://afdxportalprod.blob.core.windows.net/portalicons/cdn.svg",
- "blade": {
- "name": "ProfileBlade",
- "extension": "Microsoft_Azure_Cdn"
- }
- }
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-10-12"
- },
- "metrics": {
- "metricsFilterPathSelector": "sku.name",
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureFrontdoorShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "logFilterPathSelector": "sku.name",
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor",
- "onbehalfSupportedLogCategories": [
- "AzureCdnAccessLog",
- "FrontDoorHealthProbeLog",
- "FrontDoorAccessLog",
- "FrontDoorWebApplicationFirewallLog"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "profiles/endpoints",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-10-02"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureCdn",
- "onbehalfSupportedLogCategories": [
- "CoreAnalytics"
- ]
- }
- ]
- },
- "regionLess": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "profiles/endpoints/origins",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/endpoints/origingroups",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31"
- ],
- "defaultApiVersion": "2019-12-31",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/endpoints/customdomains",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/endpointresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/endpointresults/originresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/endpointresults/origingroupresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31"
- ],
- "defaultApiVersion": "2019-12-31",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/endpointresults/customdomainresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "checkResourceUsage",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "validateProbe",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "edgenodes",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2020-03-31",
- "2019-12-31",
- "2019-06-15-preview",
- "2019-04-15",
- "2018-04-02",
- "2017-10-12",
- "2017-04-02",
- "2016-10-02",
- "2016-04-02",
- "2015-06-01"
- ],
- "defaultApiVersion": "2017-10-12",
- "capabilities": "None"
- },
- {
- "resourceType": "CdnWebApplicationFirewallPolicies",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2019-06-15-preview"
- ],
- "defaultApiVersion": "2019-06-15-preview",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-06-15-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureFrontdoorShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor",
- "onbehalfSupportedLogCategories": [
- "WebApplicationFirewallLogs"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "CdnWebApplicationFirewallManagedRuleSets",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-04-15",
- "2019-06-15-preview"
- ],
- "defaultApiVersion": "2019-06-15-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/afdendpoints",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "profiles/afdendpoints/routes",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/customdomains",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/origingroups",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/origingroups/origins",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/rulesets",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/rulesets/rules",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/secrets",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "profiles/securitypolicies",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/afdendpointresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/afdendpointresults/routeresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/customdomainresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/origingroupresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/origingroupresults/originresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/rulesetresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/rulesetresults/ruleresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/secretresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults/profileresults/securitypoliciesresults",
- "locations": [
- "global",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "West Europe",
- "West India",
- "West US"
- ],
- "apiVersions": [
- "2020-09-01"
- ],
- "defaultApiVersion": "2020-09-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-10-02",
- "CdnWebApplicationFirewallPolicies": "2019-06-15-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureFrontdoor"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureFrontdoorShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CertificateRegistration",
- "namespace": "Microsoft.CertificateRegistration",
- "authorization": {
- "applicationId": "f3c21649-0979-4721-ac85-b0216b2cf413",
- "roleDefinitionId": "933fba7e-2ed3-4da8-973d-8bd8298a9b40"
- },
- "resourceTypes": [
- {
- "resourceType": "certificateOrders",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-08-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "certificateOrders/certificates",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-08-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validateCertificateRegistrationInformation",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-08-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-08-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicCompute",
- "namespace": "Microsoft.ClassicCompute",
- "resourceTypes": [
- {
- "resourceType": "domainNames",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2021-02-01",
- "2020-02-01",
- "2018-06-01",
- "2017-11-15",
- "2017-11-01",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "CrossResourceGroupResourceMove, SupportsLocation"
- },
- {
- "resourceType": "domainNames/internalLoadBalancers",
- "locations": [],
- "apiVersions": [
- "2017-11-01",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkDomainNameAvailability",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/slots",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Norway East",
- "Jio India West",
- "West US 3",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-02-01",
- "2018-06-01",
- "2017-11-15",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/slots/roles",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/slots/roles/metricDefinitions",
- "locations": [],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/slots/roles/metrics",
- "locations": [
- "North Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Canada East",
- "West US",
- "West US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Central US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "Japan East",
- "Japan West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "Korea Central",
- "Korea South",
- "France Central",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualMachines",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "CrossResourceGroupResourceMove, SupportsLocation"
- },
- {
- "resourceType": "capabilities",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/capabilities",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "domainNames/serviceCertificates",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "quotas",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualMachines/diagnosticSettings",
- "locations": [
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3",
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "West US 2",
- "West Central US",
- "South India",
- "Central India",
- "West India",
- "Korea Central",
- "Korea South",
- "East US 2 (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualMachines/metricDefinitions",
- "locations": [
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "West US 2",
- "West Central US",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "South India",
- "Central India",
- "West India",
- "Korea Central",
- "Korea South",
- "Jio India West",
- "East US 2 (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualMachines/metrics",
- "locations": [
- "North Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Canada East",
- "West US",
- "West US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Central US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "Japan East",
- "Japan West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "Korea Central",
- "Korea South",
- "France Central",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceTypes",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "moveSubscriptionResources",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validateSubscriptionMoveAvailability",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationStatuses",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operatingSystems",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operatingSystemFamilies",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2014-06-01",
- "operations": "2017-04-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "AzComputeShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicNetwork",
- "namespace": "Microsoft.ClassicNetwork",
- "resourceTypes": [
- {
- "resourceType": "virtualNetworks",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Jio India West",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2017-11-15",
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "SupportsLocation"
- },
- {
- "resourceType": "virtualNetworks/virtualNetworkPeerings",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "East US 2 (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2016-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "virtualNetworks/remoteVirtualNetworkPeeringProxies",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "East US 2 (Stage)",
- "North Central US (Stage)"
- ],
- "apiVersions": [
- "2016-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservedIps",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Jio India West",
- "Australia Central",
- "Germany West Central",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "SupportsLocation"
- },
- {
- "resourceType": "quotas",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "gatewaySupportedDevices",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01-beta",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "networkSecurityGroups",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Jio India West",
- "Australia Central",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01"
- ],
- "defaultApiVersion": "2015-06-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.networkSecurityGroupId",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "LNMAgentService",
- "onbehalfSupportedLogCategories": [
- "NetworkSecurityGroupFlowEvent"
- ]
- }
- ],
- "categories": [
- {
- "Name": "NetworkSecurityGroupFlowEvent",
- "requiredFeatures": [
- "Microsoft.Network/AllowNsgFlowLogging"
- ],
- "excludeFromEventHub": true
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsLocation"
- },
- {
- "resourceType": "capabilities",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "expressRouteCrossConnections",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "expressRouteCrossConnections/peerings",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-10-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2015-06-01"
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicStorage",
- "namespace": "Microsoft.ClassicStorage",
- "resourceTypes": [
- {
- "resourceType": "storageAccounts",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01-beta",
- "2014-04-01",
- "2014-01-01"
- ],
- "defaultApiVersion": "2014-06-01",
- "capabilities": "CrossResourceGroupResourceMove, SupportsLocation"
- },
- {
- "resourceType": "quotas",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkStorageAccountAvailability",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/services",
- "locations": [
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "West US 2",
- "West Central US",
- "Jio India West",
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/services/diagnosticSettings",
- "locations": [
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "West US 2",
- "West Central US",
- "Jio India West",
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/services/metricDefinitions",
- "locations": [],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/services/metrics",
- "locations": [
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/metricDefinitions",
- "locations": [],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/metrics",
- "locations": [
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "East US 2 (Stage)",
- "North Central US (Stage)",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "North Central US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "capabilities",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/blobServices",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/tableServices",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/fileServices",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/queueServices",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "disks",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "images",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "vmImages",
- "locations": [],
- "apiVersions": [
- "2016-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/vmImages",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01-beta",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "publicImages",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "osImages",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "osPlatformImages",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2016-04-01-beta",
- "2016-04-01",
- "2015-12-01",
- "2015-06-01",
- "2014-06-01",
- "2014-04-01",
- "2014-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-11-01",
- "operations": "2016-11-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "XStoreShoebox",
- "sourceMdmNamespace": "XStore"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CognitiveServices",
- "namespace": "Microsoft.CognitiveServices",
- "authorizations": [
- {
- "applicationId": "7d312290-28c8-473c-a0ed-8e53749b6d6d",
- "roleDefinitionId": "5cb87f79-a7c3-4a95-9414-45b65974b51b"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkSkuAvailability",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkDomainAvailability",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18",
- "2016-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/privateLinkResources",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/privateEndpointConnections",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/privateEndpointConnectionProxies",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30",
- "2017-04-18"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deletedAccounts",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/resourceGroups",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/resourceGroups/deletedAccounts",
- "locations": [
- "Global",
- "Australia East",
- "Brazil South",
- "West US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "West Central US",
- "South Central US",
- "East US",
- "East US 2",
- "Canada Central",
- "Japan East",
- "Central India",
- "UK South",
- "Japan West",
- "Korea Central",
- "France Central",
- "North Central US",
- "Central US",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Switzerland West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-30"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-04-18"
- },
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftCognitiveServices"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "CognitiveServicesShoebox",
- "sourceMdmNamespace": "Microsoft.CognitiveServices"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "mdsEnvironment": "prod",
- "serviceIdentity": "MicrosoftCognitiveServices",
- "onbehalfSupportedLogCategories": [
- "Audit",
- "RequestResponse",
- "Trace"
- ]
- }
- ]
- },
- "regionless": true
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "7d312290-28c8-473c-a0ed-8e53749b6d6d"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DocumentDB",
- "namespace": "Microsoft.DocumentDB",
- "authorizations": [
- {
- "applicationId": "57c0fc58-a83a-41d0-8ae9-08952659bdfd",
- "roleDefinitionId": "FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"
- },
- {
- "applicationId": "36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9",
- "roleDefinitionId": "D5A795DE-916D-4818-B015-33C9E103E39B"
- },
- {
- "applicationId": "a232010e-820c-4083-83bb-3ace5fc29d0b",
- "roleDefinitionId": "D5A795DE-916D-4818-B015-33C9E103E39B"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "databaseAccounts",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "defaultApiVersion": "2020-06-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a232010e-820c-4083-83bb-3ace5fc29d0b"
- },
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftAzureCosmosDB",
- "onbehalfSupportedLogCategories": [
- "DataPlaneRequests",
- "MongoRequests"
- ]
- }
- ]
- },
- "mdsMappingResourceIdOverridePathSelector": "name"
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "databaseAccountNames",
- "locations": [],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operationsStatus",
- "locations": [],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-04-08"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E",
- "kinds": [
- {
- "kind": "Parse",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "MongoDB",
- "blade": {
- "name": "NonDocumentDBAccountBlade",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- },
- {
- "kind": "GlobalDocumentDB",
- "blade": {
- "name": "DatabaseAccountBladeForGlobalDb",
- "extension": "Microsoft_Azure_DocumentDB"
- }
- }
- ]
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-15",
- "2021-05-01-preview",
- "2021-04-15",
- "2021-04-01-preview",
- "2021-03-15",
- "2021-03-01-preview",
- "2021-01-15",
- "2020-09-01",
- "2020-06-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2019-12-12",
- "2019-08-01-preview",
- "2019-08-01",
- "2016-03-31",
- "2016-03-19",
- "2015-11-06",
- "2015-04-08",
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/restorableDatabaseAccounts",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-01-preview",
- "2021-04-01-preview",
- "2021-03-01-preview",
- "2020-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "restorableDatabaseAccounts",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-06-15",
- "2021-05-01-preview",
- "2021-04-01-preview",
- "2021-03-01-preview",
- "2020-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "cassandraClusters",
- "locations": [
- "West Central US",
- "North Central US",
- "Central US",
- "Brazil South",
- "Canada Central",
- "West US 2",
- "East US 2",
- "France Central",
- "Japan East",
- "Southeast Asia",
- "Central India",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "North Europe",
- "West Europe",
- "Norway East",
- "Korea Central",
- "Australia East",
- "Canada East",
- "East Asia",
- "Germany West Central",
- "UK South",
- "Australia Central",
- "Australia Southeast",
- "Japan West",
- "Korea South",
- "South India",
- "West India",
- "West US",
- "South Central US",
- "East US",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01-preview",
- "2021-04-01-preview",
- "2021-03-01-preview"
- ],
- "defaultApiVersion": "2021-03-01-preview",
- "capabilities": "SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-03-31",
- "operations": "2016-03-31"
- },
- "mdsMappingResourceIdOverridePathSelector": "name",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftAzureCosmosDB"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "DocumentDB",
- "sourceMdmNamespace": "DocDB"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EventGrid",
- "namespace": "Microsoft.EventGrid",
- "authorizations": [
- {
- "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7",
- "roleDefinitionId": "7FE036D8-246F-48BF-A78F-AB3EE699C8F3"
- },
- {
- "applicationId": "823c0a78-5de0-4445-a7f5-c2f42d7dc89b"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/eventSubscriptions",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "eventSubscriptions",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "topics",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "domains",
- "locations": [
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2018-09-15-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "domains/topics",
- "locations": [
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2018-09-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "topicTypes",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/topicTypes",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "extensionTopics",
- "locations": [
- "West US 2",
- "East US",
- "West US",
- "Central US",
- "East US 2",
- "West Central US",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationsStatus",
- "locations": [],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-06-01",
- "2020-04-01-preview",
- "2020-01-01-preview",
- "2019-06-01",
- "2019-02-01-preview",
- "2019-01-01",
- "2018-09-15-preview",
- "2018-05-01-preview",
- "2018-01-01",
- "2017-09-15-preview",
- "2017-06-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "systemTopics",
- "locations": [
- "global",
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2020-04-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.EventGrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureEventGrid",
- "sourceMdmNamespace": "resourceMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "eventgrid",
- "onbehalfSupportedLogCategories": [
- "DeliveryFailures"
- ]
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "systemTopics/eventSubscriptions",
- "locations": [
- "global",
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "partnerRegistrations",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "partnerNamespaces",
- "locations": [
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "partnerTopics",
- "locations": [
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "partnerTopics/eventSubscriptions",
- "locations": [
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "partnerNamespaces/eventChannels",
- "locations": [
- "West Central US",
- "Central US",
- "West US 2",
- "East US",
- "West US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Japan East",
- "Japan West",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "France Central",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East"
- ],
- "apiVersions": [
- "2020-10-15-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2020-04-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.EventGrid"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureEventGrid",
- "sourceMdmNamespace": "resourceMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "eventgrid",
- "onbehalfSupportedLogCategories": [
- "DeliveryFailures",
- "PublishFailures"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Devices",
- "namespace": "Microsoft.Devices",
- "authorizations": [
- {
- "applicationId": "0cd79364-7a90-4354-9984-6e36c841418d",
- "roleDefinitionId": "C121DF10-FE58-4BC4-97F9-8296879F7BBB"
- },
- {
- "applicationId": "29f411f1-b2cf-4043-8ac8-2185d7316811",
- "roleDefinitionId": "d04fc6c0-fc10-4ab8-b7de-c979247c3b65"
- },
- {
- "applicationId": "89d10474-74af-4874-99a7-c23c2f643083",
- "roleDefinitionId": "7df22794-26e3-4f94-9d50-a4f0f6e1cb41"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-03-31",
- "2021-03-03-preview",
- "2021-02-01-preview",
- "2020-08-31-preview",
- "2020-08-31",
- "2020-08-01",
- "2020-07-10-preview",
- "2020-06-15",
- "2020-04-01",
- "2020-03-01",
- "2019-11-04",
- "2019-07-01-preview",
- "2019-03-22-preview",
- "2019-03-22",
- "2018-12-01-preview",
- "2018-04-01",
- "2018-01-22",
- "2017-07-01",
- "2017-01-19",
- "2016-02-03",
- "2015-08-15-preview"
- ],
- "defaultApiVersion": "2018-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkProvisioningServiceNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-03-01",
- "2020-01-01",
- "2018-01-22",
- "2017-11-15",
- "2017-08-21-preview"
- ],
- "defaultApiVersion": "2018-01-22",
- "capabilities": "None"
- },
- {
- "resourceType": "usages",
- "locations": [],
- "apiVersions": [
- "2021-03-31",
- "2021-03-03-preview",
- "2021-02-01-preview",
- "2020-08-31-preview",
- "2020-08-31",
- "2020-08-01",
- "2020-07-10-preview",
- "2020-06-15",
- "2020-04-01",
- "2020-03-01",
- "2019-11-04",
- "2019-07-01-preview",
- "2019-03-22-preview",
- "2019-03-22",
- "2018-12-01-preview",
- "2018-04-01",
- "2018-01-22",
- "2017-07-01",
- "2017-01-19",
- "2016-02-03",
- "2015-08-15-preview"
- ],
- "defaultApiVersion": "2018-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-31",
- "2021-03-03-preview",
- "2021-02-01-preview",
- "2020-08-31-preview",
- "2020-08-31",
- "2020-08-01",
- "2020-07-10-preview",
- "2020-06-15",
- "2020-04-01",
- "2020-03-01",
- "2019-11-04",
- "2019-07-01-preview",
- "2019-03-22-preview",
- "2019-03-22",
- "2018-12-01-preview",
- "2018-04-01",
- "2018-01-22",
- "2017-07-01",
- "2017-01-19",
- "2016-02-03",
- "2015-08-15-preview"
- ],
- "defaultApiVersion": "2018-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2021-03-31",
- "2021-03-03-preview",
- "2021-02-01-preview",
- "2020-08-31-preview",
- "2020-08-31",
- "2020-08-01",
- "2020-07-10-preview",
- "2020-06-15",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-11-04",
- "2019-09-01",
- "2019-07-01-preview",
- "2019-03-22-preview",
- "2019-03-22",
- "2018-12-01-preview",
- "2018-04-01-preview",
- "2018-04-01",
- "2018-01-22-preview",
- "2018-01-22",
- "2017-11-15",
- "2017-09-25-preview",
- "2017-08-21-preview",
- "2017-07-01",
- "2017-01-19",
- "2016-02-03",
- "2015-08-15-preview"
- ],
- "defaultApiVersion": "2018-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "IotHubs",
- "locations": [
- "West US",
- "North Europe",
- "East Asia",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "West US 2",
- "West Central US",
- "East US 2",
- "Central US",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "South Central US",
- "Korea South",
- "Korea Central",
- "France Central",
- "North Central US",
- "Australia Central",
- "Australia Central 2",
- "Germany North",
- "Germany West Central",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North"
- ],
- "apiVersions": [
- "2021-03-31",
- "2021-03-03-preview",
- "2021-02-01-preview",
- "2020-08-31-preview",
- "2020-08-31",
- "2020-08-01",
- "2020-07-10-preview",
- "2020-06-15",
- "2020-04-01",
- "2020-03-01",
- "2020-01-01",
- "2019-11-04",
- "2019-07-01-preview",
- "2019-03-22-preview",
- "2019-03-22",
- "2018-12-01-preview",
- "2018-04-01-preview",
- "2018-04-01",
- "2018-01-22",
- "2017-07-01",
- "2017-01-19",
- "2016-02-03",
- "2015-08-15-preview"
- ],
- "defaultApiVersion": "2020-01-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-04-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureIotHub"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDevicesShoebox",
- "sourceMdmNamespace": "ShoeboxMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureIotHub",
- "onbehalfSupportedLogCategories": [
- "Connections",
- "DeviceTelemetry",
- "C2DCommands",
- "DeviceIdentityOperations",
- "FileUploadOperations",
- "Routes",
- "D2CTwinOperations",
- "C2DTwinOperations",
- "TwinQueries",
- "JobsOperations",
- "DirectMethods",
- "DistributedTracing",
- "DeviceStreams"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "IotHubs/eventGridFilters",
- "locations": [
- "West US",
- "East US",
- "West US 2",
- "West Central US",
- "East US 2",
- "Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "South Central US",
- "Korea South",
- "Korea Central",
- "France Central",
- "North Central US",
- "Australia Central",
- "Australia Central 2",
- "Germany North",
- "Germany West Central",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2018-07-31",
- "2018-01-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ProvisioningServices",
- "locations": [
- "East US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "UK West",
- "UK South",
- "East US 2",
- "Central US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "Australia Central",
- "Australia Central 2",
- "France Central",
- "France South",
- "Canada East",
- "Canada Central",
- "Korea South",
- "Korea Central",
- "Central India",
- "South India",
- "Brazil South"
- ],
- "apiVersions": [
- "2020-03-01",
- "2020-01-01",
- "2018-01-22",
- "2017-11-15",
- "2017-08-21-preview"
- ],
- "defaultApiVersion": "2020-01-01",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "0cd79364-7a90-4354-9984-6e36c841418d"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureIotDps"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDevicesShoebox",
- "sourceMdmNamespace": "ShoeboxMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureIotDps",
- "onbehalfSupportedLogCategories": [
- "DeviceOperations",
- "ServiceOperations"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "IotHubs/securitySettings",
- "locations": [
- "West US",
- "North Europe",
- "East Asia",
- "East US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "West US 2",
- "West Central US",
- "East US 2",
- "Central US",
- "UK South",
- "UK West",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "South Central US",
- "Korea South",
- "Korea Central",
- "France Central",
- "North Central US",
- "Australia Central",
- "Australia Central 2",
- "Germany North",
- "Germany West Central",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North"
- ],
- "apiVersions": [
- "2019-09-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "89d10474-74af-4874-99a7-c23c2f643083"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2018-04-01",
- "IotHubs": "2018-04-01",
- "ProvisioningServices": "2018-01-22",
- "ElasticPools": "2018-01-22-preview",
- "ElasticPools/IotHubTenants": "2018-01-22-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDevicesShoebox",
- "sourceMdmNamespace": "ShoeboxMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataLakeStore",
- "namespace": "Microsoft.DataLakeStore",
- "authorization": {
- "applicationId": "e9f49c6b-5ce5-44c8-925d-015017e9f7ad",
- "roleDefinitionId": "17eb9cca-f08a-4499-b2d3-852d175f614f"
- },
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe",
- "Australia East"
- ],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "defaultApiVersion": "2016-11-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/firewallRules",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe",
- "Australia East"
- ],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/eventGridFilters",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe",
- "Australia East"
- ],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capability",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.accountId",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataLake"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureDataLake",
- "sourceMdmNamespace": "Microsoft.DataLakeStore"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataLake",
- "onbehalfSupportedLogCategories": [
- "Audit",
- "Requests"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "e9f49c6b-5ce5-44c8-925d-015017e9f7ad"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DomainRegistration",
- "namespace": "Microsoft.DomainRegistration",
- "authorization": {
- "applicationId": "ea2f600a-4980-45b7-89bf-d34da487bda1",
- "roleDefinitionId": "54d7f2e3-5040-48a7-ae90-eebf629cfa0b"
- },
- "resourceTypes": [
- {
- "resourceType": "domains",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "domains/domainOwnershipIdentifiers",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "topLevelDomains",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkDomainAvailability",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listDomainRecommendations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validateDomainRegistrationInformation",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "generateSsoRequest",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-10-01",
- "2020-09-01",
- "2020-06-01",
- "2019-08-01",
- "2018-02-01",
- "2015-04-01",
- "2015-02-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2018-02-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-02-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EventHub",
- "namespace": "Microsoft.EventHub",
- "authorizations": [
- {
- "applicationId": "80369ed6-5f11-4dd9-bef3-692475845e77",
- "roleDefinitionId": "eb8e1991-5de0-42a6-a64b-29b059341b7b"
- },
- {
- "applicationId": "6201d19e-14fb-4472-a2d6-5634a5c97568"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "namespaces",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "defaultApiVersion": "2017-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "Australia Central",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2018-01-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "namespaces/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/networkrulesets",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/privateEndpointConnections",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/eventhubs",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/eventhubs/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/eventhubs/consumergroups",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNamespaceAvailability",
- "locations": [],
- "apiVersions": [
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sku",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/disasterrecoveryconfigs",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/disasterrecoveryconfigs/checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "availableClusterRegions",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-01-01-preview"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-04-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.metricId",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "servicebus",
- "sourceMdmNamespace": "ServiceBusMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus",
- "onbehalfSupportedLogCategories": [
- "ArchiveLogs",
- "OperationalLogs",
- "AutoScaleLogs",
- "KafkaCoordinatorLogs",
- "EventHubVNetConnectionEvent",
- "CustomerManagedKeyUserLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "6201d19e-14fb-4472-a2d6-5634a5c97568"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HDInsight",
- "namespace": "Microsoft.HDInsight",
- "authorizations": [
- {
- "applicationId": "9191c4da-09fe-49d9-a5f1-d41cbe92ad95",
- "roleDefinitionId": "d102a6f3-d9cb-4633-8950-1243b975886c",
- "managedByRoleDefinitionId": "346da55d-e1db-4a5a-89db-33ab3cdb6fc6"
- },
- {
- "applicationId": "7865c1d2-f040-46cc-875f-831a1ef6a28a",
- "roleDefinitionId": "e27c0895-d168-46d5-8b65-870eb2350378"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "clusters",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": []
- },
- {
- "location": "South Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Canada Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "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": []
- },
- {
- "location": "East Asia",
- "zones": []
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftHDInsight"
- }
- ],
- "metricsFilterPathSelector": "properties.clusterDefinition.kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "HdInsight",
- "sourceMdmNamespace": "HdInsightIaasCluster"
- }
- ]
- },
- "mdsMappingResourceIdOverridePathSelector": "name"
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters/applications",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": []
- },
- {
- "location": "South Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Canada Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "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": []
- },
- {
- "location": "East Asia",
- "zones": []
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/operationresults",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capabilities",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/billingSpecs",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/azureasyncoperations",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/validateCreateRequest",
- "locations": [
- "East US 2",
- "South Central US",
- "Australia Southeast",
- "Central India",
- "West Central US",
- "West US 2",
- "Canada East",
- "Canada Central",
- "Brazil South",
- "UK South",
- "UK West",
- "East Asia",
- "Australia East",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "North Central US",
- "Central US",
- "Southeast Asia",
- "East US",
- "Korea South",
- "Korea Central",
- "West US",
- "South India",
- "France Central",
- "UAE North",
- "UAE Central",
- "Switzerland North",
- "Switzerland West",
- "South Africa North",
- "Germany West Central",
- "Brazil Southeast",
- "Norway East"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India"
- ],
- "apiVersions": [
- "2020-11-01-preview",
- "2018-06-01-preview",
- "2015-03-01-preview"
- ],
- "defaultApiVersion": "2015-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "9191c4da-09fe-49d9-a5f1-d41cbe92ad95"
- },
- "createdDate": "2015-06-02",
- "updatedDate": "2018-02-08",
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "metricsFilterPathSelector": "properties.clusterDefinition.kind",
- "mdmInfo": [
- {
- "sourceMdmAccount": "HdInsight",
- "sourceMdmNamespace": "HdInsightIaasCluster"
- }
- ]
- },
- "apiVersions": {
- "default": "2015-03-01-preview"
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.KeyVault",
- "namespace": "Microsoft.KeyVault",
- "authorizations": [
- {
- "applicationId": "cfa8b339-82a2-471a-a3c9-0fc0be7a4093",
- "roleDefinitionId": "1cf9858a-28a2-4228-abba-94e606305b95"
- },
- {
- "applicationId": "589d5083-6f11-4d30-a62a-a4b316a14abf"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "vaults",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01",
- "2015-06-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "vaults/secrets",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01",
- "2015-06-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "vaults/accessPolicies",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01",
- "2015-06-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01",
- "2015-06-01",
- "2014-12-19-preview"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-10-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01",
- "2015-06-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deletedVaults",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deletedVaults",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "East US",
- "North Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West Central US",
- "West US 2",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14",
- "2016-10-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "vaults/eventGridFilters",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01",
- "2018-02-14-preview",
- "2018-02-14"
- ],
- "defaultApiVersion": "2019-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "managedHSMs",
- "locations": [
- "East US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Central US",
- "Switzerland North",
- "South Africa North",
- "UK South",
- "SouthEast Asia",
- "East Asia",
- "Korea Central",
- "Australia Central",
- "West US",
- "East US"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview"
- ],
- "defaultApiVersion": "2020-04-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "deletedManagedHSMs",
- "locations": [
- "East US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Central US",
- "Switzerland North",
- "South Africa North",
- "UK South",
- "SouthEast Asia",
- "East Asia",
- "Korea Central",
- "Australia Central",
- "West US",
- "East US"
- ],
- "apiVersions": [
- "2021-04-01-preview"
- ],
- "defaultApiVersion": "2021-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deletedManagedHSMs",
- "locations": [
- "East US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Central US",
- "Switzerland North",
- "South Africa North",
- "UK South",
- "SouthEast Asia",
- "East Asia",
- "Korea Central",
- "Australia Central",
- "West US",
- "East US"
- ],
- "apiVersions": [
- "2021-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "vaults/keys",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "vaults/keys/versions",
- "locations": [
- "North Central US",
- "East US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Central US",
- "South Central US",
- "West US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-04-01-preview",
- "2019-09-01"
- ],
- "defaultApiVersion": "2019-09-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2015-06-01"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureKeyVault",
- "mdsEnvironment": "prod",
- "onbehalfSupportedLogCategories": [
- "AuditEvent"
- ]
- }
- ]
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureKeyVault"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftKeyVaultShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Media",
- "namespace": "Microsoft.Media",
- "authorization": {
- "applicationId": "374b2a64-3b6b-436b-934c-b820eacca870",
- "roleDefinitionId": "aab70789-0cec-44b5-95d7-84b64c9487af"
- },
- "resourceTypes": [
- {
- "resourceType": "mediaservices",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2021-05-01",
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview",
- "2015-10-01",
- "2015-04-01"
- ],
- "defaultApiVersion": "2020-05-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "videoAnalyzers",
- "locations": [
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Central India",
- "Japan East",
- "Korea Central",
- "East US 2",
- "West US 2"
- ],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview"
- ],
- "defaultApiVersion": "2021-05-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "mediaservices/assets",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/contentKeyPolicies",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/streamingLocators",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/streamingPolicies",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/eventGridFilters",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2018-02-05"
- ],
- "defaultApiVersion": "2018-02-05",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/transforms",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/transforms/jobs",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/streamingEndpoints",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "mediaservices/liveEvents",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "mediaservices/liveEvents/liveOutputs",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/streamingEndpointOperations",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/liveEventOperations",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/liveOutputOperations",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2019-05-01-preview",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/assets/assetFilters",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "mediaservices/accountFilters",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2020-05-01",
- "2018-07-01"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "videoAnalyzers/accessPolicies",
- "locations": [
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Central India",
- "Japan East",
- "Korea Central",
- "East US 2",
- "West US 2"
- ],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview"
- ],
- "defaultApiVersion": "2021-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "videoAnalyzers/edgeModules",
- "locations": [
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Central India",
- "Japan East",
- "Korea Central",
- "East US 2",
- "West US 2"
- ],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview"
- ],
- "defaultApiVersion": "2021-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "videoAnalyzers/videos",
- "locations": [
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "Central India",
- "Japan East",
- "Korea Central",
- "East US 2",
- "West US 2"
- ],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview"
- ],
- "defaultApiVersion": "2021-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview",
- "2021-05-01",
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview",
- "2018-02-05",
- "2015-10-01",
- "2015-04-01"
- ],
- "defaultApiVersion": "2020-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checknameavailability",
- "locations": [],
- "apiVersions": [
- "2015-10-01",
- "2015-04-01"
- ],
- "defaultApiVersion": "2015-10-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview",
- "2021-05-01",
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2018-07-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Japan West",
- "Japan East",
- "East Asia",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "East US",
- "West US",
- "Australia East",
- "Australia Southeast",
- "East US 2",
- "Central US",
- "Brazil South",
- "Central India",
- "West India",
- "South India",
- "North Central US",
- "South Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "Germany West Central",
- "Germany North",
- "Switzerland West",
- "Switzerland North",
- "Norway East",
- "West US 3"
- ],
- "apiVersions": [
- "2021-05-01-privatepreview",
- "2021-05-01-preview",
- "2021-05-01",
- "2020-05-01",
- "2018-07-01",
- "2018-06-01-preview",
- "2018-03-30-preview"
- ],
- "defaultApiVersion": "2020-05-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-07-01",
- "operations": "2018-07-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Media"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftMediaServicesShoebox",
- "sourceMdmNamespace": "MicrosoftMediaStreamingEndpoint"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Media",
- "onbehalfSupportedLogCategories": [
- "KeyDeliveryRequests"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "374b2a64-3b6b-436b-934c-b820eacca870"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MachineLearning",
- "namespace": "Microsoft.MachineLearning",
- "authorization": {
- "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385",
- "roleDefinitionId": "1cc297bc-1829-4524-941f-966373421033"
- },
- "resourceTypes": [
- {
- "resourceType": "Workspaces",
- "locations": [
- "South Central US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "West Central US"
- ],
- "apiVersions": [
- "2016-04-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "webServices",
- "locations": [
- "South Central US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "East US 2",
- "West Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "South Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "South Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "South Central US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "East US 2",
- "West Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "South Central US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "East US 2",
- "West Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "commitmentPlans",
- "locations": [
- "South Central US",
- "West Europe",
- "Southeast Asia",
- "Japan East",
- "East US 2",
- "West Central US"
- ],
- "apiVersions": [
- "2017-01-01",
- "2016-05-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.NotificationHubs",
- "namespace": "Microsoft.NotificationHubs",
- "resourceTypes": [
- {
- "resourceType": "namespaces",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "namespaces/notificationHubs",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNamespaceAvailability",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Germany West Central",
- "Australia Central",
- "Australia Central 2"
- ],
- "apiVersions": [
- "2017-04-01",
- "2016-03-01",
- "2014-09-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "NotificationHubs",
- "sourceMdmNamespace": "HubMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "NotificationHubs",
- "onbehalfSupportedLogCategories": [
- "OperationalLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage",
- "namespace": "Microsoft.Storage",
- "authorizations": [
- {
- "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b",
- "roleDefinitionId": "070ab87f-0efc-4423-b18b-756f3bdb0236"
- },
- {
- "applicationId": "e406a681-f3d4-42a8-90b6-c2b029497af1"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "deletedAccounts",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deletedAccounts",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01",
- "2016-01-01",
- "2015-06-15",
- "2015-05-01-preview"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": []
- },
- {
- "location": "South Central US",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "location": "Canada Central",
- "zones": [
- "2",
- "1",
- "3"
- ]
- },
- {
- "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": []
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b",
- "delegationAppIds": [
- "a6aa9161-5291-40bb-8c5c-923b567bee3b"
- ]
- },
- "portal": {
- "kinds": [
- {
- "kind": "BlobStorage",
- "icon": "\u003Csvg viewBox=\u00270 0 50 50\u0027 class=\u0027msportalfx-svg-placeholder\u0027 role=\u0027img\u0027 xmlns:svg=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 focusable=\u0027false\u0027\u003E\u003Cpath d=\u0027M0,44.8c0,1,0.8,1.9,1.8,1.9h46.3c1,0,1.9-0.8,1.9-1.9l0-33.1H0V44.8z\u0027 class=\u0027msportalfx-svg-c03\u0027\u003E\u003C/path\u003E\u003Cpath d=\u0027M48.1,4H1.8C0.8,4,0,4.9,0,5.9v5.7h50l0-5.7C50,4.9,49.2,4,48.1,4\u0027 class=\u0027msportalfx-svg-c04\u0027\u003E\u003C/path\u003E\u003Cpath opacity=\u00270.8\u0027 d=\u0027M38,21.2v-2.4H22.8l-3.6-3.6H9.7v26.3c0,0.8,0.6,1.4,1.4,1.4l0,0h27.2c0.8,0,1.4-0.6,1.4-1.4 V21.2H38z\u0027 class=\u0027msportalfx-svg-c01\u0027\u003E\u003C/path\u003E\u003Cpath d=\u0027M12.5,21.2v20.3c0,0.8-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4V15.2h9.6l3.6,3.6H38v2.4H12.5z\u0027 class=\u0027msportalfx-svg-c10\u0027\u003E\u003C/path\u003E\u003Cpath opacity=\u00270.2\u0027 d=\u0027M2,4C0.9,4,0,4.9,0,6v7.3v3.3v28c0,1.1,0.9,2,2,2h2.2L43.6,4H2z\u0027 class=\u0027msportalfx-svg-c01\u0027\u003E\u003C/path\u003E\u003C/svg\u003E"
- }
- ]
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01",
- "2016-01-01",
- "2015-06-15",
- "2015-05-01-preview"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/asyncoperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01",
- "2016-01-01",
- "2015-06-15",
- "2015-05-01-preview"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/listAccountSas",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/listServiceSas",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/blobServices",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/tableServices",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/queueServices",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/fileServices",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-07-01",
- "2016-01-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-07-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "usages",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01",
- "2016-01-01",
- "2015-06-15",
- "2015-05-01-preview"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-03-01-preview",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01",
- "2016-05-01",
- "2016-01-01",
- "2015-06-15",
- "2015-05-01-preview"
- ],
- "defaultApiVersion": "2019-06-01",
- "apiProfiles": [
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2017-10-01"
- },
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-03-01-hybrid",
- "apiVersion": "2016-01-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-10-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2021-01-01",
- "2020-08-01-preview",
- "2019-06-01",
- "2019-04-01",
- "2018-11-01",
- "2018-07-01",
- "2018-02-01",
- "2017-10-01",
- "2017-06-01",
- "2016-12-01"
- ],
- "defaultApiVersion": "2019-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "storageAccounts/services",
- "locations": [
- "East US",
- "West US",
- "East US 2 (Stage)",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West 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": "storageAccounts/services/metricDefinitions",
- "locations": [
- "East US",
- "West US",
- "East US 2 (Stage)",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "North Central US",
- "South Central US",
- "East US 2",
- "Central US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada East",
- "Canada Central",
- "West US 2",
- "West 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"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-12-01",
- "operations": "2016-12-01"
- },
- "metrics": {
- "metricsFilterPathSelector": "sku.tier",
- "mdsInfo": [
- {
- "serviceIdentity": "XStore"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "XStoreShoebox",
- "sourceMdmNamespace": "XStore"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Xstore",
- "onbehalfSupportedLogCategories": [
- "StorageRead",
- "StorageWrite",
- "StorageDelete"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceHealth",
- "namespace": "Microsoft.ResourceHealth",
- "authorizations": [
- {
- "applicationId": "8bdebf23-c0fe-4187-a378-717ad86f6a53",
- "roleDefinitionId": "cc026344-c8b1-4561-83ba-59eba84b27cc"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "availabilityStatuses",
- "locations": [],
- "apiVersions": [
- "2020-05-01-preview",
- "2020-05-01",
- "2018-08-01-rc",
- "2018-08-01-preview",
- "2018-07-01-rc",
- "2018-07-01-preview",
- "2018-07-01",
- "2017-07-01",
- "2015-01-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "childAvailabilityStatuses",
- "locations": [],
- "apiVersions": [
- "2018-11-06-beta",
- "2018-08-01-rc",
- "2018-08-01-preview",
- "2018-07-01-rc",
- "2018-07-01-preview",
- "2018-07-01-beta",
- "2017-07-01-rc",
- "2017-07-01-preview",
- "2017-07-01-beta",
- "2015-01-01-rc",
- "2015-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "childResources",
- "locations": [],
- "apiVersions": [
- "2018-11-06-beta",
- "2018-08-01-rc",
- "2018-08-01-preview",
- "2018-07-01-rc",
- "2018-07-01-preview",
- "2018-07-01-beta",
- "2017-07-01-rc",
- "2017-07-01-preview",
- "2017-07-01-beta",
- "2015-01-01-rc",
- "2015-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "events",
- "locations": [],
- "apiVersions": [
- "2020-09-01-rc",
- "2018-07-01-rc",
- "2018-07-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "metadata",
- "locations": [],
- "apiVersions": [
- "2018-07-01-rc",
- "2018-07-01-preview",
- "2018-07-01-beta",
- "2018-07-01-alpha",
- "2018-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "emergingissues",
- "locations": [],
- "apiVersions": [
- "2018-11-06-beta",
- "2018-07-01-rc",
- "2018-07-01-preview",
- "2018-07-01-beta",
- "2018-07-01-alpha",
- "2018-07-01",
- "2017-07-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-07-01",
- "2015-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "supportedResourceTypes": [
- "Microsoft.Cache/Redis",
- "Microsoft.ClassicCompute/virtualMachines",
- "Microsoft.Compute/virtualMachines",
- "Microsoft.Sql/servers/databases",
- "Microsoft.Web/sites",
- "Microsoft.media/mediaservices",
- "Microsoft.Network/virtualnetworkgateways",
- "Microsoft.Network/connections",
- "Microsoft.Search/Searchservices",
- "Microsoft.Notificationhubs/namespaces",
- "Microsoft.Cdn/profiles",
- "Microsoft.Documentdb/databaseaccounts",
- "Microsoft.DataLakeStore/accounts",
- "Microsoft.DataLakeAnalytics/accounts",
- "Microsoft.DataShare/accounts",
- "Microsoft.Web/serverFarms",
- "Microsoft.StreamAnalytics/streamingjobs",
- "Microsoft.CognitiveServices/accounts",
- "Microsoft.EventHub/namespaces",
- "Microsoft.ServiceBus/namespaces",
- "Microsoft.OperationalInsights/workspaces",
- "Microsoft.ApiManagement/service",
- "Microsoft.Devices/IotHubs",
- "Microsoft.Network/LoadBalancers",
- "Microsoft.Network/expressRouteCircuits",
- "Microsoft.Network/trafficmanagerprofiles",
- "Microsoft.Storage/storageAccounts",
- "Microsoft.AnalysisServices/servers",
- "Microsoft.KeyVault/vaults",
- "Microsoft.DataMigration/services",
- "Microsoft.MachineLearning/webServices",
- "Microsoft.ServiceFabric/clusters",
- "Microsoft.HdInsight/clusters",
- "Microsoft.PowerBIDedicated/capacities",
- "Microsoft.DataFactory/factories",
- "Microsoft.IoTCentral/IoTApps",
- "Microsoft.Sql/managedInstances/databases",
- "Microsoft.DBforMariaDB/servers",
- "Microsoft.DBforMySQL/servers",
- "Microsoft.DBforPostgreSQL/servers",
- "Microsoft.Network/applicationGateways",
- "Microsoft.Network/frontdoors",
- "Microsoft.Batch/batchAccounts",
- "microsoft.Kusto/Clusters",
- "microsoft.ContainerService/managedClusters",
- "Microsoft.RecoveryServices/vaults",
- "Microsoft.Compute/hostGroups/hosts",
- "Microsoft.ClassicCompute/DomainNames",
- "Microsoft.AppPlatform/Spring",
- "Microsoft.Compute/virtualMachineScaleSets",
- "Microsoft.HybridCompute/machines",
- "Microsoft.DigitalTwins/DigitalTwinsInstances",
- "Microsoft.Synapse/workspaces",
- "Microsoft.Network/bastionHosts"
- ],
- "Microsoft.IdMapping": {
- "vmId": "properties.roleId",
- "roleId": "properties.vmId"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PolicyInsights",
- "namespace": "Microsoft.PolicyInsights",
- "authorizations": [
- {
- "applicationId": "1d78a85d-813d-46f0-b496-dd72f50a3ec0",
- "roleDefinitionId": "63d2b225-4c34-4641-8768-21a1f7c68ce8"
- },
- {
- "applicationId": "8cae6e77-e04e-42ce-b5cb-50d82bce26b1",
- "roleDefinitionId": "4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "policyEvents",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-07-01-preview",
- "2018-04-04",
- "2017-12-12-preview",
- "2017-10-17-preview",
- "2017-08-09-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "policyStates",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-07-01-preview",
- "2018-04-04",
- "2017-12-12-preview",
- "2017-10-17-preview",
- "2017-08-09-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-07-01-preview",
- "2018-04-04",
- "2017-12-12-preview",
- "2017-10-17-preview",
- "2017-08-09-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "asyncOperationResults",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "remediations",
- "locations": [],
- "apiVersions": [
- "2019-07-01",
- "2018-07-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "eventGridFilters",
- "locations": [],
- "apiVersions": [
- "2020-10-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "checkPolicyRestrictions",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview",
- "2020-07-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "policyTrackedResources",
- "locations": [],
- "apiVersions": [
- "2018-07-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "policyMetadata",
- "locations": [],
- "apiVersions": [
- "2019-10-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Security",
- "namespace": "Microsoft.Security",
- "authorizations": [
- {
- "applicationId": "8edd93e1-2103-40b4-bd70-6e34e586362d",
- "roleDefinitionId": "855AF4C4-82F6-414C-B1A2-628025628B9A"
- },
- {
- "applicationId": "fc780465-2017-40d4-a0c5-307022471b92"
- },
- {
- "applicationId": "8ee8fdad-f234-4243-8f3b-15c294843740"
- },
- {
- "applicationId": "04687a56-4fc2-4e36-b274-b862fb649733"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "securityStatuses",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "tasks",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "secureScores",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "secureScores/secureScoreControls",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "secureScoreControls",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "secureScoreControlDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "connectors",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "regulatoryComplianceStandards",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2019-01-01-preview",
- "2019-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "regulatoryComplianceStandards/regulatoryComplianceControls",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2019-01-01-preview",
- "2019-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2019-01-01-preview",
- "2019-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "alerts",
- "locations": [
- "Central US",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-01-01",
- "2019-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "alertsSuppressionRules",
- "locations": [],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "autoDismissAlertsRules",
- "locations": [],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dataCollectionAgents",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "pricings",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2018-06-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "AutoProvisioningSettings",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2019-01-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Compliances",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2017-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "securityContacts",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2020-01-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaceSettings",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2019-01-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "complianceResults",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2017-08-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "policies",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "assessments",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "assessmentMetadata",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "subAssessments",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "securitySolutions",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securitySolutions",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "discoveredSecuritySolutions",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/discoveredSecuritySolutions",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "allowedConnections",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/allowedConnections",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "topologies",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/topologies",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "securitySolutionsReferenceData",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securitySolutionsReferenceData",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "jitPolicies",
- "locations": [
- "Central US",
- "East US",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Switzerland North",
- "Germany West Central",
- "West Central US",
- "West US 2"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "jitNetworkAccessPolicies",
- "locations": [
- "Central US",
- "East US",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "West Central US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/jitNetworkAccessPolicies",
- "locations": [
- "Central US",
- "East US",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Switzerland North",
- "Germany West Central",
- "West Central US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "securityStatusesSummaries",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationWhitelistings",
- "locations": [
- "Central US",
- "East US",
- "West Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/applicationWhitelistings",
- "locations": [
- "Central US",
- "West Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/alerts",
- "locations": [
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-01-01",
- "2019-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/tasks",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "externalSecuritySolutions",
- "locations": [
- "Central US",
- "East US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/externalSecuritySolutions",
- "locations": [
- "Central US",
- "West Europe",
- "West Central US"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "InformationProtectionPolicies",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2017-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "advancedThreatProtectionSettings",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Central US",
- "South India",
- "Southeast Asia",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US 2",
- "West US",
- "France Central",
- "UAE North",
- "Germany West Central",
- "Switzerland North"
- ],
- "apiVersions": [
- "2019-01-01",
- "2017-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "sqlVulnerabilityAssessments",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "deviceSecurityGroups",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01",
- "2017-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "iotSecuritySolutions",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01",
- "2017-08-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "iotDefenderSettings",
- "locations": [],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotSensors",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "onPremiseIotSensors",
- "locations": [],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "devices",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "iotSites",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "iotSecuritySolutions/analyticsModels",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotAlertTypes",
- "locations": [],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotSecuritySolutions/iotAlertTypes",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotAlerts",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "iotSecuritySolutions/iotAlerts",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotRecommendationTypes",
- "locations": [],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotSecuritySolutions/iotRecommendationTypes",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotRecommendations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "iotSecuritySolutions/iotRecommendations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotSecuritySolutions/analyticsModels/aggregatedAlerts",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "iotSecuritySolutions/analyticsModels/aggregatedRecommendations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Germany West Central",
- "Germany North"
- ],
- "apiVersions": [
- "2019-08-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "settings",
- "locations": [
- "Central US",
- "East US"
- ],
- "apiVersions": [
- "2021-06-01",
- "2019-01-01",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "serverVulnerabilityAssessments",
- "locations": [
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "adaptiveNetworkHardenings",
- "locations": [
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-01-01",
- "2015-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "automations",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West US",
- "West US 2",
- "West Central US",
- "Canada Central",
- "Canada East",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "South Africa North",
- "South Africa West",
- "UAE Central",
- "UAE North",
- "North Europe",
- "West Europe",
- "France Central",
- "France South",
- "UK South",
- "UK West",
- "Norway East",
- "Norway West",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ingestionSettings",
- "locations": [],
- "apiVersions": [
- "2021-01-15-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceBus",
- "namespace": "Microsoft.ServiceBus",
- "authorizations": [
- {
- "applicationId": "80a10ef9-8168-493d-abf9-3297c4ef6e3c",
- "roleDefinitionId": "2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"
- },
- {
- "applicationId": "eb070ea5-bd17-41f1-ad68-5851f6e71774"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "namespaces",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "defaultApiVersion": "2017-04-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "namespaces/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/networkrulesets",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/privateEndpointConnections",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/queues",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/queues/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/topics",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/topics/authorizationrules",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/topics/subscriptions",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/topics/subscriptions/rules",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNamespaceAvailability",
- "locations": [],
- "apiVersions": [
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sku",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "premiumMessagingRegions",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/eventgridfilters",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/disasterrecoveryconfigs",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "namespaces/disasterrecoveryconfigs/checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2017-04-01",
- "2015-08-01",
- "2014-09-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [],
- "apiVersions": [
- "2018-01-01-preview",
- "2017-04-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-04-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-04-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.metricId",
- "metrics": {
- "metricsFilterPathSelector": "sku.tier",
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "servicebus",
- "sourceMdmNamespace": "ServiceBusMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "servicebus",
- "onbehalfSupportedLogCategories": [
- "OperationalLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "eb070ea5-bd17-41f1-ad68-5851f6e71774"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StorSimple",
- "namespace": "Microsoft.StorSimple",
- "resourceTypes": [
- {
- "resourceType": "managers",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "West Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2019-05-13",
- "2017-06-01",
- "2017-05-15",
- "2017-01-01",
- "2016-10-01",
- "2016-06-01",
- "2015-03-15",
- "2014-09-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2019-05-13",
- "2016-10-01",
- "2016-06-01",
- "2015-03-15",
- "2014-09-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.visualstudio",
- "namespace": "microsoft.visualstudio",
- "authorization": {
- "applicationId": "499b84ac-1321-427f-aa17-267ca6975798",
- "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"
- },
- "resourceTypes": [
- {
- "resourceType": "account",
- "locations": [
- "North Central US",
- "South Central US",
- "West Central US",
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "West India",
- "Central India",
- "South India",
- "West US 2",
- "Canada Central",
- "UK South"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-02-26"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "North Central US",
- "South Central US",
- "West Central US",
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "West India",
- "Central India",
- "South India",
- "West US 2",
- "Canada Central",
- "UK South"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-02-26"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "account/project",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "West India",
- "Central India",
- "South India",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "UK South",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-02-26"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "account/extension",
- "locations": [
- "North Central US",
- "South Central US",
- "West Central US",
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "West India",
- "Central India",
- "South India",
- "West US 2",
- "Canada Central",
- "UK South"
- ],
- "apiVersions": [
- "2014-04-01-preview",
- "2014-02-26"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "North Central US",
- "South Central US",
- "West Central US",
- "East US",
- "East US 2",
- "West US",
- "Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "West India",
- "Central India",
- "South India",
- "West US 2",
- "Canada Central",
- "UK South"
- ],
- "apiVersions": [
- "2014-04-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/84codes.CloudAMQP",
- "namespace": "84codes.CloudAMQP",
- "resourceTypes": [
- {
- "resourceType": "servers",
- "locations": [
- "East US 2",
- "Central US",
- "East US",
- "North Central US",
- "South Central US",
- "West US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2016-08-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Crypteron.DataSecurity",
- "namespace": "Crypteron.DataSecurity",
- "resourceTypes": [
- {
- "resourceType": "apps",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2016-08-12"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-08-12"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-12"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-12"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AAD",
- "namespace": "Microsoft.AAD",
- "authorizations": [
- {
- "applicationId": "443155a6-77f3-45e3-882b-22b3a8d431fb",
- "roleDefinitionId": "7389DE79-3180-4F07-B2BA-C5BA1F01B03A"
- },
- {
- "applicationId": "abba844e-bc0e-44b0-947a-dc74e5d09022",
- "roleDefinitionId": "63BC473E-7767-42A5-A3BF-08EB71200E04"
- },
- {
- "applicationId": "d87dcbc6-a371-462e-88e3-28ad15ec4e64",
- "roleDefinitionId": "861776c5-e0df-4f95-be4f-ac1eec193323"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "DomainServices",
- "locations": [
- "West US",
- "Central US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "West Central US",
- "North Central US",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "UK South",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2020-01-01",
- "2017-06-01",
- "2017-01-01"
- ],
- "defaultApiVersion": "2021-05-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "DomainServices/oucontainer",
- "locations": [
- "West US",
- "Central US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "West Central US",
- "North Central US",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "UK South",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2020-01-01",
- "2017-06-01"
- ],
- "defaultApiVersion": "2021-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West US",
- "Central US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "West Central US",
- "North Central US",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "UK South",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2020-01-01",
- "2017-06-01",
- "2017-01-01"
- ],
- "defaultApiVersion": "2021-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "West US",
- "Central US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "West Central US",
- "North Central US",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "UK South",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2020-01-01",
- "2017-06-01",
- "2017-01-01"
- ],
- "defaultApiVersion": "2021-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "Central US",
- "East US",
- "South Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "West Central US",
- "North Central US",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "UK South",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "Germany West Central",
- "West US 3",
- "Norway East"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01",
- "2020-01-01",
- "2017-06-01",
- "2017-01-01"
- ],
- "defaultApiVersion": "2021-05-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-06-01",
- "operations": "2017-06-01"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AADDOMAINSERVICES",
- "onbehalfSupportedLogCategories": [
- "AccountManagement",
- "PolicyChange",
- "LogonLogoff",
- "PrivilegeUse",
- "SystemSecurity",
- "ObjectAccess",
- "DirectoryServiceAccess",
- "AccountLogon",
- "DetailTracking"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.aadiam",
- "namespace": "microsoft.aadiam",
- "authorizations": [
- {
- "applicationId": "1b912ec3-a9dd-4c4d-a53e-76aa7adb28d7",
- "roleDefinitionId": "c4cfa0e8-3cb5-4ced-9c3c-efaad3348120"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "azureADMetrics",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-07-01-preview",
- "2020-07-01"
- ],
- "defaultApiVersion": "2020-07-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateLinkForAzureAD",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "tenants",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2017-04-01",
- "2017-03-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01"
- ],
- "defaultApiVersion": "2017-04-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-04-01",
- "operations": "2017-04-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "properties.tenantId",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AadLogConnectorProd",
- "onbehalfSupportedLogCategories": [
- "Signin"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2017-04-01",
- "2017-03-01",
- "2016-09-01",
- "2016-08-01",
- "2016-07-01",
- "2016-06-01",
- "2016-03-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "diagnosticSettings",
- "locations": [],
- "apiVersions": [
- "2017-04-01-preview",
- "2017-04-01"
- ],
- "defaultApiVersion": "2017-04-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "diagnosticSettingsCategories",
- "locations": [],
- "apiVersions": [
- "2017-04-01-preview",
- "2017-04-01"
- ],
- "defaultApiVersion": "2017-04-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-04-01",
- "operations": "2017-04-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.aadiam"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "AzureADMetrics",
- "sourceMdmNamespace": "TenantMetric/PROD"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Addons",
- "namespace": "Microsoft.Addons",
- "authorization": {
- "applicationId": "24d3987b-be4a-48e0-a3e7-11c186f39e41",
- "roleDefinitionId": "8004BAAB-A4CB-4981-8571-F7E44D039D93"
- },
- "resourceTypes": [
- {
- "resourceType": "supportProviders",
- "locations": [
- "West Central US",
- "South Central US",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2018-03-01",
- "2017-05-15"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "South Central US",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2018-03-01",
- "2017-05-15"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "West Central US",
- "South Central US",
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2018-03-01",
- "2017-05-15"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ADHybridHealthService",
- "namespace": "Microsoft.ADHybridHealthService",
- "resourceTypes": [
- {
- "resourceType": "services",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "addsservices",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "configuration",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "agents",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "aadsupportcases",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reports",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servicehealthmetrics",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "logs",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "anonymousapiusers",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2014-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AgFoodPlatform",
- "namespace": "Microsoft.AgFoodPlatform",
- "authorizations": [
- {
- "applicationId": "e420dc86-d66f-4069-a2d0-be2f937bd272",
- "roleDefinitionId": "c9511e72-16f4-4804-9bed-d3f21cbe122f"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-05-12-preview"
- ],
- "defaultApiVersion": "2020-05-12-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "farmBeatsExtensionDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-12-preview"
- ],
- "defaultApiVersion": "2020-05-12-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-05-12-preview"
- ],
- "defaultApiVersion": "2020-05-12-preview",
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AISupercomputer",
- "namespace": "Microsoft.AISupercomputer",
- "authorizations": [
- {
- "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3",
- "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee"
- },
- {
- "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1",
- "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceTypeSeries",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceTypeSeries/instanceTypes",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "images",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central",
- "South Central US"
- ],
- "apiVersions": [
- "2020-12-01-preview",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationIds": [
- "349e15d0-1c96-4829-95e5-7fc8fb358ff3",
- "9581bc0e-c952-4fd3-8d99-e777877718b1"
- ]
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AnalysisServices",
- "namespace": "Microsoft.AnalysisServices",
- "authorization": {
- "applicationId": "4ac7d521-0382-477b-b0f8-7e1d95f85ca2",
- "roleDefinitionId": "490d5987-bcf6-4be6-b6b2-056a78cb693a"
- },
- "resourceTypes": [
- {
- "resourceType": "servers",
- "locations": [
- "West US",
- "North Europe",
- "South Central US",
- "West Europe",
- "West Central US",
- "Southeast Asia",
- "East US 2",
- "North Central US",
- "Brazil South",
- "Canada Central",
- "Australia Southeast",
- "Japan East",
- "UK South",
- "West India",
- "West US 2",
- "Central US",
- "East US",
- "Australia East"
- ],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "defaultApiVersion": "2017-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "defaultApiVersion": "2017-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West US",
- "North Europe",
- "South Central US",
- "West Europe",
- "West Central US",
- "Southeast Asia",
- "East US 2",
- "North Central US",
- "Brazil South",
- "Canada Central",
- "Australia Southeast",
- "Japan East",
- "UK South",
- "West India",
- "West US 2",
- "Central US",
- "East US",
- "Australia East"
- ],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "defaultApiVersion": "2017-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "West US",
- "North Europe",
- "South Central US",
- "West Europe",
- "West Central US",
- "Southeast Asia",
- "East US 2",
- "North Central US",
- "Brazil South",
- "Canada Central",
- "Australia Southeast",
- "Japan East",
- "UK South",
- "West India",
- "West US 2",
- "Central US",
- "East US",
- "Australia East"
- ],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "defaultApiVersion": "2017-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "West US",
- "North Europe",
- "South Central US",
- "West Europe",
- "West Central US",
- "Southeast Asia",
- "East US 2",
- "North Central US",
- "Brazil South",
- "Canada Central",
- "Australia Southeast",
- "Japan East",
- "UK South",
- "West India",
- "West US 2",
- "Central US",
- "East US",
- "Australia East"
- ],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "defaultApiVersion": "2017-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US 2",
- "West Central US",
- "West US 2"
- ],
- "apiVersions": [
- "2017-08-01-beta",
- "2017-08-01",
- "2017-07-14",
- "2016-05-16"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-08-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-08-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "AsPaaS",
- "sourceMdmNamespace": "SystemCounters"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "ASAzureRP"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "ASAzureRP",
- "onbehalfSupportedLogCategories": [
- "Service",
- "Engine"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AnyBuild",
- "namespace": "Microsoft.AnyBuild",
- "authorizations": [
- {
- "applicationId": "16f9e0a0-ac78-4c2c-a55a-f3855317a63a",
- "roleDefinitionId": "6fc3ed3a-fa07-4e79-9ac0-2db46b294d31"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-08-26"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "West US 2",
- "East US",
- "North Europe"
- ],
- "apiVersions": [
- "2020-08-26"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "clusters",
- "locations": [
- "West US 2",
- "East US",
- "North Europe"
- ],
- "apiVersions": [
- "2020-08-26"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-08-26"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AppAssessment",
- "namespace": "Microsoft.AppAssessment",
- "authorizations": [
- {
- "applicationId": "f9c691e6-93b3-4d57-944c-afcc737f9abf",
- "roleDefinitionId": "1dc07278-9fb7-4aa4-bf32-bbb5a0a0c0bd"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-09-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-09-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US 2 EUAP",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/osVersions",
- "locations": [
- "East US 2 EUAP",
- "West Central US"
- ],
- "apiVersions": [
- "2020-09-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AppPlatform",
- "namespace": "Microsoft.AppPlatform",
- "authorizations": [
- {
- "applicationId": "03b39d0f-4213-4864-a245-b1476ec03169"
- },
- {
- "applicationId": "584a29b4-7876-4445-921e-71e427d4f4b3"
- },
- {
- "applicationId": "b61cc489-e138-4a69-8bf3-c2c5855c8784",
- "roleDefinitionId": "462ddd96-910a-44f5-adfa-644d99942778"
- },
- {
- "applicationId": "e8de9221-a19c-4c81-b814-fd37c6caf9d2"
- },
- {
- "applicationId": "366cbfa5-46b3-47fb-9d70-55fb923b4833",
- "roleDefinitionId": "d63d711d-1c1a-41d9-905a-fb87b28d47d9"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Spring",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Spring/apps",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "Spring/apps/deployments",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatus",
- "locations": [
- "West Europe",
- "East US",
- "West US 2",
- "Southeast Asia",
- "Central US",
- "Australia East",
- "UK South",
- "North Europe",
- "South Central US",
- "East US 2",
- "Canada Central",
- "North Central US",
- "West US",
- "UAE North",
- "Central India",
- "Korea Central",
- "East Asia",
- "Japan East",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2020-11-01-preview",
- "2020-07-01",
- "2019-05-01-preview"
- ],
- "defaultApiVersion": "2019-05-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-05-01-preview",
- "operations": "2019-05-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "Microservices4SpringMetrics",
- "sourceMdmNamespace": "ServiceMetrics"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Microservices4Spring"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Microservices4Spring",
- "onbehalfSupportedLogCategories": [
- "ApplicationConsole",
- "SystemLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "0a0ae72b-f728-4dde-abe9-1e3e72a7a92c"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Automanage",
- "namespace": "Microsoft.Automanage",
- "authorizations": [
- {
- "applicationId": "9ae330ab-d710-466b-851c-c828e7340846"
- },
- {
- "applicationId": "d828acde-4b48-47f5-a6e8-52460104a052",
- "roleDefinitionId": "111e90e1-c9ec-40f6-b898-c0964578da58"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "configurationProfileAssignments",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "West US 2",
- "West Central US",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Japan East",
- "UK South",
- "Australia Southeast",
- "Australia East",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "configurationProfileAssignmentIntents",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "South Central US",
- "West US",
- "West US 2",
- "West Central US",
- "North Europe",
- "West Europe",
- "Canada Central",
- "Japan East",
- "UK South",
- "Australia Southeast",
- "Australia East",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-03-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "accounts",
- "locations": [
- "Central US",
- "East US 2",
- "East US",
- "North Central US",
- "South Central US",
- "West US 2",
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Canada Central",
- "Japan East",
- "UK South",
- "Australia Southeast",
- "Australia East",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-06-30-preview"
- ],
- "defaultApiVersion": "2020-06-30-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "configurationProfilePreferences",
- "locations": [
- "Central US",
- "East US 2",
- "East US",
- "North Central US",
- "South Central US",
- "West US 2",
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Canada Central",
- "Japan East",
- "UK South",
- "Australia Southeast",
- "Australia East",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-06-30-preview"
- ],
- "defaultApiVersion": "2020-06-30-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Central US",
- "East US 2",
- "East US",
- "North Central US",
- "South Central US",
- "West US 2",
- "West Central US",
- "West US"
- ],
- "apiVersions": [
- "2020-06-30-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftAutomanage"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "mdsEnvironment": "test",
- "serviceIdentity": "MicrosoftAutomanage"
- }
- ]
- },
- "version": "1.0"
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Automation",
- "namespace": "Microsoft.Automation",
- "authorizations": [
- {
- "applicationId": "fc75330b-179d-49af-87dd-3b1acf6827fa",
- "roleDefinitionId": "95fd5de3-d071-4362-92bf-cf341c1de832"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "automationAccounts",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2021-04-01",
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "defaultApiVersion": "2018-06-30",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "automationAccounts/runbooks",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "West US",
- "Central US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "automationAccounts/configurations",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "West US",
- "Central US",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "Central India",
- "Australia Southeast",
- "Canada Central",
- "North Europe",
- "East Asia",
- "France Central",
- "Central US EUAP"
- ],
- "apiVersions": [
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "automationAccounts/webhooks",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "Australia East",
- "France Central"
- ],
- "apiVersions": [
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "South Central US"
- ],
- "apiVersions": [
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "automationAccounts/softwareUpdateConfigurations",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "automationAccounts/jobs",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview",
- "2019-06-01",
- "2018-06-30",
- "2018-01-15",
- "2017-05-15-preview",
- "2015-10-31",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "automationAccounts/privateLinkResources",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "automationAccounts/privateEndpointConnections",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "automationAccounts/privateEndpointConnectionProxies",
- "locations": [
- "Japan East",
- "East US 2",
- "West Europe",
- "South Africa North",
- "UK West",
- "Switzerland North",
- "Brazil Southeast",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Switzerland West",
- "Japan West",
- "UAE Central",
- "Australia Central 2",
- "South India",
- "France South",
- "Norway West",
- "West US 3",
- "Korea South",
- "Southeast Asia",
- "South Central US",
- "North Central US",
- "East Asia",
- "Central US",
- "West US",
- "Australia Central",
- "Australia East",
- "Korea Central",
- "East US",
- "West US 2",
- "Brazil South",
- "UK South",
- "West Central US",
- "North Europe",
- "Canada Central",
- "Australia Southeast",
- "Central India",
- "France Central"
- ],
- "apiVersions": [
- "2020-01-13-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "fc75330b-179d-49af-87dd-3b1acf6827fa"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftAutomation"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "MicrosoftAutomationProdShoebox",
- "sourceMdmNamespace": "JobCount"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "mdsEnvironment": "prod",
- "onbehalfSupportedLogCategories": [
- "JobLogs",
- "JobStreams",
- "DscNodeStatus"
- ],
- "serviceIdentity": "MicrosoftAutomation"
- }
- ]
- },
- "version": "1.0"
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AutonomousDevelopmentPlatform",
- "namespace": "Microsoft.AutonomousDevelopmentPlatform",
- "authorizations": [
- {
- "applicationId": "dad37da6-229d-4bc0-8b94-fee8600589db",
- "roleDefinitionId": "5cbfe752-1a6e-4926-b68f-0475c305f85e",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- },
- {
- "applicationId": "150c8903-2280-4ab6-8708-b080044d94c6",
- "roleDefinitionId": "5cbfe752-1a6e-4926-b68f-0475c305f85e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "East US 2 EUAP",
- "West Europe"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checknameavailability",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AutonomousSystems",
- "namespace": "Microsoft.AutonomousSystems",
- "authorizations": [
- {
- "applicationId": "a967240f-810b-4f79-85e5-25870cc69cbb",
- "roleDefinitionId": "47b23f55-5e18-4fc7-a69a-f9b79a9811ea",
- "managedByRoleDefinitionId": "6ee14824-e3a8-4536-ad65-346e3406f3c4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "defaultApiVersion": "2020-05-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/validateCreateRequest",
- "locations": [
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "defaultApiVersion": "2020-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/operationresults",
- "locations": [
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "defaultApiVersion": "2020-05-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "defaultApiVersion": "2020-05-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a967240f-810b-4f79-85e5-25870cc69cbb"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AVS",
- "namespace": "Microsoft.AVS",
- "authorizations": [
- {
- "applicationId": "608f9929-9737-432e-860f-4e1c1821052f",
- "roleDefinitionId": "a12e1b40-7eca-4c51-be1d-d8bc564dcfdd",
- "allowedThirdPartyExtensions": [
- {
- "name": "VMCP"
- }
- ]
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkTrialAvailability",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkQuotaAvailability",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-07-17-preview",
- "2020-03-20"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.AVS"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "AVSShoebox2",
- "sourceMdmNamespace": "Vsphere.Cluster.ClusterServices"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateClouds/clusters",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/authorizations",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/hcxEnterpriseSites",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-03-20"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/globalReachConnections",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/addons",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/dhcpConfigurations",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/portMirroringProfiles",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/segments",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/vmGroups",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/gateways",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/virtualMachines",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/dnsServices",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/workloadNetworks/dnsZones",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2020-07-17-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateClouds/cloudLinks",
- "locations": [
- "East US",
- "North Central US",
- "West US",
- "West Europe",
- "Australia East",
- "South Central US",
- "Japan East",
- "UK South",
- "Canada Central",
- "North Europe",
- "Southeast Asia",
- "UK West",
- "East US 2",
- "Central US",
- "Australia Southeast",
- "Canada East",
- "East Asia"
- ],
- "apiVersions": [
- "2021-06-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-03-20",
- "operations": "2020-03-20"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.AVS"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "AVSShoebox2",
- "sourceMdmNamespace": "Vsphere.Datastore.Disk"
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "608f9929-9737-432e-860f-4e1c1821052f"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureActiveDirectory",
- "namespace": "Microsoft.AzureActiveDirectory",
- "resourceTypes": [
- {
- "resourceType": "guestUsages",
- "locations": [
- "Global",
- "United States",
- "Europe",
- "Asia Pacific",
- "Australia"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "defaultApiVersion": "2020-05-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "b2cDirectories",
- "locations": [
- "Global",
- "United States",
- "Europe",
- "Asia Pacific",
- "Australia"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-05-01-preview",
- "2019-01-01-privatepreview",
- "2019-01-01-preview",
- "2017-01-30",
- "2016-12-13-preview",
- "2016-02-10-privatepreview"
- ],
- "defaultApiVersion": "2017-01-30",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Global",
- "United States",
- "Europe",
- "Asia Pacific",
- "Australia"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-05-01-preview",
- "2019-01-01-privatepreview",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Global",
- "United States",
- "Europe",
- "Asia Pacific",
- "Australia"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-05-01-preview",
- "2019-01-01-privatepreview",
- "2019-01-01-preview",
- "2017-01-30",
- "2016-12-13-preview",
- "2016-02-10-privatepreview"
- ],
- "defaultApiVersion": "2017-01-30",
- "capabilities": "None"
- },
- {
- "resourceType": "b2ctenants",
- "locations": [
- "Global",
- "United States",
- "Europe",
- "Asia Pacific",
- "Australia"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-05-01-preview",
- "2016-02-10-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureArcData",
- "namespace": "Microsoft.AzureArcData",
- "authorizations": [
- {
- "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05",
- "roleDefinitionId": "2e103dbb-6933-4a8b-a358-17ee9ff00b9e"
- },
- {
- "applicationId": "bb55177b-a7d9-4939-a257-8ab53a3b2bc6",
- "roleDefinitionId": "53e71f1b-1471-4d76-9ca8-e6ed70639ef7"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2019-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2020-12-08-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "Japan East",
- "Australia East",
- "Korea Central",
- "UK South",
- "France Central",
- "East US 2",
- "Central US",
- "Central US EUAP",
- "West US 2",
- "East Asia",
- "East US",
- "East US 2 EUAP",
- "North Europe",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2019-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dataControllers",
- "locations": [
- "Japan East",
- "Australia East",
- "Korea Central",
- "UK South",
- "France Central",
- "East US 2",
- "Central US",
- "West US 2",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2020-12-08-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sqlManagedInstances",
- "locations": [
- "Japan East",
- "Australia East",
- "Korea Central",
- "UK South",
- "France Central",
- "East US 2",
- "Central US",
- "West US 2",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2020-12-08-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "postgresInstances",
- "locations": [
- "Japan East",
- "Australia East",
- "Korea Central",
- "UK South",
- "France Central",
- "East US 2",
- "Central US",
- "West US 2",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-preview",
- "2021-03-02-preview",
- "2020-12-08-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sqlServerInstances",
- "locations": [
- "Australia East",
- "UK South",
- "East US 2",
- "Central US",
- "East US",
- "North Europe",
- "Southeast Asia",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2020-12-08-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureCIS",
- "namespace": "Microsoft.AzureCIS",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "autopilotEnvironments",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "Southeast Asia",
- "South Central US",
- "UAE North",
- "UK South",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureData",
- "namespace": "Microsoft.AzureData",
- "resourceTypes": [
- {
- "resourceType": "sqlServerRegistrations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "France Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West US",
- "East US",
- "Central US",
- "East Asia",
- "West Europe",
- "West Central US",
- "West US 2",
- "East US 2"
- ],
- "apiVersions": [
- "2019-05-10-preview"
- ],
- "defaultApiVersion": "2019-05-10-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "France Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "South India",
- "South Africa North",
- "UK South",
- "UK West",
- "West US",
- "East US",
- "Central US",
- "East Asia",
- "West Europe",
- "West Central US",
- "West US 2",
- "East US 2"
- ],
- "apiVersions": [
- "2019-05-10-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sqlServerRegistrations/sqlServers",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "France Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "South India",
- "South Africa North",
- "UK South",
- "UK West",
- "West US",
- "East US",
- "Central US",
- "East Asia",
- "West Europe",
- "West Central US",
- "West US 2",
- "East US 2"
- ],
- "apiVersions": [
- "2019-05-10-preview"
- ],
- "defaultApiVersion": "2019-05-10-preview",
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureSphere",
- "namespace": "Microsoft.AzureSphere",
- "authorizations": [
- {
- "applicationId": "e7d5afaf-5e93-4aad-b546-878812ff572c",
- "roleDefinitionId": "0bf1834f-602f-4692-b93c-814d655198fd"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "catalogs",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "catalogs/products",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs/products/devicegroups",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs/devices",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs/certificates",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs/images",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs/deployments",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureStack",
- "namespace": "Microsoft.AzureStack",
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2017-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registrations",
- "locations": [
- "West Central US",
- "Global"
- ],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-06-01-preview",
- "2017-06-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "registrations/products",
- "locations": [
- "West Central US",
- "Global"
- ],
- "apiVersions": [
- "2017-06-01",
- "2016-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registrations/customerSubscriptions",
- "locations": [
- "West Central US",
- "Global"
- ],
- "apiVersions": [
- "2017-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "cloudManifestFiles",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2017-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "linkedSubscriptions",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureStackHCI",
- "namespace": "Microsoft.AzureStackHCI",
- "authorizations": [
- {
- "applicationId": "1412d89f-b8a8-4111-b4fd-e82905cbd85d",
- "roleDefinitionId": "90ffa33f-4875-44d8-b86f-d41c3aa6050e",
- "managedByRoleDefinitionId": "5ece1ad5-ab30-4099-b16c-3aa7c8f5acb9"
- },
- {
- "applicationId": "1322e676-dee7-41ee-a874-ac923822781c",
- "roleDefinitionId": "e91a9804-9f4d-4501-bf85-03bd4ea78451"
- },
- {
- "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05",
- "roleDefinitionId": "12580382-2aec-4b61-ae1c-ecbdb4a0a25f"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-11-01-preview",
- "2020-10-01",
- "2020-03-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-11-01-preview",
- "2020-10-01"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US",
- "East US 2 EUAP",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-10-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "clusters",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-10-01"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters/arcSettings",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/arcSettings/extensions",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-01-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BareMetalInfrastructure",
- "namespace": "Microsoft.BareMetalInfrastructure",
- "authorization": {
- "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39",
- "roleDefinitionId": "4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- },
- "resourceTypes": [
- {
- "resourceType": "bareMetalInstances",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "South Central US",
- "West Europe",
- "North Europe",
- "Japan East",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "South Central US",
- "West Europe",
- "North Europe",
- "Japan East",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "South Central US",
- "West Europe",
- "North Europe",
- "Japan East",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-08-06-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BatchAI",
- "namespace": "Microsoft.BatchAI",
- "authorization": {
- "applicationId": "9fcb3732-5f52-4135-8c08-9d4bbaf203ea",
- "roleDefinitionId": "703B89C7-CE2C-431B-BDD8-FA34E39AF696",
- "managedByRoleDefinitionId": "90B8E153-EBFF-4073-A95F-4DAD56B14C78"
- },
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ViennaAzureMonitor",
- "sourceMdmNamespace": "vienna"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices",
- "onbehalfSupportedLogCategories": [
- "BaiJobEvent",
- "BaiClusterNodeEvent",
- "BaiClusterEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/clusters",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/fileservers",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/experiments",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ViennaAzureMonitor",
- "sourceMdmNamespace": "vienna"
- }
- ]
- }
- }
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/experiments/jobs",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ViennaAzureMonitor",
- "sourceMdmNamespace": "vienna"
- }
- ]
- }
- }
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US",
- "West US 2",
- "West Europe",
- "East US 2",
- "North Europe",
- "Australia East",
- "West Central US",
- "Southeast Asia",
- "South Central US",
- "West US"
- ],
- "apiVersions": [
- "2018-05-01",
- "2018-03-01",
- "2017-09-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-05-01",
- "operations": "2018-05-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ViennaAzureMonitor",
- "sourceMdmNamespace": "vienna"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices",
- "onbehalfSupportedLogCategories": [
- "BaiJobEvent",
- "BaiClusterNodeEvent",
- "BaiClusterEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Billing",
- "namespace": "Microsoft.Billing",
- "authorizations": [
- {
- "applicationId": "80dbdb39-4f33-4799-8b6f-711b5e3e61b6",
- "roleDefinitionId": "acdc79db-513f-461d-a542-61908d543bdc"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "billingPeriods",
- "locations": [],
- "apiVersions": [
- "2018-03-01-preview",
- "2017-04-24-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "invoices",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview",
- "2018-03-01-preview",
- "2017-04-24-preview",
- "2017-02-27-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "enrollmentAccounts",
- "locations": [],
- "apiVersions": [
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "createBillingRoleAssignment",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "billingAccounts/createBillingRoleAssignment",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/createBillingRoleAssignment",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingPermissions",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "billingAccounts/billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview",
- "2018-06-30",
- "2018-05-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/policies",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/operationResults",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/customers",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/instructions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/products",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/transactions",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/elevate",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/createInvoiceSectionOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/patchOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/patchOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/productMoveOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/billingSubscriptionMoveOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/BillingProfiles/patchOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "departments",
- "locations": [],
- "apiVersions": [
- "2018-06-30",
- "2018-05-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/departments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2019-10-01-preview",
- "2018-06-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/departments/billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/departments/billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/departments/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/enrollmentAccounts",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2019-10-01-preview",
- "2018-06-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/enrollmentAccounts/billingRoleDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/enrollmentAccounts/billingRoleAssignments",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/enrollmentAccounts/billingPermissions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/enrollmentAccounts/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/departments/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/paymentMethods",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/availableBalance",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoices",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoices",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/transactions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/transactions",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/transactions",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/transactions",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoices/transactions",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoices/transactions",
- "locations": [],
- "apiVersions": [
- "2020-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/validateDeleteBillingProfileEligibility",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/validateDeleteInvoiceSectionEligibility",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoices/transactionSummary",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingSubscriptions/invoices",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/billingSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationStatus",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/products",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/products",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/products/updateAutoRenew",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/products/updateAutoRenew",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/products",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/products",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-09-01-preview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview",
- "2018-06-30",
- "2018-03-01-preview",
- "2017-04-24-preview",
- "2017-02-27-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/initiateTransfer",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/initiateTransfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/transfers",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/transfers",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "transfers/acceptTransfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "transfers",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "transfers/declineTransfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "transfers/validateTransfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/initiateTransfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/transfers",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingProperty",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/policies",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/customers/policies",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoices/pricesheet",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/pricesheet",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/pricesheetDownloadOperations",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/billingSubscriptions/transfer",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/products/transfer",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/invoiceSections/products/transfer",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/invoiceSections/productTransfersResults",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "transfers/operationStatus",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/agreements",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/lineOfCredit",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/paymentMethods",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "paymentMethods",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/paymentMethodLinks",
- "locations": [],
- "apiVersions": [
- "2020-11-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/payableOverage",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/payNow",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/reservations",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/reservations",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingProfiles/validateDetachPaymentMethodEligibility",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validateAddress",
- "locations": [],
- "apiVersions": [
- "2020-05-01",
- "2019-10-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "promotions",
- "locations": [],
- "apiVersions": [
- "2020-11-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "promotions/checkeligibility",
- "locations": [],
- "apiVersions": [
- "2020-11-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/billingSubscriptions/elevateRole",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "billingAccounts/appliedReservationOrders",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-beta"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Bing",
- "namespace": "Microsoft.Bing",
- "authorizations": [
- {
- "applicationId": "c19490b5-c092-426f-b1a2-674b279d4975",
- "roleDefinitionId": "7963cd60-9634-4abc-9a64-2482a3ef6373"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/skus",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/usages",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "West US",
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-10"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Blockchain",
- "namespace": "Microsoft.Blockchain",
- "authorizations": [
- {
- "applicationId": "78827f38-7b69-4d5e-a627-d6fdd9c759a0",
- "roleDefinitionId": "9c68eaf3-8315-4e5c-b857-641b16b21f8f"
- },
- {
- "applicationId": "049d4938-2ef2-4274-aa8f-630fc9bc33d1",
- "roleDefinitionId": "c6dd0893-0495-488a-ac21-ee5f1ba89769"
- },
- {
- "applicationId": "911e905a-a50e-4c94-9f7c-48bb12f549ed"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "watchers",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "defaultApiVersion": "2019-06-01-preview",
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "blockchainMembers",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/watcherOperationResults",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "defaultApiVersion": "2019-06-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East",
- "West Central US"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/blockchainMemberOperationResults",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/listConsortiums",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US",
- "Southeast Asia",
- "West Europe",
- "North Europe",
- "West US 2",
- "Japan East",
- "West Central US"
- ],
- "apiVersions": [
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-06-01-preview",
- "operations": "2018-06-01-preview"
- },
- "metrics": {
- "metricsFilterPathSelector": "kind",
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftBlockchainShoebox",
- "sourceMdmNamespace": "NodeMetrics"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Blockchain"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Blockchain",
- "onbehalfSupportedLogCategories": [
- "BlockchainApplication",
- "Proxy",
- "FabricOrderer",
- "FabricPeer"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BlockchainTokens",
- "namespace": "Microsoft.BlockchainTokens",
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2019-07-19-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Blueprint",
- "namespace": "Microsoft.Blueprint",
- "authorizations": [
- {
- "applicationId": "f71766dc-90d9-4b7d-bd9d-4499c4331c3f",
- "roleDefinitionId": "cb180127-cf6d-4672-9e75-e29a487f9658"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "blueprints",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "blueprints/artifacts",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "blueprints/versions",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "blueprints/versions/artifacts",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "blueprintAssignments",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsExtension"
- },
- {
- "resourceType": "blueprintAssignments/operations",
- "locations": [],
- "apiVersions": [
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "blueprintAssignments/assignmentOperations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-11-01-preview",
- "2018-11-01-alpha",
- "2017-11-11-preview",
- "2017-11-11-alpha"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "f71766dc-90d9-4b7d-bd9d-4499c4331c3f"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BotService",
- "namespace": "Microsoft.BotService",
- "authorizations": [
- {
- "applicationId": "f3723d34-6ff5-4ceb-a148-d99dcd2511fc",
- "roleDefinitionId": "71213c26-43ed-41d8-9905-3c12971517a3"
- },
- {
- "applicationId": "27a762be-14e7-4f92-899c-151877d6d497",
- "roleDefinitionId": "aab320d1-5b9b-4748-982e-be803163df77"
- },
- {
- "applicationId": "5b404cf4-a79d-4cfe-b866-24bf8e1a4921",
- "roleDefinitionId": "3d07f186-e6fa-4974-ac88-b88eeda6370a"
- },
- {
- "applicationId": "ce48853e-0605-4f77-8746-d70ac63cc6bc",
- "roleDefinitionId": "d5b49851-91ee-42df-9dc4-00b3a3b4d96b"
- },
- {
- "applicationId": "e6650347-047f-4e51-9386-839384472ea5",
- "roleDefinitionId": "a9b54502-e245-45bc-bd0f-aa7e1074afdc"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "botServices",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2021-03-01",
- "operations": "2021-03-01"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "BotServices",
- "onbehalfSupportedLogCategories": [
- "BotRequest",
- "DependencyRequest"
- ]
- }
- ]
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "BotServices"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "BotFrameworkPlatform",
- "sourceMdmNamespace": "Metrics"
- }
- ]
- },
- "regionLess": true
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "botServices/channels",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "botServices/connections",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listAuthServiceProviders",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "hostSettings",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Global"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-06-02",
- "2018-07-12",
- "2017-12-01"
- ],
- "defaultApiVersion": "2021-03-01",
- "apiProfiles": [
- {
- "profileVersion": "2017-03-09-profile",
- "apiVersion": "2017-12-01"
- },
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-12"
- },
- {
- "profileVersion": "2020-09-01-hybrid",
- "apiVersion": "2020-06-02"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2021-03-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Capacity",
- "namespace": "Microsoft.Capacity",
- "authorizations": [
- {
- "applicationId": "4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b",
- "roleDefinitionId": "FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"
- },
- {
- "applicationId": "fbc197b7-9e9c-4f98-823f-93cb1cb554e6",
- "roleDefinitionId": "941F67D2-083A-4B78-AF91-9B3B30B9B150"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "resourceProviders",
- "locations": [],
- "apiVersions": [
- "2020-10-25",
- "2019-07-19-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceProviders/locations",
- "locations": [],
- "apiVersions": [
- "2020-10-25",
- "2019-07-19-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceProviders/locations/serviceLimits",
- "locations": [],
- "apiVersions": [
- "2020-10-25",
- "2019-07-19-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceProviders/locations/serviceLimitsRequests",
- "locations": [],
- "apiVersions": [
- "2020-10-25",
- "2019-07-19-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resources",
- "locations": [
- "South Central US"
- ],
- "apiVersions": [
- "2019-04-01",
- "2018-06-01",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders",
- "locations": [],
- "apiVersions": [
- "2020-11-15-preview",
- "2020-11-15-beta",
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2020-06-01",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/reservations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2021-03-01-beta",
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listbenefits",
- "locations": [],
- "apiVersions": [
- "2019-04-01-beta",
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2020-06-01",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/reservations/revisions",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "catalogs",
- "locations": [],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2021-03-01-beta",
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "appliedReservations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkOffers",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkScopes",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "calculatePrice",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "calculateExchange",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "exchange",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/calculateRefund",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/return",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2020-06-01",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/split",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/merge",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/swap",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validateReservationOrder",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/availableScopes",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta",
- "2020-06-01-beta",
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01",
- "2017-11-01-beta",
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "reservationOrders/reservations/availableScopes",
- "locations": [],
- "apiVersions": [
- "2019-04-01-beta",
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "commercialReservationOrders",
- "locations": [],
- "apiVersions": [
- "2019-04-01-beta",
- "2019-04-01",
- "2018-06-01-beta",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "calculatePurchasePrice",
- "locations": [],
- "apiVersions": [
- "2019-06-01-privatepreview",
- "2019-06-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "placePurchaseOrder",
- "locations": [],
- "apiVersions": [
- "2019-06-01-privatepreview",
- "2019-06-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkPurchaseStatus",
- "locations": [],
- "apiVersions": [
- "2019-06-01-privatepreview",
- "2019-06-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ownReservations",
- "locations": [],
- "apiVersions": [
- "2020-06-01-beta",
- "2020-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2020-10-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listSkus",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2021-01-01-beta"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "checkBenefitScopes",
- "locations": [],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2021-03-01-beta"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cascade",
- "namespace": "Microsoft.Cascade",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "sites",
- "locations": [
- "West US",
- "North Europe"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Locations/operationStatuses",
- "locations": [
- "West US",
- "Japan East",
- "North Europe"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Operations",
- "locations": [
- "West US",
- "Japan East",
- "North Europe"
- ],
- "apiVersions": [
- "2020-11-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ChangeAnalysis",
- "namespace": "Microsoft.ChangeAnalysis",
- "authorizations": [
- {
- "applicationId": "2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8",
- "roleDefinitionId": "f5a6bd90-af71-455c-9030-c486e8c42c95"
- },
- {
- "applicationId": "3edcf11f-df80-41b2-a5e4-7e213cca30d1",
- "roleDefinitionId": "f5a6bd90-af71-455c-9030-c486e8c42c95"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-04-01-preview",
- "2019-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceChanges",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-04-01",
- "2020-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "changes",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-04-01",
- "2020-10-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "changeSnapshots",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "computeChanges",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationIds": [
- "2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8",
- "3edcf11f-df80-41b2-a5e4-7e213cca30d1"
- ]
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Chaos",
- "namespace": "Microsoft.Chaos",
- "authorizations": [
- {
- "applicationId": "ecad3f28-c75d-4414-94e0-a5e1de4df79e",
- "roleDefinitionId": "16f6458e-a375-4d8d-934e-5c9933967cb4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-05-14-preview",
- "2021-04-02-preview",
- "2021-03-05-preview",
- "2021-02-12-preview",
- "2021-01-21-preview",
- "2020-11-30-preview",
- "2020-09-23-preview",
- "2020-09-14-preview",
- "2020-06-18-preview",
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "ecad3f28-c75d-4414-94e0-a5e1de4df79e"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicInfrastructureMigrate",
- "namespace": "Microsoft.ClassicInfrastructureMigrate",
- "authorization": {
- "applicationId": "5e5abe2b-83cd-4786-826a-a05653ebb103",
- "roleDefinitionId": "766c4d9b-ef83-4f73-8352-1450a506a69b"
- },
- "resourceTypes": [
- {
- "resourceType": "classicInfrastructureResources",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "Central India",
- "West India",
- "South India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "Australia Central",
- "Australia Central 2",
- "Germany North",
- "Germany West Central",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "Switzerland North",
- "Switzerland West",
- "UAE Central",
- "UAE North"
- ],
- "apiVersions": [
- "2015-06-15"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicSubscription",
- "namespace": "Microsoft.ClassicSubscription",
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-09-01",
- "2017-06-01"
- ],
- "defaultApiVersion": "2017-06-01",
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Codespaces",
- "namespace": "Microsoft.Codespaces",
- "authorizations": [
- {
- "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6",
- "roleDefinitionId": "59cd8abb-1e79-437f-9a05-4bca235c4c35"
- },
- {
- "applicationId": "48ef7923-268f-473d-bcf1-07f0997961f4",
- "roleDefinitionId": "59cd8abb-1e79-437f-9a05-4bca235c4c35"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "plans",
- "locations": [
- "West Europe",
- "East US",
- "West Us 2",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-07-10-beta",
- "2020-07-10-alpha",
- "2020-06-16-beta",
- "2020-06-16-alpha",
- "2020-06-16"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-07-10-privatepreview",
- "2020-07-10-beta",
- "2020-07-10-alpha",
- "2020-06-16-privatepreview",
- "2020-06-16-beta",
- "2020-06-16-alpha",
- "2020-06-16"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-07-10-privatepreview",
- "2020-07-10-beta",
- "2020-07-10-alpha",
- "2020-06-16-privatepreview",
- "2020-06-16-beta",
- "2020-06-16-alpha",
- "2020-06-16"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub",
- "Microsoft.ManagedIdentity": {
- "applicationId": "5e40b565-3ac2-4fbc-871e-068b78151bb0"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Commerce",
- "namespace": "Microsoft.Commerce",
- "resourceTypes": [
- {
- "resourceType": "UsageAggregates",
- "locations": [],
- "apiVersions": [
- "2015-06-01-preview",
- "2015-03-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "RateCard",
- "locations": [],
- "apiVersions": [
- "2016-08-31-preview",
- "2015-06-01-preview",
- "2015-05-15"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-06-01-preview",
- "2015-03-31"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConfidentialLedger",
- "namespace": "Microsoft.ConfidentialLedger",
- "authorizations": [
- {
- "applicationId": "4353526e-1c33-4fcf-9e82-9683edf52848"
- },
- {
- "applicationId": "c9e0b461-3515-4a03-b576-ede91ed4336d"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2021-05-13-preview",
- "2020-12-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/operationstatuses",
- "locations": [
- "East US 2 EUAP",
- "East US",
- "South Central US"
- ],
- "apiVersions": [
- "2021-05-13-preview",
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Ledgers",
- "locations": [
- "East US",
- "South Central US"
- ],
- "apiVersions": [
- "2021-05-13-preview",
- "2020-12-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-05-13-preview"
- ],
- "defaultApiVersion": "2021-05-13-preview",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Confluent",
- "namespace": "Microsoft.Confluent",
- "authorizations": [
- {
- "applicationId": "1448fd13-7e74-41f4-b6e3-17e485d8ac2e",
- "roleDefinitionId": "4db34280-b0be-4827-aa5b-418391409cee"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/OperationStatuses",
- "locations": [
- "West US 2",
- "East US 2 EUAP",
- "Central US EUAP",
- "West Central US",
- "Australia East",
- "France Central",
- "Canada Central",
- "East US",
- "UK South",
- "West Europe",
- "Central US",
- "East US 2",
- "North Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "organizations",
- "locations": [
- "West US 2",
- "West Central US",
- "Australia East",
- "France Central",
- "Canada Central",
- "East US",
- "UK South",
- "West Europe",
- "Central US",
- "East US 2",
- "North Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "agreements",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "validations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedCache",
- "namespace": "Microsoft.ConnectedCache",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "CacheNodes",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2019-12-04-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedVehicle",
- "namespace": "Microsoft.ConnectedVehicle",
- "authorizations": [
- {
- "applicationId": "070fc472-7cef-4d53-9b65-34464c4d5f4a",
- "roleDefinitionId": "d9be9a0d-13a3-4571-9428-498be31834b1"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "Central US EUAP",
- "East US 2 EUAP",
- "West US 2",
- "West Europe",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "070fc472-7cef-4d53-9b65-34464c4d5f4a"
- },
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedVMwarevSphere",
- "namespace": "Microsoft.ConnectedVMwarevSphere",
- "authorizations": [
- {
- "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7",
- "roleDefinitionId": "a27a5b7c-3d1a-4e97-b0ad-195eef808eb6"
- },
- {
- "applicationId": "157638eb-a5cb-4c10-af42-2d6759eb1871",
- "roleDefinitionId": "59a59e1d-c18a-4c7c-8a99-2b5b311f08d2"
- },
- {
- "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1",
- "roleDefinitionId": "59a59e1d-c18a-4c7c-8a99-2b5b311f08d2"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US",
- "East US 2 EUAP",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "VCenters/InventoryItems",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "VirtualMachines/HybridIdentityMetadata",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "VirtualMachines/Extensions",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "VirtualMachines/GuestAgents",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Consumption",
- "namespace": "Microsoft.Consumption",
- "authorizations": [
- {
- "applicationId": "c5b17a4f-cc6f-4649-9480-684280a2af3a",
- "roleDefinitionId": "4a2e6ae9-2713-4cc9-a3b3-312899d687c3"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Forecasts",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "AggregatedCost",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "tenants",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationRecommendations",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01-preview",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-03-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationRecommendationDetails",
- "locations": [],
- "apiVersions": [
- "2019-10-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationSummaries",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01-preview",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationTransactions",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Balances",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Marketplaces",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Pricesheets",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview",
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationDetails",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01-preview",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Budgets",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2019-01-01-preview",
- "2019-01-01",
- "2018-12-01-preview",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-03-31",
- "2018-01-31",
- "2017-12-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "CostTags",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Tags",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2019-01-01",
- "2018-12-01-preview",
- "2018-10-01",
- "2018-08-31",
- "2018-08-01-preview",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Terms",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-03-31",
- "2018-01-31",
- "2017-12-30-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "UsageDetails",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-05-01",
- "2019-04-01-preview",
- "2019-01-01",
- "2018-12-01-preview",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview",
- "2017-04-24-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Charges",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01-preview",
- "2019-05-01",
- "2019-01-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "credits",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2019-10-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "events",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2019-10-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "lots",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2019-10-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "products",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "OperationStatus",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-05-01",
- "2019-04-01-preview",
- "2019-01-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "OperationResults",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-05-01",
- "2019-04-01-preview",
- "2019-01-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-01-01",
- "2018-11-01-preview",
- "2018-10-01",
- "2018-08-31",
- "2018-06-30",
- "2018-05-31",
- "2018-03-31",
- "2018-01-31",
- "2017-11-30",
- "2017-06-30-preview",
- "2017-04-24-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ContainerInstance",
- "namespace": "Microsoft.ContainerInstance",
- "authorizations": [
- {
- "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9",
- "roleDefinitionId": "3c60422b-a83a-428d-9830-22609c77aa6c"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "containerGroups",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serviceAssociationLinks",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capabilities",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/cachedImages",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deleteVirtualNetworkOrSubnets",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2019-12-01",
- "2018-12-01",
- "2018-10-01",
- "2018-09-01",
- "2018-07-01",
- "2018-06-01",
- "2018-04-01",
- "2018-02-01-preview",
- "2017-12-01-preview",
- "2017-10-01-preview",
- "2017-08-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "gpuRegionalSkus": [
- {
- "skus": [
- "V100"
- ],
- "location": "centralindia"
- },
- {
- "skus": [
- "V100",
- "P100",
- "K80"
- ],
- "location": "eastus"
- },
- {
- "skus": [
- "K80"
- ],
- "location": "northeurope"
- },
- {
- "skus": [
- "V100",
- "P100",
- "K80"
- ],
- "location": "southcentralus"
- },
- {
- "skus": [
- "V100",
- "P100"
- ],
- "location": "southeastasia"
- },
- {
- "skus": [
- "V100",
- "P100",
- "K80"
- ],
- "location": "westeurope"
- },
- {
- "skus": [
- "V100",
- "P100",
- "K80"
- ],
- "location": "westus2"
- }
- ],
- "vnetSupportRegions": [
- "australiaeast",
- "australiasoutheast",
- "brazilsouth",
- "canadacentral",
- "canadaeast",
- "centralindia",
- "centralus",
- "centraluseuap",
- "eastasia",
- "eastus",
- "eastus2",
- "eastus2euap",
- "francecentral",
- "germanywestcentral",
- "japaneast",
- "japanwest",
- "koreacentral",
- "northcentralus",
- "northeurope",
- "norwayeast",
- "southcentralus",
- "southeastasia",
- "southindia",
- "switzerlandnorth",
- "uaenorth",
- "uksouth",
- "ukwest",
- "westcentralus",
- "westeurope",
- "westus",
- "westus2"
- ],
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "apiVersions": {
- "default": "2017-12-01-preview",
- "operations": "2017-12-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.ContainerInstance"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmNamespace": "AzureMonitoringMetrics",
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftContainerInstanceShoebox"
- }
- ]
- },
- "version": "1.0"
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CostManagement",
- "namespace": "Microsoft.CostManagement",
- "authorizations": [
- {
- "applicationId": "3184af01-7a88-49e0-8b55-8ecdce0aa950"
- },
- {
- "applicationId": "6b3368c6-61d2-4a72-854c-42d1c4e71fed"
- },
- {
- "applicationId": "997dc448-eeab-4c93-8811-6b2c80196a16"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Connectors",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2018-08-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "CloudConnectors",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "CheckConnectorEligibility",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalBillingAccounts",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalBillingAccounts/Dimensions",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalBillingAccounts/Query",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalSubscriptions/Dimensions",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalSubscriptions/Query",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalSubscriptions",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Forecast",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2018-12-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ExternalSubscriptions/Forecast",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2018-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalBillingAccounts/Forecast",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2018-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Settings",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-01-01",
- "2018-10-01",
- "2018-08-31",
- "2018-08-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "register",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview",
- "2017-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Query",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2019-01-01",
- "2018-12-01-preview",
- "2018-10-01-preview",
- "2018-08-31",
- "2018-08-01-preview",
- "2018-05-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Dimensions",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-05-01-preview",
- "2019-04-01-preview",
- "2019-03-01-preview",
- "2019-01-01",
- "2018-12-01-preview",
- "2018-10-01-preview",
- "2018-08-31",
- "2018-08-01-preview",
- "2018-05-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Budgets",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ExternalSubscriptions/Alerts",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "ExternalBillingAccounts/Alerts",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Alerts",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2018-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "showbackRules",
- "locations": [],
- "apiVersions": [
- "2019-03-01-preview",
- "2019-02-03-alpha",
- "2019-02-02-alpha",
- "2019-02-01-alpha"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "costAllocationRules",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Exports",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01-preview",
- "2020-06-01",
- "2020-05-01-preview",
- "2019-11-01",
- "2019-10-01",
- "2019-09-01",
- "2019-01-01-preview",
- "2019-01-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Reports",
- "locations": [],
- "apiVersions": [
- "2018-12-01-preview",
- "2018-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Reportconfigs",
- "locations": [],
- "apiVersions": [
- "2018-05-31"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "BillingAccounts",
- "locations": [],
- "apiVersions": [
- "2018-03-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Departments",
- "locations": [],
- "apiVersions": [
- "2018-03-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "EnrollmentAccounts",
- "locations": [],
- "apiVersions": [
- "2018-03-31"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Views",
- "locations": [],
- "apiVersions": [
- "2019-11-01",
- "2019-10-01",
- "2019-04-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ScheduledActions",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "CheckNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Insights",
- "locations": [],
- "apiVersions": [
- "2020-08-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "fetchPrices",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "GenerateReservationDetailsReport",
- "locations": [],
- "apiVersions": [
- "2019-11-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "ReservationDetailsOperationResults",
- "locations": [],
- "apiVersions": [
- "2019-11-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "GenerateDetailedCostReport",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "OperationStatus",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "OperationResults",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-12-01-preview"
- ],
- "capabilities": "SupportsExtension"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CostManagementExports",
- "namespace": "Microsoft.CostManagementExports",
- "authorizations": [
- {
- "applicationId": "e5408ad0-c4e2-43aa-b6f2-3b4951286d99",
- "roleDefinitionId": "5e4888b3-2747-4e5b-9897-ec0865b91bcf"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CustomerLockbox",
- "namespace": "Microsoft.CustomerLockbox",
- "authorizations": [
- {
- "applicationId": "a0551534-cfc9-4e1f-9a7a-65093b32bb38",
- "roleDefinitionId": "114bcfb6-5524-4d80-948a-d8a9937bc3e5"
- },
- {
- "applicationId": "01fc33a7-78ba-4d2f-a4b7-768e336e890e"
- },
- {
- "applicationId": "d8c767ef-3e9a-48c4-aef9-562696539b39"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "TenantOptedIn",
- "locations": [],
- "apiVersions": [
- "2018-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "EnableLockbox",
- "locations": [],
- "apiVersions": [
- "2018-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "DisableLockbox",
- "locations": [],
- "apiVersions": [
- "2018-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "requests",
- "locations": [],
- "apiVersions": [
- "2018-02-28-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CustomProviders",
- "namespace": "Microsoft.CustomProviders",
- "authorization": {
- "applicationId": "bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5",
- "roleDefinitionId": "FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7"
- },
- "resourceTypes": [
- {
- "resourceType": "resourceProviders",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "East US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Canada Central",
- "Canada East"
- ],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "associations",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "East US",
- "West US 2",
- "West Europe",
- "North Europe",
- "Canada Central",
- "Canada East"
- ],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-09-01-preview",
- "operations": "2018-09-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.CustomProviders"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftCustomProvidersShoebox",
- "sourceMdmNamespace": "MgmtExpWebApi"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.CustomProviders",
- "onbehalfSupportedLogCategories": [
- "AuditLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.D365CustomerInsights",
- "namespace": "Microsoft.D365CustomerInsights",
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-06-10-privatepreview",
- "2020-06-10-preview",
- "2020-06-10-beta"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationIds": [
- "38c77d00-5fcb-4cce-9d93-af4738258e3c",
- "0bfc4568-a4ba-4c58-bd3e-5d3e76bd7fff"
- ]
- },
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-06-10-preview",
- "operations": "2020-06-10-preview"
- },
- "mdmInfo": [
- {
- "sourceMdmAccount": "Customer360Prod",
- "sourceMdmNamespace": "Customer360Prod"
- },
- {
- "sourceMdmAccount": "Customer360PPE",
- "sourceMdmNamespace": "Customer360PPPE"
- }
- ],
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.D365CustomerInsights",
- "onbehalfSupportedLogCategories": [
- "Audit",
- "Operational"
- ]
- }
- ]
- },
- "regionLess": true
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataBox",
- "namespace": "Microsoft.DataBox",
- "authorizations": [
- {
- "applicationId": "5613cb5c-a7c9-4099-8034-511fd7616cb2",
- "roleDefinitionId": "382D72D1-63DC-4243-9B99-CB69FDD473D8",
- "managedByRoleDefinitionId": "f4c0a4f9-768c-4927-ab83-d319111d6ef4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "jobs",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/validateAddress",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/availableSkus",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/validateInputs",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/regionConfiguration",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "South India",
- "Australia East",
- "Canada Central",
- "Korea Central",
- "Japan East",
- "South Africa North",
- "Brazil South",
- "UAE Central",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-11-01",
- "2020-04-01",
- "2019-09-01",
- "2018-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "5613cb5c-a7c9-4099-8034-511fd7616cb2"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataBoxEdge",
- "namespace": "Microsoft.DataBoxEdge",
- "authorizations": [
- {
- "applicationId": "2368d027-f996-4edb-bf48-928f98f2ab8c"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "DataBoxEdgeDevices",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-02-01",
- "2020-12-01",
- "2020-09-01-preview",
- "2020-09-01",
- "2020-07-01-preview",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01-preview",
- "2020-01-01",
- "2019-08-01",
- "2019-07-01",
- "2019-03-01",
- "2018-07-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2021-02-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "DataBoxEdgeDevices/checkNameAvailability",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-02-01",
- "2020-12-01",
- "2020-09-01-preview",
- "2020-09-01",
- "2020-07-01-preview",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01-preview",
- "2020-01-01",
- "2019-08-01",
- "2019-07-01",
- "2019-03-01",
- "2018-07-01",
- "2017-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-02-01",
- "2020-12-01",
- "2020-09-01-preview",
- "2020-09-01",
- "2020-07-01-preview",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01-preview",
- "2020-01-01",
- "2019-08-01",
- "2019-07-01",
- "2019-03-01",
- "2018-07-01",
- "2017-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "availableSkus",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2020-09-01-preview",
- "2020-09-01",
- "2020-07-01-preview",
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-09-01",
- "operations": "2017-09-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.DataBoxEdge"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDataBoxEdgeShoebox",
- "sourceMdmNamespace": "Gateway"
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "7894de8a-09af-4805-bc2e-4b19797c0d95"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Databricks",
- "namespace": "Microsoft.Databricks",
- "authorizations": [
- {
- "applicationId": "d9327919-6775-4843-9037-3fb0fb0473cb",
- "roleDefinitionId": "f31567d0-b61f-43c2-97a5-a98cdc3bfcb6",
- "managedByRoleDefinitionId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635"
- },
- {
- "applicationId": "2ff814a6-3304-4ab8-85cb-cd0e6f879c1d",
- "roleDefinitionId": "f31567d0-b61f-43c2-97a5-a98cdc3bfcb6",
- "managedByRoleDefinitionId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "East US",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "France Central",
- "UAE North",
- "Norway East"
- ],
- "apiVersions": [
- "2018-04-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-04-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "DatabrickAuditLogs"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "spearfishgenevahotpath",
- "sourceMdmNamespace": "Canary"
- }
- ]
- },
- "logs": {
- "logFilterPathSelector": "sku.name",
- "mdsInfo": [
- {
- "serviceIdentity": "DatabrickAuditLogs",
- "onbehalfSupportedLogCategories": [
- "dbfs",
- "clusters",
- "accounts",
- "jobs",
- "notebook",
- "ssh",
- "workspace",
- "secrets",
- "sqlPermissions",
- "tables",
- "instancePools",
- "sqlanalytics",
- "genie",
- "globalInitScripts",
- "iamRole",
- "mlflowExperiment",
- "featureStore",
- "RemoteHistoryService",
- "mlflowAcledArtifact"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/virtualNetworkPeerings",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "North Europe",
- "East US",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Brazil South",
- "France Central",
- "Switzerland North",
- "Norway East"
- ],
- "apiVersions": [
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/dbWorkspaces",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "North Europe",
- "East US",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Brazil South",
- "France Central",
- "Switzerland North",
- "Norway East"
- ],
- "apiVersions": [
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "West Europe",
- "Japan East",
- "East US",
- "Korea Central",
- "Central US",
- "East US 2",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "South Africa North",
- "UAE North",
- "Brazil South",
- "France Central",
- "Switzerland North",
- "Norway East"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "North Europe",
- "East US",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "UAE North",
- "Brazil South",
- "France Central",
- "Switzerland North",
- "Norway East"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2018-04-01",
- "2018-03-15",
- "2018-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "East US",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "France Central",
- "UAE North",
- "Norway East"
- ],
- "apiVersions": [
- "2018-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/getNetworkPolicies",
- "locations": [
- "West US",
- "East US 2",
- "West Europe",
- "East US",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "South Central US",
- "North Central US",
- "West US 2",
- "Central US",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Japan East",
- "Japan West",
- "Canada Central",
- "Canada East",
- "Central India",
- "South India",
- "West India",
- "Korea Central",
- "South Africa North",
- "Brazil South",
- "Switzerland North",
- "France Central",
- "UAE North",
- "Norway East"
- ],
- "apiVersions": [
- "2018-04-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationIds": [
- "d9327919-6775-4843-9037-3fb0fb0473cb",
- "2ff814a6-3304-4ab8-85cb-cd0e6f879c1d"
- ]
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-04-01",
- "operations": "2018-03-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "DatabrickAuditLogs"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "spearfishgenevahotpath",
- "sourceMdmNamespace": "Canary"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataCatalog",
- "namespace": "Microsoft.DataCatalog",
- "authorization": {
- "applicationId": "213f5f78-fb30-46c7-9e98-91c720a1c026",
- "roleDefinitionId": "D55E2225-A6AB-481C-A5BE-1B7687C293FA"
- },
- "resourceTypes": [
- {
- "resourceType": "catalogs",
- "locations": [
- "East US",
- "West US",
- "Australia East",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "West Central US"
- ],
- "apiVersions": [
- "2016-03-30",
- "2015-07-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "West Europe"
- ],
- "apiVersions": [
- "2016-03-30",
- "2015-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Europe"
- ],
- "apiVersions": [
- "2016-03-30",
- "2015-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2016-03-30",
- "2015-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/jobs",
- "locations": [
- "East US",
- "West US",
- "Australia East",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "West Central US"
- ],
- "apiVersions": [
- "2016-03-30",
- "2015-07-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "213f5f78-fb30-46c7-9e98-91c720a1c026"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-12-01-preview",
- "operations": "2018-12-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataCatalogGen2"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDataCatalogShoebox",
- "sourceMdmNamespace": "ADCAnalytics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataCollaboration",
- "namespace": "Microsoft.DataCollaboration",
- "authorization": {
- "applicationId": "2cc451ba-a8ec-496f-bdff-591f5ae2876c",
- "roleDefinitionId": "fdf757e9-19df-4152-a1ae-5e719161cd12"
- },
- "resourceTypes": [
- {
- "resourceType": "listinvitations",
- "locations": [
- "East US",
- "Australia East",
- "West US 2",
- "UK South",
- "Southeast Asia",
- "East US 2",
- "West Europe"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia East"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "East US",
- "Australia East",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/consumerInvitations/reject",
- "locations": [
- "East US",
- "Australia East",
- "West US 2",
- "UK South",
- "Southeast Asia",
- "East US 2",
- "West Europe"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/consumerInvitations",
- "locations": [
- "East US",
- "Australia East",
- "West US 2",
- "UK South",
- "Southeast Asia",
- "East US 2",
- "West Europe"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East"
- ],
- "apiVersions": [
- "2020-05-04-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "2cc451ba-a8ec-496f-bdff-591f5ae2876c"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-05-04-preview",
- "operations": "2020-05-04-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataCollaboration"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDataCollaborationShoebox",
- "sourceMdmNamespace": "RP"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Datadog",
- "namespace": "Microsoft.Datadog",
- "authorizations": [
- {
- "applicationId": "ae11f5fb-c627-4eec-b4a0-f7b5969426e5",
- "roleDefinitionId": "904f1136-432f-44da-adc4-d3bdf27b156d"
- },
- {
- "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06",
- "roleDefinitionId": "4ac7c055-417e-47eb-9a38-137e6233a688"
- },
- {
- "applicationId": "0c6620df-7b29-44de-8ba4-688a56a20f9f",
- "roleDefinitionId": "e2116b11-5fb7-4f68-b0e9-9d4173a5dfdb"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "West US 2",
- "Central US EUAP",
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06"
- },
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "monitors/tagRules",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/listMonitoredResources",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/listApiKeys",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/getDefaultKey",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/setDefaultKey",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/singleSignOnConfigurations",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/listHosts",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/listLinkedResources",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "monitors/refreshSetPasswordLink",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "agreements",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-02-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataFactory",
- "namespace": "Microsoft.DataFactory",
- "authorizations": [
- {
- "applicationId": "0947a342-ab4a-43be-93b3-b8243fc161e5",
- "roleDefinitionId": "f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da"
- },
- {
- "applicationId": "5d13f7d7-0567-429c-9880-320e9555e5fc",
- "roleDefinitionId": "956a8f20-9168-4c71-8e27-3c0460ac39a4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "dataFactories",
- "locations": [
- "West US",
- "North Europe",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2015-10-01",
- "2015-09-01",
- "2015-08-01",
- "2015-07-01-preview",
- "2015-05-01-preview",
- "2015-01-01-preview",
- "2014-04-01"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftDatafactory"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "factories",
- "locations": [
- "East US",
- "East US 2",
- "Central US",
- "South Central US",
- "Japan East",
- "Canada Central",
- "Australia East",
- "Switzerland North",
- "Germany West Central",
- "Central India",
- "France Central",
- "Korea Central",
- "Brazil South",
- "West Europe",
- "North Europe",
- "UK South",
- "West Central US",
- "West US",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Africa North",
- "Australia Southeast",
- "South India",
- "Canada East",
- "UK West",
- "Japan West",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-06-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-06-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftDatafactory",
- "onbehalfSupportedLogCategories": [
- "ActivityRuns",
- "PipelineRuns",
- "TriggerRuns",
- "SandboxPipelineRuns",
- "SandboxActivityRuns",
- "SSISPackageEventMessages",
- "SSISPackageExecutableStatistics",
- "SSISPackageEventMessageContext",
- "SSISPackageExecutionComponentPhases",
- "SSISPackageExecutionDataStatistics",
- "SSISIntegrationRuntimeLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "factories/integrationRuntimes",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Central India",
- "Brazil South",
- "France Central",
- "Korea Central",
- "Australia East",
- "Switzerland North",
- "Germany West Central",
- "Canada Central",
- "West Central US",
- "North Europe",
- "UK South",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Africa North",
- "Australia Southeast",
- "South India",
- "Canada East",
- "UK West",
- "Japan West",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-06-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "dataFactories/diagnosticSettings",
- "locations": [
- "North Europe",
- "East US",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dataFactories/metricDefinitions",
- "locations": [
- "North Europe",
- "East US",
- "West US",
- "West Central US"
- ],
- "apiVersions": [
- "2014-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkDataFactoryNameAvailability",
- "locations": [],
- "apiVersions": [
- "2015-05-01-preview",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkAzureDataFactoryNameAvailability",
- "locations": [
- "West US",
- "North Europe",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2015-10-01",
- "2015-09-01",
- "2015-08-01",
- "2015-07-01-preview",
- "2015-05-01-preview",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dataFactorySchema",
- "locations": [
- "West US",
- "North Europe",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2015-10-01",
- "2015-09-01",
- "2015-08-01",
- "2015-07-01-preview",
- "2015-05-01-preview",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US",
- "North Europe",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2018-06-01",
- "2017-09-01-preview",
- "2017-03-01-preview",
- "2015-10-01",
- "2015-09-01",
- "2015-08-01",
- "2015-07-01-preview",
- "2015-05-01-preview",
- "2015-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-06-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/configureFactoryRepo",
- "locations": [
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Australia East",
- "Switzerland North",
- "Germany West Central",
- "Canada Central",
- "Central India",
- "Brazil South",
- "France Central",
- "Korea Central",
- "West Europe",
- "North Europe",
- "UK South",
- "West Central US",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Africa North",
- "Australia Southeast",
- "South India",
- "Canada East",
- "UK West",
- "Japan West",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-06-01",
- "2017-09-01-preview"
- ],
- "defaultApiVersion": "2018-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/getFeatureValue",
- "locations": [
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "UK South",
- "West Central US",
- "West US",
- "Central US",
- "South Central US",
- "Japan East",
- "Australia East",
- "Switzerland North",
- "Germany West Central",
- "Canada Central",
- "Central India",
- "Brazil South",
- "France Central",
- "Korea Central",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Africa North",
- "Australia Southeast",
- "South India",
- "Canada East",
- "UK West",
- "Japan West",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-06-01"
- ],
- "defaultApiVersion": "2018-06-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "0947a342-ab4a-43be-93b3-b8243fc161e5"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2015-01-01-preview",
- "factories": "2017-09-01-preview",
- "operations": "2017-03-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox",
- "sourceMdmNamespace": "ADFMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataLakeAnalytics",
- "namespace": "Microsoft.DataLakeAnalytics",
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "defaultApiVersion": "2016-11-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/dataLakeStoreAccounts",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/storageAccounts",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/storageAccounts/containers",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/storageAccounts/containers/listSasTokens",
- "locations": [
- "East US 2",
- "North Europe",
- "Central US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/capability",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview",
- "2016-11-01",
- "2015-10-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "mdsMappingResourceIdOverridePathSelector": "properties.accountId",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataLake"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzureDataLake",
- "sourceMdmNamespace": "Microsoft.DataLakeAnalytics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDataLake",
- "onbehalfSupportedLogCategories": [
- "Audit",
- "Requests"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataMigration",
- "namespace": "Microsoft.DataMigration",
- "authorization": {
- "applicationId": "a4bad4aa-bf02-4631-9f78-a64ffdba8150",
- "roleDefinitionId": "b831a21d-db98-4760-89cb-bef871952df1",
- "managedByRoleDefinitionId": "6256fb55-9e59-4018-a9e1-76b11c0a4c89"
- },
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "defaultApiVersion": "2018-07-15-preview",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "services/projects",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "defaultApiVersion": "2018-07-15-preview",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central"
- ],
- "apiVersions": [
- "2018-07-15-preview",
- "2018-04-19",
- "2018-03-31-preview",
- "2018-03-15-preview",
- "2017-11-15-privatepreview",
- "2017-11-15-preview",
- "2017-04-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "Brazil South",
- "West Europe",
- "Australia East",
- "East US",
- "East US 2",
- "Canada Central",
- "East Asia",
- "Central India",
- "West India",
- "Japan East",
- "Korea South",
- "North Central US",
- "Australia Southeast",
- "Canada East",
- "Central US",
- "South India",
- "Japan West",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK West",
- "West US",
- "UK South",
- "West US 2",
- "South Africa North",
- "UAE North",
- "France Central",
- "Norway East",
- "Switzerland North",
- "Germany West Central",
- "East US 2 EUAP"
- ],
- "apiVersions": [],
- "capabilities": "None"
- },
- {
- "resourceType": "SqlMigrationServices",
- "locations": [
- "East US 2",
- "East US",
- "Canada Central",
- "Central US",
- "Canada East",
- "West Europe"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "defaultApiVersion": "2020-09-01-preview",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "DatabaseMigrations",
- "locations": [
- "East US 2",
- "East US",
- "Canada Central",
- "Central US",
- "Canada East",
- "West Europe"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "defaultApiVersion": "2020-09-01-preview",
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "Locations/OperationTypes",
- "locations": [
- "East US 2",
- "East US",
- "Canada Central",
- "Central US",
- "Canada East",
- "West Europe"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "defaultApiVersion": "2020-09-01-preview",
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataProtection",
- "namespace": "Microsoft.DataProtection",
- "resourceTypes": [
- {
- "resourceType": "BackupVaults",
- "locations": [
- "South Central US",
- "East US",
- "East US 2",
- "West US",
- "UK South",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "France Central",
- "Germany West Central",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West Central US",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ResourceGuards",
- "locations": [
- "East US 2",
- "North Europe",
- "Southeast Asia",
- "West Central US"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "South Central US",
- "East US",
- "East US 2",
- "West US",
- "UK South",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "France Central",
- "Germany West Central",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West Central US",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatus",
- "locations": [
- "South Central US",
- "East US",
- "East US 2",
- "West US",
- "UK South",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "France Central",
- "Germany West Central",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West Central US",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "South Central US",
- "East US",
- "East US 2",
- "West US",
- "UK South",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "France Central",
- "Germany West Central",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West Central US",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkFeatureSupport",
- "locations": [
- "South Central US",
- "East US",
- "East US 2",
- "West US",
- "UK South",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "East Asia",
- "France Central",
- "Germany West Central",
- "Central India",
- "South India",
- "West India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West Central US",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01",
- "2020-01-01-alpha"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "d1e197ea-4f63-403a-93b0-8fa96dfc37f5"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforMariaDB",
- "namespace": "Microsoft.DBforMariaDB",
- "authorizations": [
- {
- "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d",
- "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29"
- },
- {
- "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "metadata": {
- "portal": {
- "kinds": []
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "servers/recoverableServers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central US",
- "Central India",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/virtualNetworkRules",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/azureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/performanceTiers",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/securityAlertPoliciesOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/recommendedActionSessionsOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/topQueryStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/queryTexts",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/waitStatistics",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/resetQueryPerformanceInsightData",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/advisors",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateLinkResources",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnections",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/privateEndpointConnectionProxies",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-06-01-privatepreview",
- "2018-06-01-preview",
- "2018-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyAzureAsyncOperation",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/serverKeyOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/start",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "servers/stop",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Norway East",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-01-01-privatepreview",
- "2020-01-01-preview",
- "2020-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-06-01-preview"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "AzureDBProduction",
- "sourceMdmNamespace": "MicrosoftSqlElasticServers"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "mdsEnvironment": "prod"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftSqlAzureTelemetryv2",
- "onbehalfSupportedLogCategories": [
- "MySqlSlowLogs",
- "MySqlAuditLogs"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.managedIdentity": {
- "applicationId": "d4776935-e3c2-491d-b2a1-cb3cd1ec579e"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DelegatedNetwork",
- "namespace": "Microsoft.DelegatedNetwork",
- "authorizations": [
- {
- "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37",
- "roleDefinitionId": "ff3f8a59-97f9-442a-9d5f-e21908e36352"
- },
- {
- "applicationId": "1efe5bbf-d5b1-4fe9-99fa-f55ce1c88679"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US 2",
- "East US",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-15",
- "2020-08-08-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeploymentManager",
- "namespace": "Microsoft.DeploymentManager",
- "authorizations": [
- {
- "applicationId": "5b306cba-9c71-49db-96c3-d17ca2379c4d"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "artifactSources",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serviceTopologies",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serviceTopologies/services",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "serviceTopologies/services/serviceUnits",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "steps",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "rollouts",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2019-11-01-preview",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-09-01-preview"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "5b306cba-9c71-49db-96c3-d17ca2379c4d"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeviceUpdate",
- "namespace": "Microsoft.DeviceUpdate",
- "authorizations": [
- {
- "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78",
- "roleDefinitionId": "a7c9caf5-ee6d-4cdd-94e0-917c34a027ec"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2 EUAP",
- "West US 2",
- "North Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts",
- "locations": [
- "West US 2",
- "North Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78"
- },
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/instances",
- "locations": [
- "West US 2",
- "North Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78",
- "delegationAppIds": [
- "6ee392c4-d339-4083-b04d-6b7947c6cf78"
- ]
- },
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevOps",
- "namespace": "Microsoft.DevOps",
- "authorization": {
- "applicationId": "499b84ac-1321-427f-aa17-267ca6975798",
- "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"
- },
- "resourceTypes": [
- {
- "resourceType": "pipelines",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "West India",
- "Central India",
- "South India",
- "Central US",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "UK South",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-07-13-preview",
- "2019-07-01-preview"
- ],
- "defaultApiVersion": "2019-07-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevTestLab",
- "namespace": "Microsoft.DevTestLab",
- "authorization": {
- "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f",
- "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525",
- "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525"
- },
- "resourceTypes": [
- {
- "resourceType": "labs/environments",
- "locations": [
- "Southeast Asia",
- "East US",
- "West US",
- "West Europe",
- "East Asia",
- "East US 2",
- "Japan East",
- "Japan West",
- "Central US"
- ],
- "apiVersions": [
- "2015-05-21-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "labs",
- "locations": [
- "West Central US",
- "South Central US",
- "Central US",
- "Australia Central",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West India",
- "Australia Central 2",
- "Australia East",
- "Brazil South",
- "Canada East",
- "East US 2",
- "France South",
- "Germany West Central",
- "Japan West",
- "Korea South",
- "North Central US",
- "Norway East",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "defaultApiVersion": "2018-10-15-preview",
- "capabilities": "CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "schedules",
- "locations": [
- "West Central US",
- "South Central US",
- "Central US",
- "Australia Central",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West India",
- "Australia Central 2",
- "Australia East",
- "Brazil South",
- "Canada East",
- "East US 2",
- "France South",
- "Germany West Central",
- "Japan West",
- "Korea South",
- "North Central US",
- "Norway East",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "labs/virtualMachines",
- "locations": [
- "West Central US",
- "South Central US",
- "Central US",
- "Australia Central",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West India",
- "Australia Central 2",
- "Australia East",
- "Brazil South",
- "Canada East",
- "East US 2",
- "France South",
- "Germany West Central",
- "Japan West",
- "Korea South",
- "North Central US",
- "Norway East",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "labs/serviceRunners",
- "locations": [
- "West Central US",
- "South Central US",
- "Central US",
- "Australia Central",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West India",
- "Australia Central 2",
- "Australia East",
- "Brazil South",
- "Canada East",
- "East US 2",
- "France South",
- "Germany West Central",
- "Japan West",
- "Korea South",
- "North Central US",
- "Norway East",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15"
- ],
- "defaultApiVersion": "2016-05-15",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West Central US",
- "South Central US",
- "Central US",
- "Australia Central",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "East Asia",
- "East US",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "Switzerland North",
- "UAE North",
- "UK West",
- "West India",
- "Australia Central 2",
- "Australia East",
- "Brazil South",
- "Canada East",
- "East US 2",
- "France South",
- "Germany West Central",
- "Japan West",
- "Korea South",
- "North Central US",
- "Norway East",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2018-10-15-preview",
- "2018-09-15",
- "2017-04-26-preview",
- "2016-05-15",
- "2015-05-21-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Diagnostics",
- "namespace": "Microsoft.Diagnostics",
- "authorizations": [
- {
- "applicationId": "5b534afd-fdc0-4b38-a77f-af25442e3149",
- "roleDefinitionId": "27d9fedd-5b4c-44b5-a9da-724fa33445c8"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-07-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DigitalTwins",
- "namespace": "Microsoft.DigitalTwins",
- "authorizations": [
- {
- "applicationId": "0b07f429-9f4b-4714-9392-cc5e8e80c8b0"
- },
- {
- "applicationId": "91ff567f-bb4f-4719-91d7-d983057bc0d6",
- "roleDefinitionId": "fa0ab6ed-58e5-4f2f-81af-0b9ffc364bdc"
- },
- {
- "applicationId": "c115998b-3d59-49b4-b55b-042a9ba1dbfe",
- "roleDefinitionId": "07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-30-preview",
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West Central US",
- "West US 2",
- "North Europe",
- "Australia East",
- "West Europe",
- "East US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "digitalTwinsInstances",
- "locations": [
- "West Central US",
- "West US 2",
- "North Europe",
- "Australia East",
- "West Europe",
- "East US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-12-01",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "91ff567f-bb4f-4719-91d7-d983057bc0d6"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDigitalTwins"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDigitalTwinsShoebox",
- "sourceMdmNamespace": "ShoeboxMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureDigitalTwins",
- "onbehalfSupportedLogCategories": [
- "DigitalTwinsOperation",
- "ModelsOperation",
- "EventRoutesOperation",
- "QueryOperation"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "digitalTwinsInstances/operationResults",
- "locations": [
- "West Central US",
- "West US 2",
- "North Europe",
- "Australia East",
- "West Europe",
- "East US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "West US 2",
- "North Europe",
- "Australia East",
- "West Europe",
- "East US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "digitalTwinsInstances/endpoints",
- "locations": [
- "West Central US",
- "West US 2",
- "North Europe",
- "Australia East",
- "West Europe",
- "East US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "defaultApiVersion": "2020-12-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US"
- ],
- "apiVersions": [
- "2020-12-01",
- "2020-10-31",
- "2020-03-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2020-12-01",
- "digitalTwinsInstances": "2020-12-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftDigitalTwinsShoebox",
- "sourceMdmNamespace": "ShoeboxMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Elastic",
- "namespace": "Microsoft.Elastic",
- "authorizations": [
- {
- "applicationId": "9d777fa9-b417-43b8-8991-12f8ee2161d2",
- "roleDefinitionId": "727fce2f-45e6-4d8d-8a08-7302549a924f"
- },
- {
- "applicationId": "5b81a823-5f67-4fb3-8d0f-4c92b5044fe4",
- "roleDefinitionId": "e0ad5282-27b3-4c62-a72f-ea7bef45503e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2 EUAP",
- "Central US EUAP",
- "West US 2",
- "UK South",
- "East US",
- "East US 2",
- "West Europe",
- "France Central",
- "Central US",
- "South Central US"
- ],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "monitors",
- "locations": [
- "West US 2",
- "UK South"
- ],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "monitors/tagRules",
- "locations": [
- "West US 2",
- "UK South"
- ],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-07-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EnterpriseKnowledgeGraph",
- "namespace": "Microsoft.EnterpriseKnowledgeGraph",
- "resourceTypes": [
- {
- "resourceType": "services",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2018-12-03"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2018-12-03"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2018-12-03"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US 2",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2018-12-03"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "operations": "2018-12-03"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.EnterpriseKnowledgeGraph"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestUS2",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxNorthEurope",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestEurope",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS2",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxSoutheastAsia",
- "sourceMdmNamespace": "Proxy"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestUS2",
- "sourceMdmNamespace": "Tool"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxNorthEurope",
- "sourceMdmNamespace": "Tool"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestEurope",
- "sourceMdmNamespace": "Tool"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS",
- "sourceMdmNamespace": "Tool"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS2",
- "sourceMdmNamespace": "Tool"
- },
- {
- "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxSoutheastAsia",
- "sourceMdmNamespace": "Tool"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.EnterpriseKnowledgeGraph",
- "onbehalfSupportedLogCategories": [
- "AuditEvent",
- "DataIssue",
- "Configuration"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Experimentation",
- "namespace": "Microsoft.Experimentation",
- "authorizations": [
- {
- "applicationId": "e00d2f8a-f6c8-46e4-b379-e66082e28ca8",
- "roleDefinitionId": "d3a360d9-17f9-410e-9465-5c914c8cf570",
- "managedByRoleDefinitionId": "fa096ccd-4e8f-49de-9594-64449b3ac6b3"
- },
- {
- "applicationId": "b998f6f8-79d0-4b6a-8c25-5791dbe49ad0",
- "roleDefinitionId": "69e94dda-0a4a-440b-b24e-21880bdd5174"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2019-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2019-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US 2"
- ],
- "apiVersions": [
- "2019-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ExtendedLocation",
- "namespace": "Microsoft.ExtendedLocation",
- "authorizations": [
- {
- "applicationId": "bc313c14-388c-4e7d-a58e-70017303ee3b",
- "roleDefinitionId": "a775b938-2819-4dd0-8067-01f6e3b06392"
- },
- {
- "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05",
- "roleDefinitionId": "0981f4e0-04a7-4e31-bd2b-b2ac2fc6ba4e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-15-preview",
- "2020-07-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "customLocations",
- "locations": [
- "East US",
- "West Europe",
- "North Europe",
- "France Central",
- "Southeast Asia",
- "Australia East",
- "East US 2",
- "West US 2",
- "UK South",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-15-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "customLocations/enabledResourceTypes",
- "locations": [
- "East US",
- "West Europe",
- "North Europe",
- "France Central",
- "Southeast Asia",
- "Australia East",
- "East US 2",
- "West US 2",
- "UK South",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsstatus",
- "locations": [
- "East US",
- "West Europe",
- "North Europe",
- "France Central",
- "Southeast Asia",
- "Australia East",
- "East US 2",
- "West US 2",
- "UK South",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "East US",
- "West Europe",
- "North Europe",
- "France Central",
- "Southeast Asia",
- "Australia East",
- "East US 2",
- "West US 2",
- "UK South",
- "West Central US"
- ],
- "apiVersions": [
- "2021-03-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-15-preview",
- "2020-07-15-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Falcon",
- "namespace": "Microsoft.Falcon",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "namespaces",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2020-01-20-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features",
- "namespace": "Microsoft.Features",
- "resourceTypes": [
- {
- "resourceType": "features",
- "locations": [],
- "apiVersions": [
- "2015-12-01",
- "2014-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providers",
- "locations": [],
- "apiVersions": [
- "2015-12-01",
- "2014-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "featureProviders",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptionFeatureRegistrations",
- "locations": [],
- "apiVersions": [
- "2020-09-01",
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "featureProviderNamespaces",
- "locations": [],
- "apiVersions": [
- "2020-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "featureConfigurations",
- "locations": [],
- "apiVersions": [
- "2020-09-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-12-01",
- "2014-08-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Fidalgo",
- "namespace": "Microsoft.Fidalgo",
- "authorizations": [],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "Central US EUAP",
- "East US 2 EUAP",
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "devcenters",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "2dc3760b-4713-48b1-a383-1dfe3e449ec2"
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "devcenters/catalogs/items",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "devcenters/environmentTypes",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "projects",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "projects/environments",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "devcenters/catalogs",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "devcenters/mappings",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "projects/CatalogItems",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "projects/environmentTypes",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "projects/environments/deployments",
- "locations": [
- "West Central US",
- "West US",
- "Southeast Asia",
- "West Europe"
- ],
- "apiVersions": [
- "2021-06-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "2dc3760b-4713-48b1-a383-1dfe3e449ec2"
- },
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HanaOnAzure",
- "namespace": "Microsoft.HanaOnAzure",
- "authorization": {
- "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39",
- "roleDefinitionId": "4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- },
- "resourceTypes": [
- {
- "resourceType": "hanaInstances",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South Central US"
- ],
- "apiVersions": [
- "2017-11-03-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "sapMonitors",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Southeast Asia",
- "South Central US",
- "UK South"
- ],
- "apiVersions": [
- "2020-02-07-preview",
- "2017-11-03-preview"
- ],
- "defaultApiVersion": "2020-02-07-preview",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/operationsStatus",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Southeast Asia",
- "South Central US",
- "UK South"
- ],
- "apiVersions": [
- "2017-11-03-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2017-11-03-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Southeast Asia",
- "South Central US",
- "UK South"
- ],
- "apiVersions": [
- "2017-11-03-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Germany West Central",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "West Europe",
- "North Europe",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Southeast Asia",
- "South Central US",
- "UK South"
- ],
- "apiVersions": [
- "2017-11-03-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HealthBot",
- "namespace": "Microsoft.HealthBot",
- "authorizations": [
- {
- "applicationId": "6db4d6bb-6649-4dc2-84b7-0b5c6894031e",
- "roleDefinitionId": "d42334cd-b979-4a22-accc-650d0d157676"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-12-08"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-12-08"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US",
- "West Europe",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "North Europe",
- "Southeast Asia",
- "Australia East",
- "East US 2 EUAP",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2020-12-08"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "healthBots",
- "locations": [
- "East US",
- "West Europe",
- "East US 2",
- "West US 2",
- "South Central US",
- "UK South",
- "North Europe",
- "Southeast Asia",
- "Australia East",
- "Central India",
- "West Central US"
- ],
- "apiVersions": [
- "2020-12-08"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HealthcareApis",
- "namespace": "Microsoft.HealthcareApis",
- "authorizations": [
- {
- "applicationId": "4f6778d8-5aef-43dc-a1ff-b073724b9495"
- },
- {
- "applicationId": "3274406e-4e0a-4852-ba4f-d7226630abb7",
- "roleDefinitionId": "e39edba5-cde8-4529-ba1f-159138220220"
- },
- {
- "applicationId": "894b1496-c6e0-4001-b69c-81b327564ca4",
- "roleDefinitionId": "c69c1f48-8535-41e7-9667-539790b1c663"
- },
- {
- "applicationId": "75e725bf-66ce-4cea-9b9a-5c4caae57f33"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "services",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-01-11",
- "2020-03-30",
- "2020-03-15",
- "2019-09-16",
- "2018-08-20-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-09-16",
- "operations": "2019-09-16"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.HealthcareApis",
- "onbehalfSupportedLogCategories": [
- "AuditLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "services/privateEndpointConnectionProxies",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-03-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/privateEndpointConnections",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-03-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/privateLinkResources",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-03-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/iomtconnectors",
- "locations": [
- "West US 2",
- "UK South",
- "East US 2",
- "UK West",
- "North Central US",
- "Australia East",
- "Southeast Asia",
- "East US",
- "West Europe",
- "South Central US",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/iomtconnectors/connections",
- "locations": [
- "West US 2",
- "UK South",
- "East US 2",
- "UK West",
- "North Central US",
- "Australia East",
- "Southeast Asia",
- "East US",
- "West Europe",
- "South Central US",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/iomtconnectors/mappings",
- "locations": [
- "West US 2",
- "UK South",
- "East US 2",
- "UK West",
- "North Central US",
- "Australia East",
- "Southeast Asia",
- "East US",
- "West Europe",
- "South Central US",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-01-11",
- "2020-03-30",
- "2020-03-15",
- "2019-09-16",
- "2018-08-20-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-01-11",
- "2020-05-01-preview",
- "2020-03-30",
- "2020-03-15",
- "2019-09-16",
- "2018-08-20-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-03-31-preview",
- "2021-01-11",
- "2020-03-30",
- "2020-03-15",
- "2019-09-16",
- "2018-08-20-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "UK West",
- "North Central US",
- "West US 2",
- "Australia East",
- "Southeast Asia",
- "UK South",
- "East US",
- "West Europe",
- "South Central US",
- "East US 2",
- "North Europe",
- "West Central US",
- "Japan East",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-01-11",
- "2020-03-30",
- "2020-03-15",
- "2019-09-16",
- "2018-08-20-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-09-16",
- "operations": "2019-09-16"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.HealthcareApis"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftHealthcareApisShoebox",
- "sourceMdmNamespace": "Shoebox2"
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "53af30df-f192-4c0e-8092-9bd45604aedd"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridCompute",
- "namespace": "Microsoft.HybridCompute",
- "authorizations": [
- {
- "applicationId": "8c420feb-03df-47cc-8a05-55df0cf3064b",
- "roleDefinitionId": "83eeb1c6-47f8-4da2-bbc3-42a7ac767360"
- },
- {
- "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1",
- "roleDefinitionId": "f32ad452-2b05-4296-bee4-fc9056ed85fa"
- },
- {
- "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801",
- "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f"
- },
- {
- "applicationId": "eec53b1f-b9a4-4479-acf5-6b247c6a49f2"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "machines",
- "locations": [
- "West Central US",
- "West US 2",
- "West Europe",
- "Southeast Asia",
- "East US",
- "Australia East",
- "South Central US",
- "East US 2",
- "North Europe",
- "France Central",
- "Japan East",
- "UK South"
- ],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview",
- "2019-03-18-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "machines/extensions",
- "locations": [
- "West Central US",
- "West Europe",
- "West US 2",
- "Southeast Asia",
- "East US",
- "Australia East",
- "South Central US",
- "East US 2",
- "North Europe",
- "France Central",
- "Japan East",
- "UK South"
- ],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West Europe"
- ],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatus",
- "locations": [
- "West Central US",
- "West Europe",
- "West US 2",
- "Southeast Asia",
- "East US",
- "Australia East",
- "South Central US",
- "East US 2",
- "North Europe",
- "France Central",
- "Japan East",
- "UK South"
- ],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "West Europe",
- "West US 2",
- "Southeast Asia",
- "East US",
- "Australia East",
- "South Central US",
- "East US 2",
- "North Europe",
- "France Central",
- "Japan East",
- "UK South"
- ],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-05-20",
- "2021-05-17-preview",
- "2021-04-22-preview",
- "2021-03-25-preview",
- "2021-01-28-preview",
- "2020-08-15-preview",
- "2020-08-02",
- "2020-07-30-preview",
- "2020-03-11-preview",
- "2019-12-12",
- "2019-08-02-preview",
- "2019-03-18-preview"
- ],
- "defaultApiVersion": "2020-08-02",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "eec53b1f-b9a4-4479-acf5-6b247c6a49f2"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridData",
- "namespace": "Microsoft.HybridData",
- "authorization": {
- "applicationId": "621269cf-1195-44a3-a835-c613d103dd15",
- "roleDefinitionId": "00320cd4-8823-47f2-bbe4-5c9da031311d"
- },
- "resourceTypes": [
- {
- "resourceType": "dataManagers",
- "locations": [
- "West US",
- "North Europe",
- "West Europe",
- "East US",
- "West US 2",
- "West Central US",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2019-06-01",
- "2016-06-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-06-01",
- "2016-06-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridNetwork",
- "namespace": "Microsoft.HybridNetwork",
- "authorizations": [
- {
- "applicationId": "b8ed041c-aa91-418e-8f47-20c70abc2de1",
- "roleDefinitionId": "b193432e-9b7e-4885-b2c0-052afdceace3"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-01-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US 2 EUAP",
- "West Central US",
- "West Europe",
- "East US"
- ],
- "apiVersions": [
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ImportExport",
- "namespace": "Microsoft.ImportExport",
- "authorization": {
- "applicationId": "7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a",
- "roleDefinitionId": "9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"
- },
- "resourceTypes": [
- {
- "resourceType": "jobs",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-08-01",
- "2016-11-01",
- "2016-07-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-11-01"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-08-01",
- "2016-11-01",
- "2016-07-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-11-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-08-01",
- "2016-11-01",
- "2016-07-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-11-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2020-08-01",
- "2016-11-01",
- "2016-07-01-preview"
- ],
- "defaultApiVersion": "2020-08-01",
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-11-01"
- }
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IndustryDataLifecycle",
- "namespace": "Microsoft.IndustryDataLifecycle",
- "authorizations": [
- {
- "applicationId": "3072002f-3e97-4979-91f2-09fe40da755d",
- "roleDefinitionId": "23694dec-6164-410e-b12d-691a3c92ae59"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "custodianCollaboratives/termsOfUseDocuments",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "defaultApiVersion": "2020-01-12-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "custodianCollaboratives/collaborativeImage",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "defaultApiVersion": "2020-01-12-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "custodianCollaboratives/invitations",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "custodianCollaboratives/invitations/termsOfUseDocuments",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "memberCollaboratives",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "defaultApiVersion": "2020-01-12-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dataConsumerCollaboratives",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "defaultApiVersion": "2020-01-12-preview",
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "collaborativeInvitations",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/rejectInvitation",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/generateInvitationAuthCode",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/revokeInvitationAuthCode",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/downloadInvitationFile",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "dataproviders",
- "locations": [],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/dataPackages",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "memberCollaboratives/sharedDataPackages",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "custodianCollaboratives/receivedDataPackages",
- "locations": [
- "West Central US",
- "East US 2"
- ],
- "apiVersions": [
- "2020-01-12-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2020-09-08-preview",
- "2020-01-12-preview"
- ],
- "defaultApiVersion": "2020-01-12-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-01-12-preview",
- "operations": "2020-01-12-preview"
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "3072002f-3e97-4979-91f2-09fe40da755d"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IntelligentITDigitalTwin",
- "namespace": "Microsoft.IntelligentITDigitalTwin",
- "authorizations": [
- {
- "applicationId": "dfbed8b2-492a-414e-b2f0-482534e87bc5",
- "roleDefinitionId": "0922588a-ac0c-4eb6-8d8f-afbeb8edf466"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-12-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IoTCentral",
- "namespace": "Microsoft.IoTCentral",
- "authorizations": [
- {
- "applicationId": "9edfcdd9-0bc5-4bd4-b287-c3afc716aac7",
- "roleDefinitionId": "913c14c1-35ac-45ee-b8f2-05524381b92c"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "IoTApps",
- "locations": [
- "West Europe",
- "West US",
- "East US 2",
- "North Europe",
- "East US",
- "Central US",
- "West Central US",
- "Australia",
- "Asia Pacific",
- "Europe",
- "Japan",
- "UK",
- "United States"
- ],
- "apiVersions": [
- "2018-09-01",
- "2017-07-01-privatepreview"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2018-09-01",
- "2017-07-01-privatepreview"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkSubdomainAvailability",
- "locations": [],
- "apiVersions": [
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-09-01",
- "2017-07-01-privatepreview"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- },
- {
- "resourceType": "appTemplates",
- "locations": [],
- "apiVersions": [
- "2018-09-01"
- ],
- "defaultApiVersion": "2018-09-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-09-01",
- "operations": "2018-09-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.IoTCentral"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "MicrosoftIotSaasShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- },
- "regionLess": true
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IoTSecurity",
- "namespace": "Microsoft.IoTSecurity",
- "authorizations": [
- {
- "applicationId": "cfbd4387-1a16-4945-83c0-ec10e46cd4da",
- "roleDefinitionId": "d5d6ff70-e29a-4cec-b30b-4bd7ebcdcbaa"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "defenderSettings",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deviceGroups",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deviceGroups/devices",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "sites",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "sensors",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "North Central US",
- "South Central US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "Korea South",
- "Australia Central",
- "Australia Central 2",
- "UAE Central",
- "UAE North",
- "South Africa North",
- "South Africa West",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "France Central",
- "France South"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "onPremiseSensors",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "description": "Microsoft Defender for IoT Manifest"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Kubernetes",
- "namespace": "Microsoft.Kubernetes",
- "authorizations": [
- {
- "applicationId": "64b12d6e-6549-484c-8cc6-6281839ba394",
- "roleDefinitionId": "1d1d44cf-68a1-4def-a2b6-cd7efc3515af"
- },
- {
- "applicationId": "359431ad-ece5-496b-8768-be4bbfd82f36",
- "roleDefinitionId": "1b5c71b7-9814-4b40-b62a-23018af874d8"
- },
- {
- "applicationId": "0000dab9-8b21-4ba2-807f-1743968cef00",
- "roleDefinitionId": "1b5c71b7-9814-4b40-b62a-23018af874d8"
- },
- {
- "applicationId": "8edd93e1-2103-40b4-bd70-6e34e586362d",
- "roleDefinitionId": "eb67887a-31e8-4e4e-bf5b-14ff79351a6f"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "connectedClusters",
- "locations": [
- "West Europe",
- "East US",
- "West Central US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2",
- "West US 2",
- "Australia East",
- "North Europe",
- "France Central"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-03-01",
- "2020-01-01-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "de742ffc-b441-4542-8646-7e805426b824"
- },
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-03-01",
- "2020-01-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2 EUAP",
- "West Europe",
- "East US",
- "West Central US",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "East US 2",
- "West US 2",
- "Australia East",
- "North Europe",
- "France Central"
- ],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-03-01",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-03-01",
- "2020-01-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2021-03-01",
- "2020-01-01-preview",
- "2019-11-01-preview",
- "2019-09-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "de742ffc-b441-4542-8646-7e805426b824"
- },
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.KubernetesConfiguration",
- "namespace": "Microsoft.KubernetesConfiguration",
- "authorizations": [
- {
- "applicationId": "c699bf69-fb1d-4eaf-999b-99e6b2ae4d85",
- "roleDefinitionId": "90155430-a360-410f-af5d-89dc284d85c6"
- },
- {
- "applicationId": "03db181c-e9d3-4868-9097-f0b728327182",
- "roleDefinitionId": "DE2ADB97-42D8-49C8-8FCF-DBB53EF936AC"
- },
- {
- "applicationId": "a0f92522-89de-4c5e-9a75-0044ccf66efd",
- "roleDefinitionId": "b3429810-7d5c-420e-8605-cf280f3099f2"
- },
- {
- "applicationId": "bd9b7cd5-dac1-495f-b013-ac871e98fa5f",
- "roleDefinitionId": "0d44c8f0-08b9-44d4-9f59-e51c83f95200"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "sourceControlConfigurations",
- "locations": [
- "East US",
- "West Europe",
- "West Central US",
- "West US 2",
- "South Central US",
- "East US 2",
- "North Europe",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "France Central"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01-preview",
- "2020-07-01-preview",
- "2019-11-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "extensions",
- "locations": [
- "East US",
- "West Europe",
- "West Central US",
- "West US 2",
- "South Central US",
- "East US 2",
- "North Europe",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "France Central"
- ],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-07-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2021-03-01",
- "2020-10-01-preview",
- "2020-07-01-preview",
- "2019-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "03b7be2d-167c-44b4-b5c4-f00f5e60e5d7"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Kusto",
- "namespace": "Microsoft.Kusto",
- "authorizations": [
- {
- "applicationId": "2746ea77-4702-4b45-80ca-3c97e680e8b7",
- "roleDefinitionId": "dd9d4347-f397-45f2-b538-85f21c90037c"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "clusters",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "zoneMappings": [
- {
- "location": "East US 2",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Central US",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "West Europe",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "France Central",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Southeast Asia",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "West US 2",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "North Europe",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "East US",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "UK South",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Japan East",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Australia East",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "South Africa North",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "South Central US",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Canada Central",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Germany West Central",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Brazil South",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Central India",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Korea Central",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "West US 3",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "Norway East",
- "zones": [
- "1",
- "2",
- "3"
- ]
- },
- {
- "location": "East Asia",
- "zones": [
- "1",
- "2",
- "3"
- ]
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters/databases",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/attacheddatabaseconfigurations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/principalassignments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/databases/eventhubconnections",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/databases/dataconnections",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/databases/principalassignments",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-09-18",
- "2020-06-14",
- "2020-02-15",
- "2019-11-09",
- "2019-09-07",
- "2019-05-15",
- "2019-01-21",
- "2018-09-07-preview",
- "2017-09-07-privatepreview"
- ],
- "defaultApiVersion": "2020-06-14",
- "capabilities": "None"
- },
- {
- "resourceType": "clusters/databases/scripts",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Brazil Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2021-01-01"
- ],
- "defaultApiVersion": "2021-01-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "2746ea77-4702-4b45-80ca-3c97e680e8b7"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-05-15",
- "operations": "2019-05-15"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Kusto"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "Kusto",
- "sourceMdmNamespace": "MdmEngineMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Kusto",
- "onbehalfSupportedLogCategories": [
- "SucceededIngestion",
- "FailedIngestion",
- "IngestionBatching",
- "Command",
- "Query",
- "TableUsageStatistics",
- "TableDetails"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.LabServices",
- "namespace": "Microsoft.LabServices",
- "authorizations": [
- {
- "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f",
- "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525",
- "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525"
- },
- {
- "applicationId": "c7bb12bf-0b39-4f7f-9171-f418ff39b76a",
- "roleDefinitionId": "4796d754-aa9c-4af1-be54-f17836325288",
- "managedByRoleDefinitionId": "4796d754-aa9c-4af1-be54-f17836325288"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "labaccounts",
- "locations": [
- "West Central US",
- "Japan East",
- "West US",
- "Australia Southeast",
- "Australia Central",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Switzerland North",
- "UK West",
- "West India",
- "Australia East",
- "Australia Central 2",
- "Brazil South",
- "Canada East",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Japan West",
- "Korea South",
- "North Central US",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2019-01-01-preview",
- "2018-10-15",
- "2017-12-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West Central US",
- "Japan East",
- "West US",
- "Australia Southeast",
- "Australia Central",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "Korea Central",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Switzerland North",
- "UK West",
- "West India",
- "Australia East",
- "Australia Central 2",
- "Brazil South",
- "Canada East",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Japan West",
- "Korea South",
- "North Central US",
- "South India",
- "Southeast Asia",
- "Switzerland West",
- "UK South",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2019-01-01-preview",
- "2018-10-15",
- "2017-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "East US 2 EUAP",
- "Central US EUAP",
- "West US 2",
- "East US 2"
- ],
- "apiVersions": [
- "2020-05-01-preview",
- "2019-01-01-preview",
- "2018-10-15",
- "2017-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "users",
- "locations": [],
- "apiVersions": [
- "2019-01-01-preview",
- "2019-01-01-beta",
- "2019-01-01-alpha",
- "2018-10-15",
- "2017-12-01-preview",
- "2017-12-01-beta",
- "2017-12-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-05-01-preview",
- "2019-01-01-preview",
- "2018-10-15",
- "2017-12-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "c7bb12bf-0b39-4f7f-9171-f418ff39b76a"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Logz",
- "namespace": "Microsoft.Logz",
- "authorizations": [
- {
- "applicationId": "a5472e16-e1d2-4bbe-81b3-ecdcd459b536",
- "roleDefinitionId": "bd91f1c6-cda0-4e9d-9982-18a494ec938e"
- },
- {
- "applicationId": "0ecb6dbc-7807-4951-9a69-b5d3dfa5a0b5",
- "roleDefinitionId": "b15da9ae-5633-4997-8e2c-b0941fb54476"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "defaultApiVersion": "2020-10-01-preview",
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "Central US EUAP",
- "East US 2 EUAP",
- "West US 2",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MachineLearningServices",
- "namespace": "Microsoft.MachineLearningServices",
- "authorizations": [
- {
- "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385",
- "roleDefinitionId": "376aa7d7-51a9-463d-bd4d-7e1691345612",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- },
- {
- "applicationId": "607ece82-f922-494f-88b8-30effaf12214",
- "roleDefinitionId": "d312a9a6-5102-420b-b8b3-aa6b22670aaa",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- },
- {
- "applicationId": "18a66f5f-dbdf-4c17-9dd7-1634712a9cbe",
- "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- },
- {
- "applicationId": "fb9de05a-fecc-4642-b3ca-66b9d4434d4d",
- "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- },
- {
- "applicationId": "bf283ae6-5efd-44a8-b56a-2a7939982d60",
- "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- },
- {
- "applicationId": "6608bce8-e060-4e82-bfd2-67ed4f60262f",
- "roleDefinitionId": "344880d0-81ee-4377-b825-b8b79810e492",
- "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "Canada Central",
- "Central India",
- "North Central US",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "defaultApiVersion": "2021-01-01",
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/onlineEndpoints",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-12-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/onlineEndpoints/deployments",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-12-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/batchEndpoints",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/batchEndpoints/deployments",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/batchEndpoints/jobs",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/batchEndpoints/deployments/jobs",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/computes",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "workspaces/jobs",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/codes",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/codes/versions",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/components",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/components/versions",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/environments",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/data",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/datastores",
- "locations": [
- "Canada Central",
- "Central India",
- "North Central US",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview",
- "2020-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/eventGridFilters",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/models",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/models/versions",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US 2"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East US 2"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/computeOperationsStatus",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/workspaceOperationsStatus",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-09-01",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-10-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19",
- "2018-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/vmsizes",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01",
- "2019-05-01",
- "2018-11-19"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/quotas",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/updatequotas",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2021-01-01",
- "2020-09-01-preview",
- "2020-08-01",
- "2020-06-01",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview",
- "2020-04-01",
- "2020-03-01",
- "2020-02-18-preview",
- "2020-02-02",
- "2020-01-01",
- "2019-11-01",
- "2019-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/linkedServices",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2020-05-15-preview",
- "2020-05-01-preview",
- "2020-04-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "workspaces/labelingJobs",
- "locations": [
- "North Central US",
- "Canada Central",
- "Central India",
- "UK South",
- "West US",
- "Central US",
- "East Asia",
- "Japan East",
- "East US",
- "North Europe",
- "Korea Central",
- "Brazil South",
- "France Central",
- "Australia East",
- "East US 2",
- "West US 2",
- "West Central US",
- "Southeast Asia",
- "West Europe",
- "South Central US"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-09-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-11-19",
- "operations": "2018-11-19"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "ViennaAzureMonitor",
- "sourceMdmNamespace": "vienna"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MachineLearningServices",
- "onbehalfSupportedLogCategories": [
- "AmlComputeJobEvent",
- "AmlComputeClusterNodeEvent",
- "AmlComputeClusterEvent",
- "AmlComputeCpuGpuUtilization",
- "AmlRunStatusChangedEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Maintenance",
- "namespace": "Microsoft.Maintenance",
- "authorization": {
- "applicationId": "f18474f2-a66a-4bb0-a3c9-9b8d892092fa",
- "roleDefinitionId": "2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5"
- },
- "resourceTypes": [
- {
- "resourceType": "maintenanceConfigurations",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "South Africa North",
- "South Africa West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2020-07-01-preview",
- "2020-04-01",
- "2018-10-01",
- "2018-06-01-preview",
- "2017-04-26",
- "2017-01-01",
- "2016-01-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "updates",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "South Africa North",
- "South Africa West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2020-07-01-preview",
- "2020-04-01",
- "2018-10-01",
- "2018-06-01-preview",
- "2017-04-26",
- "2017-01-01",
- "2016-01-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "configurationAssignments",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "South Africa North",
- "South Africa West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2020-07-01-preview",
- "2020-04-01",
- "2018-10-01",
- "2018-06-01-preview",
- "2017-04-26",
- "2017-01-01",
- "2016-01-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "applyUpdates",
- "locations": [
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "West Central US",
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Australia Central",
- "Australia Central 2",
- "South Africa North",
- "South Africa West",
- "Brazil South",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2020-07-01-preview",
- "2020-04-01",
- "2018-10-01",
- "2018-06-01-preview",
- "2017-04-26",
- "2017-01-01",
- "2016-01-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "publicMaintenanceConfigurations",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2020-07-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.maintenance": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-01-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzDeployer"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "AzDeployer",
- "sourceMdmNamespace": "LogMetric"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzDeployer",
- "onbehalfSupportedLogCategories": [
- "error",
- "warning",
- "AuditEvents"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ManagedServices",
- "namespace": "Microsoft.ManagedServices",
- "authorization": {
- "applicationId": "66c6d0d1-f2e7-4a18-97a9-ed10f3347016",
- "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2"
- },
- "resourceTypes": [
- {
- "resourceType": "registrationDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-02-01-preview",
- "2019-09-01",
- "2019-06-01",
- "2019-04-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "registrationAssignments",
- "locations": [],
- "apiVersions": [
- "2020-02-01-preview",
- "2019-09-01",
- "2019-06-01",
- "2019-04-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-02-01-preview",
- "2019-09-01",
- "2019-06-01",
- "2019-04-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "marketplaceRegistrationDefinitions",
- "locations": [],
- "apiVersions": [
- "2020-02-01-preview",
- "2019-09-01",
- "2019-06-01",
- "2019-04-01-preview",
- "2018-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationStatuses",
- "locations": [],
- "apiVersions": [
- "2020-02-01-preview",
- "2019-09-01",
- "2019-06-01",
- "2019-04-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Management",
- "namespace": "Microsoft.Management",
- "authorization": {
- "applicationId": "f2c304cf-8e7e-4c3f-8164-16299ad9d272",
- "roleDefinitionId": "c1cf3708-588a-4647-be7f-f400bbe214cf"
- },
- "resourceTypes": [
- {
- "resourceType": "resources",
- "locations": [],
- "apiVersions": [
- "2017-11-01-preview",
- "2017-08-31-preview",
- "2017-06-30-preview",
- "2017-05-31-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managementGroups",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta",
- "2018-01-01-preview",
- "2017-11-01-preview",
- "2017-08-31-preview",
- "2017-06-30-preview",
- "2017-05-31-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "getEntities",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta",
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managementGroups/settings",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta",
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta",
- "2018-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults/asyncOperation",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta",
- "2018-01-01-preview",
- "2017-11-01-preview",
- "2017-08-31-preview",
- "2017-06-30-preview",
- "2017-05-31-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "tenantBackfillStatus",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "startTenantBackfill",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2020-10-01",
- "2020-05-01",
- "2020-02-01",
- "2019-11-01",
- "2018-03-01-preview",
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Maps",
- "namespace": "Microsoft.Maps",
- "authorizations": [
- {
- "applicationId": "608f6f31-fed0-4f7b-809f-90f6c9b3de78",
- "roleDefinitionId": "3431F0E6-63BC-482D-A96E-0AB819610A5F"
- },
- {
- "applicationId": "ba1ea022-5807-41d5-bbeb-292c7e1cf5f6",
- "roleDefinitionId": "48195074-b752-4868-be0f-7c324a224aa1"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "West Central US",
- "Global",
- "West US 2",
- "East US",
- "West Europe",
- "North Europe"
- ],
- "apiVersions": [
- "2021-02-01",
- "2020-02-01-preview",
- "2018-05-01",
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2021-02-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/privateAtlases",
- "locations": [
- "United States"
- ],
- "apiVersions": [
- "2020-02-01-preview"
- ],
- "defaultApiVersion": "2020-02-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/creators",
- "locations": [
- "North Europe",
- "West Europe",
- "East US 2",
- "West US 2",
- "Europe",
- "United States"
- ],
- "apiVersions": [
- "2021-02-01",
- "2020-02-01-preview"
- ],
- "defaultApiVersion": "2021-02-01",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/eventGridFilters",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2020-02-01-preview",
- "2018-05-01"
- ],
- "defaultApiVersion": "2018-05-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2020-02-01-preview",
- "2018-05-01",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2021-02-01",
- "operations": "2021-02-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftLocationBasedServices"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "MicrosoftLocationBasedServicesShoebox",
- "sourceMdmNamespace": "ServiceOperations"
- }
- ]
- },
- "regionless": true
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Marketplace",
- "namespace": "Microsoft.Marketplace",
- "authorizations": [
- {
- "applicationId": "a0e1e353-1a3e-42cf-a8ea-3a9746eec58c"
- },
- {
- "applicationId": "87df0fbf-e22d-4d7c-bc30-f59ca7460837"
- },
- {
- "applicationId": "a5ce81bb-67c7-4043-952a-22004782adb5"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "register",
- "locations": [],
- "apiVersions": [
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privategalleryitems",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "products",
- "locations": [],
- "apiVersions": [
- "2018-08-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offers",
- "locations": [],
- "apiVersions": [
- "2018-08-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "macc",
- "locations": [],
- "apiVersions": [
- "2018-08-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers/offers",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers/offers/plans",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers/offers/plans/configs",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers/offers/plans/configs/importImage",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offerTypes/publishers/offers/plans/agreements",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listAvailableOffers",
- "locations": [],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "publishers",
- "locations": [],
- "apiVersions": [
- "2019-06-30-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "publishers/offers",
- "locations": [],
- "apiVersions": [
- "2019-06-30-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "publishers/offers/amendments",
- "locations": [],
- "apiVersions": [
- "2019-06-30-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStoreClient",
- "locations": [],
- "apiVersions": [
- "2018-08-01-beta",
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores",
- "locations": [],
- "apiVersions": [
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/offers",
- "locations": [],
- "apiVersions": [
- "2020-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/requestApprovals/query",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/requestApprovals/withdrawPlan",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/RequestApprovals",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/queryNotificationsState",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/offers/acknowledgeNotification",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateStores/AdminRequestApprovals",
- "locations": [],
- "apiVersions": [
- "2020-12-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MarketplaceApps",
- "namespace": "Microsoft.MarketplaceApps",
- "resourceTypes": [
- {
- "resourceType": "classicDevServices",
- "locations": [
- "Northwest US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East"
- ],
- "apiVersions": [
- "2017-11-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2017-11-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2017-11-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MarketplaceOrdering",
- "namespace": "Microsoft.MarketplaceOrdering",
- "resourceTypes": [
- {
- "resourceType": "agreements",
- "locations": [
- "South Central US",
- "West US"
- ],
- "apiVersions": [
- "2021-01-01",
- "2015-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2015-06-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "offertypes",
- "locations": [
- "South Central US",
- "West US"
- ],
- "apiVersions": [
- "2021-01-01",
- "2015-06-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Migrate",
- "namespace": "Microsoft.Migrate",
- "authorizations": [
- {
- "applicationId": "e3bfd6ac-eace-4438-9dc1-eed439e738de",
- "roleDefinitionId": "e88f4159-1d71-4b12-8ef0-38c039cb051e"
- },
- {
- "applicationId": "51df634f-ddb4-4901-8a2d-52f6393a796b",
- "roleDefinitionId": "d7568dc2-2265-41f7-9c0f-1e9c7862ca62"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "projects",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia"
- ],
- "apiVersions": [
- "2018-02-02",
- "2017-11-11-preview",
- "2017-09-25-privatepreview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrateprojects",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "North Europe",
- "West Europe",
- "West US 2",
- "Australia Southeast",
- "UK South",
- "UK West",
- "Canada Central",
- "Central India",
- "South India",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Korea South",
- "Korea Central",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-06-01-preview",
- "2020-05-01",
- "2019-06-01",
- "2018-09-01-preview"
- ],
- "defaultApiVersion": "2018-09-01-preview",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "e3bfd6ac-eace-4438-9dc1-eed439e738de"
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "assessmentProjects",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-05-01-preview",
- "2019-10-01",
- "2019-05-01",
- "2018-06-30-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "moveCollections",
- "locations": [
- "East US 2",
- "North Europe",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "Japan East"
- ],
- "apiVersions": [
- "2021-01-01",
- "2019-10-01-preview"
- ],
- "defaultApiVersion": "2021-01-01",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "c1044a71-fd4a-42f0-9ba3-bd810cae7cb3"
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US"
- ],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2018-06-30-preview",
- "2018-02-02",
- "2017-11-11-preview",
- "2017-09-25-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-02-02",
- "2017-11-11-preview",
- "2017-09-25-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia"
- ],
- "apiVersions": [
- "2018-02-02",
- "2017-11-11-preview",
- "2017-09-25-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/assessmentOptions",
- "locations": [
- "West Central US",
- "East US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia"
- ],
- "apiVersions": [
- "2018-02-02",
- "2017-11-11-preview",
- "2017-09-25-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/rmsOperationResults",
- "locations": [
- "East US 2",
- "North Europe",
- "UK South",
- "Southeast Asia",
- "Australia East",
- "Japan East"
- ],
- "apiVersions": [
- "2021-01-01",
- "2019-10-01-preview"
- ],
- "defaultApiVersion": "2021-01-01",
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MixedReality",
- "namespace": "Microsoft.MixedReality",
- "authorizations": [
- {
- "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18",
- "roleDefinitionId": "b67ee066-e058-4ddb-92bc-83cdd74bc38a"
- },
- {
- "applicationId": "a15bc1de-f777-408f-9d2b-a27ed19c72ba"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2021-01-01",
- "2020-05-01",
- "2020-04-06-preview",
- "2019-12-02-preview",
- "2019-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Australia East",
- "East US",
- "East US 2",
- "Japan East",
- "Korea Central",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2021-01-01",
- "2020-05-01",
- "2020-04-06-preview",
- "2019-12-02-preview",
- "2019-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-preview",
- "2021-01-01",
- "2020-05-01",
- "2020-04-06-preview",
- "2019-12-02-preview",
- "2019-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "spatialAnchorsAccounts",
- "locations": [
- "Australia East",
- "East US",
- "East US 2",
- "Korea Central",
- "North Europe",
- "West Europe",
- "South Central US",
- "UK South",
- "Southeast Asia",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2021-01-01",
- "2020-05-01",
- "2019-12-02-preview",
- "2019-02-28-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-05-01",
- "operations": "2020-05-01"
- },
- "mdsMappingResourceIdOverridePathSelector": "",
- "metrics": {
- "metricsFilterPathSelector": "",
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MixedReality"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "SpatialAnchorsShoebox",
- "sourceMdmNamespace": "SACustomer"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "remoteRenderingAccounts",
- "locations": [
- "East US 2",
- "East US",
- "Southeast Asia",
- "West Europe",
- "West US 2",
- "Japan East",
- "Australia East",
- "North Europe",
- "South Central US",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2021-01-01",
- "2020-04-06-preview",
- "2019-12-02-preview"
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-04-06-preview",
- "operations": "2020-04-06-preview"
- },
- "mdsMappingResourceIdOverridePathSelector": "",
- "metrics": {
- "metricsFilterPathSelector": "",
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MixedReality"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "RemoteRenderingShoebox",
- "sourceMdmNamespace": "RRCustomer"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "objectAnchorsAccounts",
- "locations": [
- "East US 2"
- ],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-02-28-preview",
- "operations": "2019-02-28-preview"
- },
- "mdsMappingResourceIdOverridePathSelector": "",
- "metrics": {
- "metricsFilterPathSelector": "",
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.MixedReality"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "DefaultShoebox",
- "sourceMdmNamespace": "DefaultCustomer"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MobileNetwork",
- "namespace": "Microsoft.MobileNetwork",
- "authorizations": [
- {
- "applicationId": "54b9b9be-c365-4548-95c6-d2f2011f48f4",
- "roleDefinitionId": "b27fa4bc-5127-4625-b3e5-5fc5eddbc24e"
- },
- {
- "applicationId": "b8ed041c-aa91-418e-8f47-20c70abc2de1",
- "roleDefinitionId": "b27fa4bc-5127-4625-b3e5-5fc5eddbc24e"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-06-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2020-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-06-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.NetApp",
- "namespace": "Microsoft.NetApp",
- "authorizations": [
- {
- "applicationId": "12fb057d-b751-47cd-857c-f2934bb677b4",
- "roleDefinitionId": "e4796bef-6b6d-4cbc-ba1e-27f1a308d860"
- },
- {
- "applicationId": "608f9929-9737-432e-860f-4e1c1821052f",
- "roleDefinitionId": "3db66429-be98-4b0c-8ad6-20dc5cb960e4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East US",
- "East US 2",
- "France Central",
- "Germany North",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Europe",
- "Norway East",
- "Norway West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2",
- "West US (Stage)",
- "West US 2 (Stage)",
- "South Central US (Stage)"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-02-01",
- "2020-12-01",
- "2020-11-01",
- "2020-10-01",
- "2020-09-01",
- "2020-08-01",
- "2020-07-01",
- "2020-06-01",
- "2020-05-01",
- "2020-03-01",
- "2020-02-01",
- "2019-11-01",
- "2019-10-01",
- "2019-08-01",
- "2019-07-01",
- "2019-06-01",
- "2019-05-01",
- "2017-08-15"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "12fb057d-b751-47cd-857c-f2934bb677b4"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-08-15",
- "operations": "2017-08-15"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.NetApp"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftNetAppShoebox2",
- "sourceMdmNamespace": "NetAppUsageAndMetrics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ObjectStore",
- "namespace": "Microsoft.ObjectStore",
- "resourceTypes": [
- {
- "resourceType": "osNamespaces",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OffAzure",
- "namespace": "Microsoft.OffAzure",
- "authorizations": [
- {
- "applicationId": "728a93e3-065d-4678-93b1-3cc281223341",
- "roleDefinitionId": "b9967bf7-a345-4af8-95f0-49916f760fc6"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "VMwareSites",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-09-09-preview",
- "2020-01-01-preview",
- "2020-01-01",
- "2019-06-06",
- "2019-05-01-preview",
- "2018-05-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "HyperVSites",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-01-01",
- "2019-06-06",
- "2018-05-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ServerSites",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-09-09-preview",
- "2020-01-01-preview",
- "2019-05-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "ImportSites",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-02-01",
- "2020-01-01-preview",
- "2019-05-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "MasterSites",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-11-11-preview",
- "2020-07-07"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-07-07"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Central US",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "West US 2",
- "Southeast Asia",
- "East Asia",
- "Central India",
- "South India",
- "Canada Central",
- "Australia Southeast",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Korea Central",
- "Korea South",
- "France Central",
- "Switzerland North",
- "Australia East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-07-07"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-01-01",
- "2019-06-06",
- "2018-05-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OpenLogisticsPlatform",
- "namespace": "Microsoft.OpenLogisticsPlatform",
- "authorizations": [
- {
- "applicationId": "3bc3fbf6-023a-4d86-bd09-bac559ccc9cc",
- "roleDefinitionId": "38f09e57-663e-42b8-9db9-7d9e5138d5e4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US 2 EUAP",
- "West Central US"
- ],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "shareInvites",
- "locations": [
- "East US 2 EUAP",
- "West Central US"
- ],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "applicationRegistrationInvites",
- "locations": [
- "East US 2 EUAP",
- "West Central US"
- ],
- "apiVersions": [
- "2020-06-23-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Peering",
- "namespace": "Microsoft.Peering",
- "resourceTypes": [
- {
- "resourceType": "peerings",
- "locations": [
- "Japan East",
- "Japan West",
- "Korea Central",
- "East Asia",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Southeast Asia",
- "West India",
- "South India",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "Canada Central",
- "West US",
- "West US 2",
- "West Central US",
- "Canada East",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "peeringLocations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "legacyPeerings",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "peerAsns",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "peeringServices",
- "locations": [
- "Japan East",
- "Japan West",
- "Korea Central",
- "East Asia",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Southeast Asia",
- "West India",
- "South India",
- "East US",
- "East US 2",
- "North Central US",
- "South Central US",
- "Canada Central",
- "West US",
- "West US 2",
- "West Central US",
- "Canada East",
- "West Europe",
- "UK South",
- "UK West",
- "North Europe",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "peeringServiceCountries",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "peeringServiceLocations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "peeringServiceProviders",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "checkServiceProviderAvailability",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- },
- {
- "resourceType": "cdnPeeringPrefixes",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01"
- ],
- "defaultApiVersion": "2020-10-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-04-01",
- "2020-01-01-preview",
- "2019-09-01-preview",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2020-04-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-04-01",
- "operations": "2020-04-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftPeering"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftPeeringShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerBI",
- "namespace": "Microsoft.PowerBI",
- "authorizations": [
- {
- "applicationId": "00000009-0000-0000-c000-000000000000",
- "roleDefinitionId": "d2079c0c-4a98-48b1-b511-eae3fc2003ab"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaceCollections",
- "locations": [
- "South Central US",
- "North Central US",
- "East US 2",
- "West US",
- "West Europe",
- "North Europe",
- "Brazil South",
- "Southeast Asia",
- "Australia Southeast",
- "Canada Central",
- "Japan East",
- "UK South",
- "West India"
- ],
- "apiVersions": [
- "2016-01-29"
- ],
- "defaultApiVersion": "2016-01-29",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2016-01-29"
- ],
- "defaultApiVersion": "2016-01-29",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "South Central US",
- "North Central US",
- "East US 2",
- "West US",
- "West Europe",
- "North Europe",
- "Brazil South",
- "Southeast Asia",
- "Australia Southeast",
- "Canada Central",
- "Japan East",
- "UK South",
- "West India"
- ],
- "apiVersions": [
- "2016-01-29"
- ],
- "defaultApiVersion": "2016-01-29",
- "capabilities": "None"
- },
- {
- "resourceType": "privateLinkServicesForPowerBI",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "privateLinkServicesForPowerBI/operationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-06-01"
- ],
- "defaultApiVersion": "2020-06-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2020-06-01",
- "2016-01-29"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-01-29",
- "operations": "2016-01-29"
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "PBIDedicatedRP",
- "onbehalfSupportedLogCategories": [
- "Engine"
- ]
- }
- ],
- "regionless": true
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerBIDedicated",
- "namespace": "Microsoft.PowerBIDedicated",
- "authorizations": [
- {
- "applicationId": "4ac7d521-0382-477b-b0f8-7e1d95f85ca2",
- "roleDefinitionId": "490d5987-bcf6-4be6-b6b2-056a78cb693a"
- },
- {
- "applicationId": "cb4dc29f-0bf4-402a-8b30-7511498ed654",
- "roleDefinitionId": "e03b0682-208e-4ddd-841f-66fb49a5c930"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "capacities",
- "locations": [
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Norway East",
- "Norway West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "Japan West",
- "South Africa North",
- "Switzerland North",
- "Switzerland West",
- "Canada East",
- "South Africa West",
- "UK West",
- "Central US",
- "Central India",
- "Australia East",
- "East Asia",
- "East US",
- "East US 2",
- "West India",
- "Japan East",
- "West Central US",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-01-01",
- "2018-09-01-preview",
- "2017-10-01",
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2017-01-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "autoScaleVCores",
- "locations": [
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Norway East",
- "Norway West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "Japan West",
- "South Africa North",
- "Switzerland North",
- "Switzerland West",
- "Canada East",
- "South Africa West",
- "UK West",
- "Central US",
- "Central India",
- "Australia East",
- "East Asia",
- "East US",
- "East US 2",
- "West India",
- "Japan East",
- "West Central US",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-01-01"
- ],
- "defaultApiVersion": "2021-01-01",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2017-01-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Norway East",
- "Norway West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "Japan West",
- "Switzerland North",
- "Switzerland West",
- "Canada East",
- "UK West",
- "Central US",
- "Central India",
- "Australia East",
- "East Asia",
- "East US",
- "East US 2",
- "West India",
- "Japan East",
- "West Central US",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South Africa West",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-01-01",
- "2018-09-01-preview",
- "2017-10-01",
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2017-01-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Norway East",
- "Norway West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "Japan West",
- "Switzerland North",
- "Switzerland West",
- "Canada East",
- "UK West",
- "Central US",
- "Central India",
- "Australia East",
- "East Asia",
- "East US",
- "East US 2",
- "West India",
- "Japan East",
- "West Central US",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "South Africa North",
- "South Africa West",
- "West US 2"
- ],
- "apiVersions": [
- "2021-01-01",
- "2018-09-01-preview",
- "2017-10-01",
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2017-01-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Norway East",
- "Norway West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "France Central",
- "France South",
- "Korea Central",
- "Korea South",
- "Japan West",
- "Switzerland North",
- "Switzerland West",
- "Canada East",
- "UK West",
- "Central US",
- "Central India",
- "Australia East",
- "East Asia",
- "East US",
- "East US 2",
- "West India",
- "Japan East",
- "West Central US",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2",
- "South Africa North",
- "South Africa West"
- ],
- "apiVersions": [
- "2021-01-01",
- "2018-09-01-preview",
- "2017-10-01",
- "2017-01-01-preview"
- ],
- "defaultApiVersion": "2017-01-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US 2"
- ],
- "apiVersions": [
- "2021-01-01",
- "2018-09-01-preview",
- "2017-10-01",
- "2017-01-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2017-01-01-preview"
- },
- "metrics": {
- "metricsFilterPathSelector": "sku.name",
- "mdmInfo": [
- {
- "sourceMdmAccount": "PBIDedicated",
- "sourceMdmNamespace": "SystemCounters"
- }
- ],
- "mdsInfo": [
- {
- "serviceIdentity": "PBIDedicatedRP"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "PBIDedicatedRP",
- "onbehalfSupportedLogCategories": [
- "Engine"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerPlatform",
- "namespace": "Microsoft.PowerPlatform",
- "authorization": {
- "applicationId": "e64bd61e-5424-451f-b666-e02ee2878437",
- "roleDefinitionId": "51598b27-f396-476b-b212-90d7da526159"
- },
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-10-30",
- "2020-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "enterprisePolicies",
- "locations": [],
- "apiVersions": [
- "2020-10-30-preview",
- "2020-10-30"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ProjectBabylon",
- "namespace": "Microsoft.ProjectBabylon",
- "authorizations": [
- {
- "applicationId": "73c2949e-da2d-457a-9607-fcc665198967",
- "roleDefinitionId": "1BC09725-0C9B-4F57-A3D0-FCCF4EB40120",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "defaultApiVersion": "2019-10-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "73c2949e-da2d-457a-9607-fcc665198967"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-10-01-preview",
- "operations": "2019-10-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "ProjectBabylon"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftProjectBabylonShoebox",
- "sourceMdmNamespace": "CatalogAnalytics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ProviderHub",
- "namespace": "Microsoft.ProviderHub",
- "resourceTypes": [
- {
- "resourceType": "providerRegistrations",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-11-20",
- "2020-10-01-preview",
- "2020-09-01-preview",
- "2020-06-01-preview",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationStatuses",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-11-20",
- "2020-06-01-preview",
- "2019-10-01",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providerRegistrations/resourceTypeRegistrations",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-11-20",
- "2020-10-01-preview",
- "2020-09-01-preview",
- "2020-06-01-preview",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providerRegistrations/defaultRollouts",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-11-20",
- "2020-10-01-preview",
- "2020-09-01-preview",
- "2020-06-01-preview",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providerRegistrations/customRollouts",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-11-20",
- "2020-10-01-preview",
- "2020-09-01-preview",
- "2020-06-01-preview",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "availableAccounts",
- "locations": [],
- "apiVersions": [
- "2021-05-01-preview",
- "2020-06-01-preview",
- "2019-02-01-preview",
- "2018-11-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Purview",
- "namespace": "Microsoft.Purview",
- "authorizations": [
- {
- "applicationId": "73c2949e-da2d-457a-9607-fcc665198967",
- "roleDefinitionId": "1BC09725-0C9B-4F57-A3D0-FCCF4EB40120",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Canada Central",
- "South Central US",
- "Brazil South",
- "Central India",
- "UK South",
- "Australia East",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-12-01-preview",
- "operations": "2020-12-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "ProjectBabylon"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftAzurePurviewShoebox",
- "sourceMdmNamespace": "CatalogAnalytics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "ProjectBabylon",
- "onbehalfSupportedLogCategories": [
- "ScanStatusLogEvent"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "setDefaultAccount",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "removeDefaultAccount",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "getDefaultAccount",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "East US",
- "West Europe",
- "Southeast Asia",
- "Brazil South",
- "Canada Central",
- "South Central US",
- "Central India",
- "UK South",
- "Australia East",
- "East US 2"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "73c2949e-da2d-457a-9607-fcc665198967"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-12-01-preview",
- "operations": "2020-12-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "ProjectBabylon"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftAzurePurviewShoebox",
- "sourceMdmNamespace": "CatalogAnalytics"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Quantum",
- "namespace": "Microsoft.Quantum",
- "authorizations": [
- {
- "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc",
- "roleDefinitionId": "915bd376-2da8-411d-9906-895a54086a66"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Workspaces",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "West Central US",
- "Japan East",
- "Japan West",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "defaultApiVersion": "2019-11-04-preview",
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc"
- },
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "East US 2 EUAP",
- "Central US EUAP",
- "West US 2",
- "West Central US",
- "Japan East",
- "Japan West",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/offerings",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "West Central US",
- "Japan East",
- "Japan West",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2019-11-04-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc"
- },
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RecommendationsService",
- "namespace": "Microsoft.RecommendationsService",
- "authorizations": [
- {
- "applicationId": "C5B731DB-1B0A-43F6-BCF6-757667D9CDC6",
- "roleDefinitionId": "FA1FE492-0EDB-4A97-A404-DBDF3F915824"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US",
- "West US",
- "North Europe",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts",
- "locations": [
- "East US",
- "West US",
- "North Europe",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/modeling",
- "locations": [
- "West US",
- "West Europe",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/serviceEndpoints",
- "locations": [
- "East US",
- "West US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RecoveryServices",
- "namespace": "Microsoft.RecoveryServices",
- "authorizations": [
- {
- "applicationId": "262044b1-e2ce-469f-a196-69ab7ada62d3",
- "roleDefinitionId": "21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"
- },
- {
- "applicationId": "b8340c3b-9267-498f-b21a-15d5547fd85e",
- "roleDefinitionId": "8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"
- },
- {
- "applicationId": "3b2fa68d-a091-48c9-95be-88d572e08fb7",
- "roleDefinitionId": "47d68fae-99c7-4c10-b9db-2316116a061e"
- },
- {
- "applicationId": "9bdab391-7bbe-42e8-8132-e4491dc29cc0",
- "roleDefinitionId": "0383f7f5-023d-4379-b2c7-9ef786459969"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "vaults",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "West Central US",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-03-01",
- "2021-02-10",
- "2021-02-01-preview",
- "2021-02-01",
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-07-01-preview",
- "2020-07-01",
- "2020-02-02-preview",
- "2020-02-02",
- "2019-06-15",
- "2019-05-13-preview",
- "2019-05-13",
- "2018-12-20-preview",
- "2018-12-20",
- "2018-07-10-preview",
- "2018-07-10",
- "2018-01-10",
- "2017-07-01-preview",
- "2017-07-01",
- "2016-12-01",
- "2016-08-10",
- "2016-06-01",
- "2016-05-01",
- "2015-12-15",
- "2015-12-10",
- "2015-11-10",
- "2015-08-15",
- "2015-08-10",
- "2015-06-10",
- "2015-03-15"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-01-10"
- }
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2021-02-10",
- "2021-02-01-preview",
- "2021-02-01",
- "2021-01-01",
- "2020-12-01",
- "2020-10-01",
- "2020-07-01-preview",
- "2020-07-01",
- "2020-02-02-preview",
- "2020-02-02",
- "2019-06-15",
- "2019-05-13-preview",
- "2019-05-13",
- "2018-07-10-preview",
- "2018-07-10",
- "2018-01-10",
- "2017-09-01",
- "2017-07-01-preview",
- "2017-07-01",
- "2016-12-01",
- "2016-08-10",
- "2016-06-01",
- "2015-12-15",
- "2015-12-10",
- "2015-11-10",
- "2015-08-15",
- "2015-08-10",
- "2015-06-10",
- "2015-03-15"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-08-10"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2017-07-01",
- "2016-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupStatus",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-03-01",
- "2017-07-01",
- "2016-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-01-10"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-01-10"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/allocatedStamp",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2016-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/allocateStamp",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2016-06-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupValidateFeatures",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-03-01",
- "2017-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-07-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupPreValidateProtection",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-03-01",
- "2017-07-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-07-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupCrrJobs",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupCrrJob",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupAadProperties",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupCrossRegionRestore",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupCrrOperationResults",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/backupCrrOperationsStatus",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2018-12-20-preview",
- "2018-12-20"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-12-20-preview"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "backupProtectedItems",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2017-07-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2017-07-01-preview"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "replicationEligibilityResults",
- "locations": [
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "Brazil South",
- "East Asia",
- "Southeast Asia",
- "North Central US",
- "South Central US",
- "Japan East",
- "Japan West",
- "Australia East",
- "Australia Southeast",
- "Central US",
- "East US 2",
- "Central India",
- "South India",
- "West India",
- "West Central US",
- "Canada Central",
- "Canada East",
- "West US 2",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-02-10",
- "2018-07-10"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2018-07-10"
- }
- ],
- "capabilities": "SupportsExtension"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2016-08-10",
- "operations": "2016-08-10"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureRecoveryServices"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureRecoveryServices",
- "onbehalfSupportedLogCategories": [
- "AzureBackupReport",
- "CoreAzureBackup",
- "AddonAzureBackupJobs",
- "AddonAzureBackupAlerts",
- "AddonAzureBackupPolicy",
- "AddonAzureBackupStorage",
- "AddonAzureBackupProtectedInstance",
- "AzureSiteRecoveryJobs",
- "AzureSiteRecoveryEvents",
- "AzureSiteRecoveryReplicatedItems",
- "AzureSiteRecoveryReplicationStats",
- "AzureSiteRecoveryRecoveryPoints",
- "AzureSiteRecoveryReplicationDataUploadRate",
- "AzureSiteRecoveryProtectedDiskDataChurn"
- ]
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "56d7070a-0115-4bfe-8398-033c18db3871"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RedHatOpenShift",
- "namespace": "Microsoft.RedHatOpenShift",
- "authorizations": [
- {
- "applicationId": "f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875",
- "roleDefinitionId": "640c5ac9-6f32-4891-94f4-d20f7aa9a7e6",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635",
- "managedByAuthorization": {
- "allowManagedByInheritance": true
- }
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-04-30",
- "2019-12-31-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UK South",
- "UK West",
- "West Europe",
- "West US 2",
- "West US"
- ],
- "apiVersions": [
- "2020-04-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationsstatus",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UK South",
- "UK West",
- "West Europe",
- "West US 2",
- "West US"
- ],
- "apiVersions": [
- "2020-04-30"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "OpenShiftClusters",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "Switzerland West",
- "UAE North",
- "UK South",
- "UK West",
- "West Europe",
- "West US 2",
- "West US"
- ],
- "apiVersions": [
- "2020-04-30"
- ],
- "defaultApiVersion": "2020-04-30",
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-04-30",
- "2019-12-31-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceConnector",
- "namespace": "Microsoft.ResourceConnector",
- "authorizations": [
- {
- "applicationId": "585fc3c3-9a59-4720-8319-53cce041a605",
- "roleDefinitionId": "008e7b93-7712-4d05-83ce-a9fcc80300e9"
- },
- {
- "applicationId": "d22ea4d1-2678-4a7b-aa5e-f340c2a7d993",
- "roleDefinitionId": "7c812eee-67c9-4a05-a1b1-c0ac88fd1067"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-09-15-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01",
- "2020-07-15-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "e0a56fdf-acc9-427b-b9f2-763bb3e8724e"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceGraph",
- "namespace": "Microsoft.ResourceGraph",
- "authorization": {
- "applicationId": "509e4652-da8d-478d-a730-e9d4a1996ca4"
- },
- "resourceTypes": [
- {
- "resourceType": "resources",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-04-01-preview",
- "2019-04-01",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourcesHistory",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2020-04-01-preview",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceChanges",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2020-04-01-preview",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceChangeDetails",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2020-09-01-preview",
- "2020-04-01-preview",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-04-01-preview",
- "2019-04-01",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptionsStatus",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2019-04-01",
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "queries",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources",
- "namespace": "Microsoft.Resources",
- "authorization": {
- "applicationId": "3b990c8b-9607-4c2a-8b04-1d41985facca"
- },
- "resourceTypes": [
- {
- "resourceType": "tenants",
- "locations": [],
- "apiVersions": [
- "2020-01-01",
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationresults",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "notifyResourceJobs",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "tags",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "checkPolicyCompliance",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "providers",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkresourcename",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "calculateTemplateHash",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resources",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions",
- "locations": [],
- "apiVersions": [
- "2019-10-01",
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/resources",
- "locations": [],
- "apiVersions": [
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/providers",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/operationresults",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceGroups",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "SupportsLocation"
- },
- {
- "resourceType": "subscriptions/resourceGroups",
- "locations": [
- "Central US",
- "East Asia",
- "Southeast Asia",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "North Europe",
- "West Europe",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Australia Southeast",
- "Australia East",
- "West India",
- "South India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "Jio India West",
- "West US 3"
- ],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "subscriptions/resourcegroups/resources",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/locations",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2016-06-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/tagnames",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions/tagNames/tagValues",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deployments",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-06-01",
- "2019-09-01",
- "2019-08-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deployments/operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01",
- "2020-10-01",
- "2020-06-01",
- "2019-09-01",
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "links",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2016-06-01"
- },
- {
- "profileVersion": "2019-03-01-hybrid",
- "apiVersion": "2018-05-01"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-01-01"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2015-01-01"
- }
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "bulkDelete",
- "locations": [],
- "apiVersions": [
- "2019-05-01",
- "2019-04-01",
- "2019-03-01",
- "2018-11-01",
- "2018-09-01",
- "2018-08-01",
- "2018-07-01",
- "2018-05-01",
- "2018-02-01",
- "2018-01-01",
- "2017-08-01",
- "2017-06-01",
- "2017-05-10",
- "2017-05-01",
- "2017-03-01",
- "2016-09-01",
- "2016-07-01",
- "2016-06-01",
- "2016-02-01",
- "2015-11-01",
- "2015-01-01",
- "2014-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "deploymentScripts",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Switzerland North",
- "Germany West Central",
- "East US 2",
- "East US",
- "Central US",
- "North Central US",
- "France Central",
- "UK South",
- "Central India",
- "South India",
- "Japan East",
- "Korea Central",
- "North Europe",
- "Norway East",
- "UAE North",
- "West Central US",
- "West Europe",
- "West US 2",
- "West US",
- "South Central US"
- ],
- "apiVersions": [
- "2020-10-01",
- "2019-10-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "deploymentScripts/logs",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Switzerland North",
- "Germany West Central",
- "East US 2",
- "East US",
- "Central US",
- "North Central US",
- "France Central",
- "UK South",
- "Central India",
- "South India",
- "Japan East",
- "Korea Central",
- "North Europe",
- "Norway East",
- "UAE North",
- "West Central US",
- "West Europe",
- "West US 2",
- "West US",
- "South Central US"
- ],
- "apiVersions": [
- "2020-10-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/deploymentScriptOperationResults",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Brazil South",
- "Canada Central",
- "Switzerland North",
- "Germany West Central",
- "East US 2",
- "East US",
- "Central US",
- "North Central US",
- "France Central",
- "UK South",
- "Central India",
- "South India",
- "Japan East",
- "Korea Central",
- "North Europe",
- "Norway East",
- "UAE North",
- "West Central US",
- "West Europe",
- "West US 2",
- "West US",
- "South Central US"
- ],
- "apiVersions": [
- "2020-10-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "templateSpecs",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Central",
- "Australia Central 2",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Switzerland North",
- "Germany West Central",
- "East US 2",
- "East US",
- "Central US",
- "North Central US",
- "France Central",
- "UK South",
- "UK West",
- "Central India",
- "West India",
- "South India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Europe",
- "Norway East",
- "UAE North",
- "West Central US",
- "West Europe",
- "West US 2",
- "West US",
- "South Central US",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "templateSpecs/versions",
- "locations": [
- "East Asia",
- "Southeast Asia",
- "Australia East",
- "Australia Central",
- "Australia Central 2",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Switzerland North",
- "Germany West Central",
- "East US 2",
- "East US",
- "Central US",
- "North Central US",
- "France Central",
- "UK South",
- "UK West",
- "Central India",
- "West India",
- "South India",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Europe",
- "Norway East",
- "UAE North",
- "West Central US",
- "West Europe",
- "West US 2",
- "West US",
- "South Central US",
- "South Africa North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-03-01-preview",
- "2019-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "endpoints": {
- "galleryEndpoint": "https://gallery.azure.com",
- "graphEndpoint": "https://graph.windows.net/",
- "portalEndpoint": "https://portal.azure.com",
- "graphAudience": "https://graph.windows.net/",
- "authentication": {
- "loginEndpoint": "https://login.windows.net",
- "audiences": [
- "https://management.core.windows.net/",
- "https://management.azure.com/"
- ],
- "tenant": "common",
- "identityProvider": "AAD"
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "3b990c8b-9607-4c2a-8b04-1d41985facca"
- }
- },
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SaaS",
- "namespace": "Microsoft.SaaS",
- "authorizations": [
- {
- "applicationId": "f738ef14-47dc-4564-b53b-45069484ccc7",
- "roleDefinitionId": "b131dd2d-387a-4cae-bb9b-3d021f80d1e6"
- },
- {
- "applicationId": "20e940b3-4c77-4b0b-9a53-9e16a1b010a7"
- },
- {
- "applicationId": "5b712e99-51a3-41ce-86ff-046e0081c5c0"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "applications",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checknameavailability",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "saasresources",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resources",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2018-03-01-beta"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Scheduler",
- "namespace": "Microsoft.Scheduler",
- "resourceTypes": [
- {
- "resourceType": "jobcollections",
- "locations": [
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Central US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South"
- ],
- "apiVersions": [
- "2016-03-01",
- "2016-01-01",
- "2014-08-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Central US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South"
- ],
- "apiVersions": [
- "2016-03-01",
- "2016-01-01",
- "2014-08-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "North Central US",
- "South Central US",
- "North Europe",
- "West Europe",
- "East Asia",
- "Southeast Asia",
- "West US",
- "East US",
- "Japan West",
- "Japan East",
- "Brazil South",
- "Central US",
- "East US 2",
- "Australia East",
- "Australia Southeast",
- "South India",
- "Central India",
- "West India",
- "Canada Central",
- "Canada East",
- "West US 2",
- "West Central US",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South"
- ],
- "apiVersions": [
- "2016-03-01",
- "2016-01-01",
- "2014-08-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Scom",
- "namespace": "Microsoft.Scom",
- "authorizations": [
- {
- "applicationId": "d3315f6c-968a-40bb-94d2-a6a9503b05f5",
- "roleDefinitionId": "a51caa68-288c-4fb0-87d2-a722d0910d90",
- "managedByRoleDefinitionId": "2324acd9-7b7e-49d0-a2a8-e084c9adc580"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2021-06-30-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-06-30-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-06-30-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "managedInstances",
- "locations": [
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2021-06-30-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ScVmm",
- "namespace": "Microsoft.ScVmm",
- "authorizations": [
- {
- "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05",
- "roleDefinitionId": "4fe6d683-8411-4247-8525-b6b5b8a80669"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-06-05-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US",
- "West US 2",
- "East US 2 EUAP",
- "West Europe"
- ],
- "apiVersions": [
- "2020-06-05-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-06-05-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Search",
- "namespace": "Microsoft.Search",
- "authorizations": [
- {
- "applicationId": "408992c7-2af6-4ff1-92e3-65b73d2b5092",
- "roleDefinitionId": "20FA3191-87CF-4C3D-9510-74CCB594A310"
- },
- {
- "applicationId": "880da380-985e-4198-81b9-e05b1cc53158",
- "roleDefinitionId": "d2e67903-baaa-4696-926b-61ab86235aaf"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "searchServices",
- "locations": [
- "Jio India West",
- "West US 3",
- "Germany West Central",
- "Norway East",
- "Switzerland West",
- "Switzerland North",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "Japan West",
- "Japan East",
- "Korea Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "Canada Central",
- "UK South",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-Preview",
- "2020-08-01-Preview",
- "2020-08-01",
- "2020-03-13",
- "2019-10-01-Preview",
- "2015-08-19",
- "2015-02-28",
- "2014-07-31-Preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "checkServiceNameAvailability",
- "locations": [],
- "apiVersions": [
- "2015-02-28",
- "2014-07-31-Preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-04-01-Preview",
- "2020-08-01-Preview",
- "2020-08-01",
- "2020-03-13",
- "2019-10-01-Preview",
- "2015-08-19"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "resourceHealthMetadata",
- "locations": [
- "Jio India West",
- "West US 3",
- "Germany West Central",
- "Norway East",
- "Switzerland West",
- "Switzerland North",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "East Asia",
- "North Central US",
- "South Central US",
- "Central US",
- "Japan West",
- "Japan East",
- "Korea Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "Canada Central",
- "UK South",
- "France Central",
- "South Africa North",
- "UAE North"
- ],
- "apiVersions": [
- "2021-04-01-Preview",
- "2020-08-01-Preview",
- "2020-08-01",
- "2020-03-13",
- "2019-10-01-Preview",
- "2015-08-19"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-Preview",
- "2020-08-01-Preview",
- "2020-08-01",
- "2020-03-13",
- "2019-10-01-Preview",
- "2015-08-19",
- "2015-02-28"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "7a9069fc-325f-43a6-a3b2-2bd000d8cc08"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureSearch"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": false,
- "sourceMdmAccount": "azsearchshoeboxprod",
- "sourceMdmNamespace": "Microsoft.Search"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "AzureSearch",
- "onbehalfSupportedLogCategories": [
- "OperationLogs"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SecurityDetonation",
- "namespace": "Microsoft.SecurityDetonation",
- "authorizations": [
- {
- "applicationId": "29820072-374d-49b8-945a-3941d7e9b468",
- "roleDefinitionId": "4ddf1807-30b0-464a-9d16-a8822daf866b"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Australia Central 2",
- "Central US",
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "North Central US",
- "South Central US",
- "West Central US",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan East",
- "Japan West",
- "North Europe",
- "West Europe",
- "Central India",
- "South India",
- "West India",
- "Canada Central",
- "Canada East",
- "UK West",
- "UK South",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "UAE North",
- "Australia Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "South Africa West",
- "UAE Central",
- "Switzerland West",
- "Germany North",
- "Norway West"
- ],
- "apiVersions": [
- "2020-07-01-preview",
- "2019-08-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2020-07-01-preview",
- "operations": "2020-07-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.SecurityDetonation"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSecurityDetonationShoeboxCentralUS",
- "sourceMdmNamespace": "DaaSRPProd"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SecurityInsights",
- "namespace": "Microsoft.SecurityInsights",
- "authorizations": [
- {
- "applicationId": "98785600-1bb7-4fb9-b9fa-19afe2c8a360",
- "roleDefinitionId": "ef1c46aa-ae81-4091-ab83-f75f28efb7b8"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "alertRules",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "alertRuleTemplates",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "cases",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "bookmarks",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "dataConnectors",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "dataConnectorsCheckRequirements",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "enrichment",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "entities",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "incidents",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-04-01",
- "2021-03-01-preview",
- "2020-01-01",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "officeConsents",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "settings",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "aggregations",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "entityQueries",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "entityQueryTemplates",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "threatIntelligence",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "automationRules",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "sourceControls",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "listrepositories",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "watchlists",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview",
- "2019-01-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "onboardingStates",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "metadata",
- "locations": [
- "West Europe",
- "North Europe",
- "France Central",
- "UK South",
- "UK West",
- "France South",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West",
- "Germany West Central"
- ],
- "apiVersions": [
- "2021-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SerialConsole",
- "namespace": "Microsoft.SerialConsole",
- "resourceTypes": [
- {
- "resourceType": "consoleServices",
- "locations": [],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "serialPorts",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "Southeast Asia",
- "South India",
- "Switzerland North",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/consoleServices",
- "locations": [
- "West US 2",
- "East US 2"
- ],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-05-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceFabric",
- "namespace": "Microsoft.ServiceFabric",
- "authorization": {
- "applicationId": "74cb6831-0dbb-4be1-8206-fd4df301cdc2",
- "roleDefinitionId": "e55cc65f-6903-4917-b4ef-f8d4640b57f5",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- },
- "resourceTypes": [
- {
- "resourceType": "clusters",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters/applications",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/clusterVersions",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/environments",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-12-15-privatepreview",
- "2020-12-15-preview",
- "2020-12-01-privatepreview",
- "2020-12-01-preview",
- "2020-03-01",
- "2020-02-01-privatepreview",
- "2020-02-01-preview",
- "2019-11-01-privatepreview",
- "2019-11-01-preview",
- "2019-06-01-preview",
- "2019-03-01-privatepreview",
- "2019-03-01-preview",
- "2019-03-01",
- "2018-02-01-privatepreview",
- "2018-02-01",
- "2017-07-01-privatepreview",
- "2017-07-01-preview",
- "2016-09-01",
- "2016-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedclusters",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "managedclusters/nodetypes",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedclusters/applicationTypes",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedclusters/applicationTypes/versions",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "managedclusters/applications",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "managedclusters/applications/services",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedClusterOperations",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedClusterOperationResults",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/managedClusterVersions",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/environments/managedClusterVersions",
- "locations": [
- "West US",
- "West US 2",
- "West Central US",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "UK West",
- "UK South",
- "Australia East",
- "Australia Southeast",
- "North Central US",
- "East Asia",
- "Southeast Asia",
- "Japan West",
- "Japan East",
- "South India",
- "West India",
- "Central India",
- "Brazil South",
- "South Central US",
- "Korea Central",
- "Korea South",
- "Canada Central",
- "Canada East",
- "France Central",
- "Australia Central",
- "South Africa North",
- "UAE North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-01-01-preview",
- "2020-01-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "74cb6831-0dbb-4be1-8206-fd4df301cdc2"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceFabricMesh",
- "namespace": "Microsoft.ServiceFabricMesh",
- "authorizations": [
- {
- "applicationId": "d10de03d-5ba3-497a-90e6-7ff8c9736059",
- "roleDefinitionId": "BC13595A-E262-4621-929E-56FF90E6BF18"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "applications",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-09-01-preview",
- "operations": "2018-09-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.ServiceFabricMesh"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftServiceFabricMeshShoebox",
- "sourceMdmNamespace": "SFMeshProd"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "networks",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "volumes",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "secrets",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "gateways",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/applicationOperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/networkOperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/volumeOperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/gatewayOperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/secretOperations",
- "locations": [
- "East US",
- "East US 2",
- "West US",
- "West US 2",
- "South Central US",
- "Central US",
- "France Central",
- "West Europe",
- "North Europe",
- "UK South",
- "UK West",
- "Australia East",
- "East Asia",
- "Southeast Asia",
- "Korea Central",
- "West India",
- "Brazil South",
- "Japan East",
- "Germany West Central",
- "South Africa North",
- "Switzerland North",
- "North Central US",
- "Switzerland West",
- "Canada East",
- "Japan West",
- "Australia Southeast",
- "Central India",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2018-09-01-preview",
- "2018-07-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2018-09-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "d10de03d-5ba3-497a-90e6-7ff8c9736059"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2018-09-01-preview",
- "operations": "2018-09-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.ServiceFabricMesh"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftServiceFabricMeshShoebox",
- "sourceMdmNamespace": "SFMeshProd"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceLinker",
- "namespace": "Microsoft.ServiceLinker",
- "authorizations": [
- {
- "applicationId": "c4288165-6698-45ba-98a5-48ea7791fed3",
- "roleDefinitionId": "57197417-7922-48fd-b5ed-7b142db155ea"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "East US 2 EUAP",
- "East US",
- "West Central US"
- ],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServicesHub",
- "namespace": "Microsoft.ServicesHub",
- "authorizations": [
- {
- "applicationId": "9ed4cd8c-9a98-405f-966b-38ab1b0c24a3"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "connectors",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Japan East",
- "Korea Central",
- "North Europe",
- "Southeast Asia",
- "South Central US",
- "UK South",
- "West Central US",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2019-08-15-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces",
- "locations": [],
- "apiVersions": [
- "2019-08-15-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "supportOfferingEntitlement",
- "locations": [],
- "apiVersions": [
- "2019-08-15-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-08-15-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Singularity",
- "namespace": "Microsoft.Singularity",
- "authorizations": [
- {
- "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3",
- "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee"
- },
- {
- "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1",
- "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee"
- },
- {
- "applicationId": "17724442-aa9a-46cc-bf09-c47bb1a98518",
- "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "accounts/storageContainers",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/accountQuotaPolicies",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/groupPolicies",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "accounts/jobs",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "accounts/models",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "West US 2",
- "East US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "defaultApiVersion": "2020-12-01-preview",
- "capabilities": "SystemAssignedResourceIdentity"
- },
- {
- "resourceType": "locations",
- "locations": [
- "Central US",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceTypeSeries",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/instanceTypeSeries/instanceTypes",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "Central US",
- "South Central US",
- "West Europe",
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "images",
- "locations": [
- "Australia Central",
- "Australia East",
- "Australia Southeast",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "UAE North",
- "UK West",
- "UK South",
- "Brazil South",
- "Korea South",
- "Korea Central",
- "South Central US"
- ],
- "apiVersions": [
- "2020-12-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationIds": [
- "349e15d0-1c96-4829-95e5-7fc8fb358ff3",
- "9581bc0e-c952-4fd3-8d99-e777877718b1"
- ]
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SoftwarePlan",
- "namespace": "Microsoft.SoftwarePlan",
- "resourceTypes": [
- {
- "resourceType": "hybridUseBenefits",
- "locations": [],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "apiProfiles": [
- {
- "profileVersion": "2018-06-01-profile",
- "apiVersion": "2019-06-01-preview"
- }
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Solutions",
- "namespace": "Microsoft.Solutions",
- "authorization": {
- "applicationId": "ba4bc2bd-843f-4d61-9d33-199178eae34e",
- "roleDefinitionId": "6cb99a0b-29a8-49bc-b57b-057acc68cd9a",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635",
- "managedByAuthorization": {
- "managedByResourceRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- }
- },
- "resourceTypes": [
- {
- "resourceType": "applications",
- "locations": [
- "South Central US",
- "North Central US",
- "West Central US",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "West India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview",
- "2018-06-01",
- "2018-03-01",
- "2018-02-01",
- "2017-12-01",
- "2017-09-01"
- ],
- "defaultApiVersion": "2019-07-01",
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "applicationDefinitions",
- "locations": [
- "South Central US",
- "North Central US",
- "West Central US",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "West India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview",
- "2018-06-01",
- "2018-03-01",
- "2018-02-01",
- "2017-12-01",
- "2017-09-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West Central US"
- ],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview",
- "2018-06-01",
- "2018-03-01",
- "2018-02-01",
- "2017-12-01",
- "2017-09-01",
- "2016-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "jitRequests",
- "locations": [
- "South Central US",
- "North Central US",
- "West Central US",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "West India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "South Central US",
- "North Central US",
- "West Central US",
- "West US",
- "West US 2",
- "East US",
- "East US 2",
- "Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia",
- "Brazil South",
- "Japan West",
- "Japan East",
- "Australia East",
- "Australia Southeast",
- "South India",
- "West India",
- "Central India",
- "Canada Central",
- "Canada East",
- "UK South",
- "UK West",
- "Korea Central",
- "Korea South",
- "France Central",
- "Australia Central",
- "UAE North",
- "South Africa North",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "West US 3",
- "Jio India West"
- ],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview",
- "2018-06-01",
- "2018-03-01",
- "2018-02-01",
- "2017-12-01",
- "2017-09-01",
- "2016-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-08-21-preview",
- "2019-07-01",
- "2018-09-01-preview",
- "2018-06-01",
- "2018-03-01",
- "2018-02-01",
- "2017-12-01",
- "2017-09-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "f7da168b-7d8a-4c9d-a1fa-5daaf05e32c2"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SqlVirtualMachine",
- "namespace": "Microsoft.SqlVirtualMachine",
- "authorizations": [
- {
- "applicationId": "bd93b475-f9e2-476e-963d-b2daf143ffb9",
- "roleDefinitionId": "f96bd990-ffdf-4c17-8ee3-77454d9c3f5d"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "SqlVirtualMachineGroups",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "SqlVirtualMachines",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "SqlVirtualMachineGroups/AvailabilityGroupListeners",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationTypes",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/sqlVirtualMachineOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/sqlVirtualMachineGroupOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/availabilityGroupListenerOperationResults",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/registerSqlVmCandidate",
- "locations": [
- "Australia Central",
- "Australia Central 2",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Germany West Central",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "Norway East",
- "South Africa North",
- "South Central US",
- "South India",
- "Southeast Asia",
- "Switzerland North",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2",
- "West US 3"
- ],
- "apiVersions": [
- "2017-03-01-preview"
- ],
- "defaultApiVersion": "2017-03-01-preview",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "ProviderDescrption": "Provisions and maintains always on clusters for Sql VMs"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StorageCache",
- "namespace": "Microsoft.StorageCache",
- "authorizations": [
- {
- "applicationId": "4392ab71-2ce2-4b0d-8770-b352745c73f5",
- "roleDefinitionId": "e27430df-bd6b-4f3a-bd6d-d52ad1a7d075"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "caches",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Korea Central",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.StorageCache"
- }
- ]
- }
- }
- }
- },
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "caches/storageTargets",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Korea Central",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Korea Central",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "usageModels",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Korea Central",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/ascoperations",
- "locations": [
- "Australia East",
- "Canada Central",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "Korea Central",
- "North Central US",
- "North Europe",
- "South Central US",
- "Southeast Asia",
- "UK South",
- "West Europe",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-03-01",
- "2020-10-01",
- "2020-03-01",
- "2019-11-01",
- "2019-08-01-preview"
- ],
- "defaultApiVersion": "2021-03-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "4392ab71-2ce2-4b0d-8770-b352745c73f5"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2021-03-01",
- "operations": "2021-03-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.StorageCache"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftStorageCacheShoebox",
- "sourceMdmNamespace": "Shoebox"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StoragePool",
- "namespace": "Microsoft.StoragePool",
- "authorizations": [
- {
- "applicationId": "5741a1ff-751d-4ad7-bcd1-dfe3c998fd11",
- "roleDefinitionId": "3eef04c6-e880-42e9-aaef-6e04c508124c",
- "managedByRoleDefinitionId": "7379b183-294f-4404-b062-f3b9a0f03f5a"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-03-15-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview",
- "2020-03-15-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StorageSync",
- "namespace": "Microsoft.StorageSync",
- "authorizations": [
- {
- "applicationId": "9469b9f5-6722-4481-a2b2-14ed560b706f",
- "roleDefinitionId": "4cd49d82-1f4d-43fc-af0c-1c1203668e5a"
- },
- {
- "applicationId": "1fcdfafe-959b-4b32-afff-84f850974e84",
- "roleDefinitionId": "18c76bf0-ff35-48d1-8a74-bcd770c71a1f"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "storageSyncServices",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2018-04-02",
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "storageSyncServices/syncGroups",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "storageSyncServices/syncGroups/cloudEndpoints",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "storageSyncServices/syncGroups/serverEndpoints",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "storageSyncServices/registeredServers",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "storageSyncServices/workflows",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "Central US EUAP",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "East US 2 EUAP",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02",
- "2018-01-01-preview",
- "2017-06-05-preview"
- ],
- "defaultApiVersion": "2017-06-05-preview",
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/checkNameAvailability",
- "locations": [
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West Central US",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02"
- ],
- "defaultApiVersion": "2018-04-02",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/workflows",
- "locations": [
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "West Central US",
- "West US 2",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01",
- "2019-10-01",
- "2019-06-01",
- "2019-03-01",
- "2019-02-01",
- "2018-10-01",
- "2018-07-01",
- "2018-04-02"
- ],
- "defaultApiVersion": "2018-04-02",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West Central US",
- "West US",
- "West Europe",
- "North Europe",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast",
- "East US",
- "Canada Central",
- "Canada East",
- "Central US",
- "East US 2",
- "UK South",
- "UK West",
- "Central India",
- "South India",
- "North Central US",
- "South Central US",
- "Brazil South",
- "Japan East",
- "Japan West",
- "West US 2",
- "Korea Central",
- "Korea South",
- "France Central",
- "France South",
- "South Africa North",
- "South Africa West",
- "UAE North",
- "UAE Central",
- "Germany West Central",
- "Germany North",
- "Switzerland North",
- "Switzerland West",
- "Norway East",
- "Norway West"
- ],
- "apiVersions": [
- "2020-03-01"
- ],
- "defaultApiVersion": "2020-03-01",
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-06-05-preview",
- "operations": "2017-06-05-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.StorageSync"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "StorageSyncShoebox",
- "sourceMdmNamespace": "ServerTelemetry"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StreamAnalytics",
- "namespace": "Microsoft.StreamAnalytics",
- "resourceTypes": [
- {
- "resourceType": "streamingjobs",
- "locations": [
- "Central US",
- "West Europe",
- "East US 2",
- "North Europe",
- "Japan East",
- "West US",
- "Southeast Asia",
- "South Central US",
- "East Asia",
- "Japan West",
- "North Central US",
- "East US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "South India",
- "Norway East",
- "Germany West Central",
- "Uae North",
- "Australia Central"
- ],
- "apiVersions": [
- "2019-06-01",
- "2018-11-01",
- "2017-04-01-preview",
- "2016-03-01",
- "2015-11-01",
- "2015-10-01",
- "2015-09-01",
- "2015-08-01-preview",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-03-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters",
- "locations": [
- "Central US",
- "West Europe",
- "East US 2",
- "North Europe",
- "Japan East",
- "West US",
- "Southeast Asia",
- "South Central US",
- "East Asia",
- "Japan West",
- "North Central US",
- "East US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "South India",
- "Norway East",
- "Germany West Central",
- "Uae North",
- "Australia Central"
- ],
- "apiVersions": [
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "clusters/privateEndpoints",
- "locations": [
- "Central US",
- "West Europe",
- "East US 2",
- "North Europe",
- "Japan East",
- "West US",
- "Southeast Asia",
- "South Central US",
- "East Asia",
- "Japan West",
- "North Central US",
- "East US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "UK South",
- "UK West",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "South India",
- "Norway East",
- "Germany West Central",
- "Uae North",
- "Australia Central"
- ],
- "apiVersions": [
- "2020-03-01-preview",
- "2020-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "West Europe",
- "Central US",
- "East US 2",
- "North Europe",
- "Japan East",
- "West US",
- "Southeast Asia",
- "South Central US",
- "East Asia",
- "Japan West",
- "North Central US",
- "East US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "UK South",
- "West US 2",
- "UK West",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "France Central",
- "South India",
- "Norway East",
- "Germany West Central",
- "UAE North",
- "Australia Central"
- ],
- "apiVersions": [
- "2019-06-01",
- "2018-11-01",
- "2017-04-01-preview",
- "2016-03-01",
- "2015-11-01",
- "2015-10-01",
- "2015-09-01",
- "2015-08-01-preview",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/quotas",
- "locations": [],
- "apiVersions": [
- "2019-06-01",
- "2018-11-01",
- "2017-04-01-preview",
- "2016-03-01",
- "2015-11-01",
- "2015-10-01",
- "2015-09-01",
- "2015-08-01-preview",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01",
- "2015-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/testQuery",
- "locations": [],
- "apiVersions": [
- "2017-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [],
- "apiVersions": [
- "2017-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West Europe",
- "West US",
- "Central US",
- "East US 2",
- "North Europe",
- "Japan East",
- "Southeast Asia",
- "South Central US",
- "East Asia",
- "Japan West",
- "North Central US",
- "East US",
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Central India",
- "West Central US",
- "UK South",
- "Germany West Central",
- "UK West",
- "Canada Central",
- "Canada East",
- "West US 2",
- "Korea Central",
- "France Central",
- "South India",
- "Norway East",
- "Uae North",
- "Australia Central"
- ],
- "apiVersions": [
- "2019-06-01",
- "2018-11-01",
- "2017-04-01-preview",
- "2016-03-01",
- "2015-11-01",
- "2015-10-01",
- "2015-09-01",
- "2015-08-01-preview",
- "2015-06-01",
- "2015-05-01",
- "2015-04-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "66f1e791-7bfb-4e18-aed8-1720056421c7"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "": "2016-03-01"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftStreamanalytics"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "StreamAnalyticsUserMetricsProd",
- "sourceMdmNamespace": "ShoeBox"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftStreamanalytics",
- "onbehalfSupportedLogCategories": [
- "Execution",
- "Authoring"
- ]
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Subscription",
- "namespace": "Microsoft.Subscription",
- "authorizations": [
- {
- "applicationId": "e3335adb-5ca0-40dc-b8d3-bedc094e523b"
- },
- {
- "applicationId": "5da7367f-09c8-493e-8fd4-638089cddec3"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "SubscriptionDefinitions",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2017-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "SubscriptionOperations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2019-10-01-preview",
- "2018-11-01-preview",
- "2018-03-01-preview",
- "2017-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "CreateSubscription",
- "locations": [
- "Central US"
- ],
- "apiVersions": [
- "2019-10-01-preview",
- "2018-11-01-preview",
- "2018-03-01-preview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2017-11-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "cancel",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-10-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "rename",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-10-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "enable",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2020-09-01",
- "2019-10-01-preview",
- "2019-03-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "subscriptions",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "aliases",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2020-09-01",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationResults",
- "locations": [
- "Central US"
- ],
- "apiVersions": [
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "acceptChangeTenant",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "changeTenantStatus",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "changeTenantRequest",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview",
- "2019-10-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "policies",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "acceptOwnership",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "acceptOwnershipStatus",
- "locations": [],
- "apiVersions": [
- "2021-01-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.support",
- "namespace": "microsoft.support",
- "authorizations": [
- {
- "applicationId": "959678cf-d004-4c22-82a6-d2ce549a58b8",
- "roleDefinitionId": "81a3dd11-5123-4ec3-9485-772b0a27d1bd"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview",
- "2015-07-01-Preview",
- "2015-03-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "services/problemclassifications",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "supporttickets",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview",
- "2015-07-01-Preview",
- "2015-03-01"
- ],
- "capabilities": "SupportsExtension"
- },
- {
- "resourceType": "operationresults",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operationsstatus",
- "locations": [
- "North Central US",
- "South Central US",
- "Central US",
- "West Europe",
- "North Europe",
- "West US",
- "East US",
- "East US 2",
- "Japan East",
- "Japan West",
- "Brazil South",
- "Southeast Asia",
- "East Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-04-01",
- "2019-05-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "Registered",
- "registrationPolicy": "RegistrationFree"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Synapse",
- "namespace": "Microsoft.Synapse",
- "authorizations": [
- {
- "applicationId": "9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b",
- "roleDefinitionId": "a53b114a-452b-4d20-bcd6-c51c3c8c5878",
- "managedByRoleDefinitionId": "ede175bc-31e5-4074-ba98-e62b895797aa"
- },
- {
- "applicationId": "1ac05c7e-12d2-4605-bf9d-549d7041c6b3",
- "roleDefinitionId": "48e77487-c9fa-4abe-8484-71ebdebdbbc2"
- },
- {
- "applicationId": "ec52d13d-2e85-410e-a89a-8c79fb6a32ac",
- "roleDefinitionId": "c3a447c3-a63a-4905-a125-c6856f9d0e17"
- },
- {
- "applicationId": "5ebe1e69-13dd-4953-84fa-a74ed591db2e",
- "roleDefinitionId": "e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f"
- },
- {
- "applicationId": "2e458d69-0892-4655-b713-4f7b182315dd",
- "roleDefinitionId": "45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "workspaces",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSynapseShoebox",
- "sourceMdmNamespace": "Microsoft.Synapse"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse",
- "onbehalfSupportedLogCategories": [
- "SynapseRbacOperations",
- "GatewayApiRequests",
- "SQLSecurityAuditEvents",
- "BuiltinSqlReqsEnded",
- "IntegrationPipelineRuns",
- "IntegrationActivityRuns",
- "IntegrationTriggerRuns"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/bigDataPools",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSynapseShoebox",
- "sourceMdmNamespace": "Microsoft.Synapse"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse",
- "onbehalfSupportedLogCategories": [
- "BigDataPoolAppsEnded"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/sqlPools",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2020-04-01-preview",
- "2019-06-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSynapseShoebox",
- "sourceMdmNamespace": "SQLStandardMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse",
- "onbehalfSupportedLogCategories": [
- "SqlRequests",
- "RequestSteps",
- "ExecRequests",
- "DmsWorkers",
- "Waits",
- "SQLSecurityAuditEvents"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "workspaces/sqlDatabases",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSynapseShoebox",
- "sourceMdmNamespace": "SQLStandardMetrics"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations/sqlDatabaseAzureAsyncOperation",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/sqlDatabaseOperationResults",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/sqlPoolAzureAsyncOperation",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/sqlPoolOperationResults",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2020-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/operationStatuses",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "workspaces/operationResults",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "checkNameAvailability",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "kustoOperations",
- "locations": [],
- "apiVersions": [
- "2021-04-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "privateLinkHubs",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationResults",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationStatuses",
- "locations": [
- "West US 2",
- "East US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "Australia East",
- "West Central US",
- "South Central US",
- "East US 2",
- "UK South",
- "West US",
- "Australia Southeast",
- "East Asia",
- "Brazil South",
- "Central US",
- "Central India",
- "Japan East",
- "North Central US",
- "Canada Central",
- "Canada East",
- "Korea Central",
- "South Africa North",
- "UK West",
- "Japan West",
- "France Central",
- "Switzerland North",
- "Germany West Central",
- "Norway East",
- "UAE North"
- ],
- "apiVersions": [
- "2021-05-01",
- "2021-04-01-preview",
- "2021-03-01",
- "2020-12-01",
- "2019-06-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-06-01-preview",
- "operations": "2019-06-01-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ],
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "MicrosoftSynapseShoebox",
- "sourceMdmNamespace": "Microsoft.Synapse"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.Synapse"
- }
- ]
- }
- }
- },
- "Microsoft.ManagedIdentity": {
- "applicationId": "9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.TestBase",
- "namespace": "Microsoft.TestBase",
- "authorizations": [
- {
- "applicationId": "f3625a3e-6360-4580-968d-fae4cabc75a0",
- "roleDefinitionId": "97af1d96-7c92-442d-8117-11e604996ca4"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationstatuses",
- "locations": [
- "East US 2 EUAP",
- "West US"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "skus",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "testBaseAccounts/usages",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/availableOSs",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/testTypes",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/flightingRings",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/packages",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "testBaseAccounts/packages/osUpdates",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/testSummaries",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/packages/favoriteProcesses",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/packages/testResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/packages/testResults/analysisResults",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/emailEvents",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "testBaseAccounts/customerEvents",
- "locations": [
- "global"
- ],
- "apiVersions": [
- "2020-12-16-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.TimeSeriesInsights",
- "namespace": "Microsoft.TimeSeriesInsights",
- "authorizations": [
- {
- "applicationId": "120d688d-1518-4cf7-bd38-182f158850b6",
- "roleDefinitionId": "5a43abdf-bb87-42c4-9e56-1c24bf364150"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "environments",
- "locations": [
- "Canada Central",
- "France Central",
- "South Central Us",
- "East US 2",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "Central US",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "East Asia",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2020-05-15",
- "2018-08-15-preview",
- "2017-11-15",
- "2017-02-28-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-02-28-preview",
- "operations": "2017-02-28-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftTimeSeriesInsights"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "RDXProdShoebox",
- "sourceMdmNamespace": "Environment"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.TimeSeriesInsights",
- "onbehalfSupportedLogCategories": [
- "Ingress",
- "Management"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "environments/eventsources",
- "locations": [
- "Canada Central",
- "France Central",
- "South Central Us",
- "East US 2",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "Central US",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "East Asia",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2020-05-15",
- "2018-08-15-preview",
- "2017-11-15",
- "2017-02-28-preview"
- ],
- "metadata": {
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-02-28-preview",
- "operations": "2017-02-28-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftTimeSeriesInsights"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "RDXProdShoebox",
- "sourceMdmNamespace": "EventSource"
- }
- ]
- },
- "logs": {
- "mdsInfo": [
- {
- "serviceIdentity": "Microsoft.TimeSeriesInsights",
- "onbehalfSupportedLogCategories": [
- "Ingress",
- "Management"
- ]
- }
- ]
- }
- }
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "environments/referenceDataSets",
- "locations": [
- "Canada Central",
- "France Central",
- "South Central Us",
- "East US 2",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "Central US",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "East Asia",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2020-05-15",
- "2018-08-15-preview",
- "2017-11-15",
- "2017-02-28-preview"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "environments/accessPolicies",
- "locations": [
- "Canada Central",
- "France Central",
- "South Central Us",
- "East US 2",
- "West US",
- "East US",
- "North Europe",
- "West Europe",
- "West US 2",
- "Central US",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "East Asia",
- "UK West",
- "UK South"
- ],
- "apiVersions": [
- "2020-05-15",
- "2018-08-15-preview",
- "2017-11-15",
- "2017-02-28-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Canada Central",
- "West India",
- "France Central",
- "South Central Us",
- "East US 2",
- "West US",
- "East US",
- "East US 2 EUAP",
- "North Europe",
- "West Europe",
- "West US 2",
- "Central US",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast",
- "East Asia",
- "UK West",
- "North Central US",
- "UK South"
- ],
- "apiVersions": [
- "2021-03-31-preview",
- "2020-05-15",
- "2018-08-15-preview",
- "2017-11-15",
- "2017-05-31-privatepreview",
- "2017-02-28-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "120d688d-1518-4cf7-bd38-182f158850b6"
- },
- "microsoft.insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2017-02-28-preview",
- "operations": "2017-02-28-preview"
- },
- "metrics": {
- "mdsInfo": [
- {
- "serviceIdentity": "MicrosoftTimeSeriesInsights"
- }
- ],
- "mdmInfo": [
- {
- "sourceMdmAccount": "RDXProdShoebox",
- "sourceMdmNamespace": "Environment"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VirtualMachineImages",
- "namespace": "Microsoft.VirtualMachineImages",
- "authorizations": [
- {
- "applicationId": "cf32a0cc-373c-47c9-9156-0db11f6a6dfc",
- "roleDefinitionId": "0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5",
- "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "imageTemplates",
- "locations": [
- "East US",
- "East US 2",
- "West Central US",
- "West US",
- "West US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-02-14",
- "2019-05-01-preview",
- "2019-02-01-preview",
- "2018-02-01-preview"
- ],
- "defaultApiVersion": "2020-02-14",
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "imageTemplates/runOutputs",
- "locations": [
- "East US",
- "East US 2",
- "West Central US",
- "West US",
- "West US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-02-14",
- "2019-05-01-preview",
- "2019-02-01-preview",
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations",
- "locations": [
- "East US",
- "East US 2",
- "West Central US",
- "West US",
- "West US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "UK South",
- "UK West",
- "Southeast Asia",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-02-14",
- "2019-05-01-preview",
- "2019-02-01-preview",
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operations",
- "locations": [
- "East US",
- "East US 2",
- "West Central US",
- "West US",
- "West US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-02-14",
- "2019-05-01-preview",
- "2019-02-01-preview",
- "2018-02-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [
- "East US",
- "East US 2",
- "West Central US",
- "West US",
- "West US 2",
- "South Central US",
- "North Europe",
- "West Europe",
- "Southeast Asia",
- "UK South",
- "UK West",
- "Australia East",
- "Australia Southeast"
- ],
- "apiVersions": [
- "2020-02-14",
- "2019-05-01-preview",
- "2019-02-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "cf32a0cc-373c-47c9-9156-0db11f6a6dfc"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VMware",
- "namespace": "Microsoft.VMware",
- "authorizations": [
- {
- "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7",
- "roleDefinitionId": "dd032bd9-65cc-4171-b688-c612566422ae"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2019-12-20-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US",
- "West US",
- "East US 2 EUAP",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview",
- "2019-12-20-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2020-10-01-preview",
- "2019-12-20-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "VCenters/InventoryItems",
- "locations": [
- "East US",
- "West US",
- "West Europe"
- ],
- "apiVersions": [
- "2020-10-01-preview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VMwareCloudSimple",
- "namespace": "Microsoft.VMwareCloudSimple",
- "authorizations": [
- {
- "applicationId": "d96199e7-4674-4bbf-a1c6-ddf93682f5ee",
- "roleDefinitionId": "533012ca-a3e7-44e4-93b4-3143f8b9409d",
- "allowedThirdPartyExtensions": [
- {
- "name": "CloudSimpleExtension"
- }
- ]
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "virtualMachines",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dedicatedCloudNodes",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "dedicatedCloudServices",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "locations",
- "locations": [],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/usages",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/availabilities",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateClouds",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateClouds/virtualNetworks",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateClouds/virtualMachineTemplates",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/privateClouds/resourcePools",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "locations/operationresults",
- "locations": [
- "South Central US",
- "Switzerland North",
- "Switzerland West",
- "West Europe",
- "East US",
- "West US"
- ],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2019-04-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.Insights": {
- "monitoringResourceProvider": {
- "version": "1.0",
- "apiVersions": {
- "default": "2019-04-01",
- "operations": "2019-04-01"
- },
- "metrics": {
- "mdmInfo": [
- {
- "enableRegionalMdmAccount": true,
- "sourceMdmAccount": "CloudSimplePrivateCloudIAASShoebox",
- "sourceMdmNamespace": "Microsoft.VMwareCloudSimple"
- }
- ]
- }
- }
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VSOnline",
- "namespace": "Microsoft.VSOnline",
- "authorizations": [
- {
- "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6",
- "roleDefinitionId": "b879ac78-f1e6-448d-ab4c-5908cd5967c1"
- },
- {
- "applicationId": "48ef7923-268f-473d-bcf1-07f0997961f4",
- "roleDefinitionId": "b879ac78-f1e6-448d-ab4c-5908cd5967c1"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "West Europe",
- "East US",
- "West Us 2",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2019-07-01-preview",
- "2019-07-01-beta",
- "2019-07-01-alpha"
- ],
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "plans",
- "locations": [
- "West Europe",
- "East US",
- "West Us 2",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2020-05-26-preview",
- "2020-05-26-beta",
- "2020-05-26-alpha",
- "2019-07-01-preview",
- "2019-07-01-beta",
- "2019-07-01-alpha"
- ],
- "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-05-26-privatepreview",
- "2020-05-26-preview",
- "2020-05-26-beta",
- "2020-05-26-alpha",
- "2019-07-01-privatepreview",
- "2019-07-01-preview",
- "2019-07-01-beta",
- "2019-07-01-alpha"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2020-05-26-privatepreview",
- "2020-05-26-preview",
- "2020-05-26-beta",
- "2020-05-26-alpha",
- "2019-07-01-privatepreview",
- "2019-07-01-preview",
- "2019-07-01-beta",
- "2019-07-01-alpha"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "Microsoft.ManagedIdentity": {
- "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WindowsESU",
- "namespace": "Microsoft.WindowsESU",
- "authorizations": [
- {
- "applicationId": "e6c69915-bcc7-4335-b655-c62f949d691b",
- "roleDefinitionId": "9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2019-09-16-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2019-09-16-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "East US",
- "West Europe"
- ],
- "apiVersions": [
- "2019-10-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WorkloadBuilder",
- "namespace": "Microsoft.WorkloadBuilder",
- "authorizations": [
- {
- "applicationId": "63c2c773-89fe-4164-a02f-b8c7fc1772ae",
- "roleDefinitionId": "322358fa-ea51-4f6c-b9d6-3be64015f074"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "Locations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2020-07-01-privatepreview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/OperationStatuses",
- "locations": [
- "West Central US",
- "East US 2 EUAP"
- ],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2020-07-01-privatepreview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "Operations",
- "locations": [],
- "apiVersions": [
- "2021-03-01-privatepreview",
- "2020-07-01-privatepreview"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WorkloadMonitor",
- "namespace": "Microsoft.WorkloadMonitor",
- "authorizations": [
- {
- "applicationId": "ddc728e9-153d-4032-ab80-80e57af7a56f",
- "roleDefinitionId": "553f60de-cc15-412f-9fdf-8f5152e7e0f5",
- "managedByRoleDefinitionId": "553f60de-cc15-412f-9fdf-8f5152e7e0f5"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2020-01-13-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "monitors",
- "locations": [],
- "apiVersions": [
- "2020-01-13-preview"
- ],
- "capabilities": "SupportsExtension"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Paraleap.CloudMonix",
- "namespace": "Paraleap.CloudMonix",
- "resourceTypes": [
- {
- "resourceType": "services",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2016-08-10"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-08-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-10"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-08-10"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Pokitdok.Platform",
- "namespace": "Pokitdok.Platform",
- "resourceTypes": [
- {
- "resourceType": "services",
- "locations": [
- "West US"
- ],
- "apiVersions": [
- "2016-05-17"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-05-17"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-05-17"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-05-17"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/RavenHq.Db",
- "namespace": "RavenHq.Db",
- "resourceTypes": [
- {
- "resourceType": "databases",
- "locations": [
- "East US",
- "North Europe",
- "West Europe"
- ],
- "apiVersions": [
- "2016-07-18"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2016-07-18"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-07-18"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2016-07-18"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Raygun.CrashReporting",
- "namespace": "Raygun.CrashReporting",
- "resourceTypes": [
- {
- "resourceType": "apps",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2015-01-01"
- ],
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2015-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "listCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2015-01-01"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "updateCommunicationPreference",
- "locations": [],
- "apiVersions": [
- "2015-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Sendgrid.Email",
- "namespace": "Sendgrid.Email",
- "resourceTypes": [
- {
- "resourceType": "accounts",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2015-01-01"
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 612 792\u0027 enable-background=\u0027new 0 0 612 792\u0027 xml:space=\u0027preserve\u0027\u003E \u003Cg\u003E \u003Cg\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M399,118c61,0,122,0,183-0.1c3.4,0,4.1,0.7,4.1,4.1c-0.1,60.7-0.1,121.3-0.1,182 c-58.9,0-117.8,0-176.8-0.1c-3.1,0-6.2,1.5-9.2,0.1c-0.3-0.3-0.6-0.7-1-1C399,241.3,399,179.7,399,118z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M28,304c61.9,0,123.9,0,185.8,0l0.4-0.1c-0.1,2.2-0.2,4.3-0.2,6.5c0,59.9,0,119.8,0,179.6l0.1-0.1 c-62,0-124,0-186,0C28,428,28,366,28,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M28,490c62,0,124,0,186,0c0,62,0,124,0,186c-60.7,0-121.3,0-182,0.1c-3.4,0-4.1-0.7-4.1-4.1 C28,611.3,28,550.7,28,490z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M214,676c0-62,0-124,0-186c0,0-0.1,0.1-0.1,0.1c59.9,0,119.8,0,179.6,0c2.2,0,4.3-0.2,6.5-0.2l-0.1,0.4 c0,61.9,0,123.9,0,185.8C338,676,276,676,214,676z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M586,490c-60,0-120,0-180,0c-2,0-4,0.1-6,0.2c0,0,0.1-0.4,0.1-0.4c0-61.9,0-123.8-0.1-185.8 c3.1,1.5,6.2-0.1,9.2-0.1C468.2,304,527.1,304,586,304C586,366,586,428,586,490z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M213.8,304c0.1-5.1,0.2-10.3,0.2-15.4c0-56.9,0-113.7,0-170.6c61.7,0,123.3,0,185,0c0,61.7,0,123.3,0,185 c-1.1,1.4-2.7,1-4.2,1c-60.2,0-120.4,0-180.6,0L213.8,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M214.3,303.9c60.2,0,120.4,0,180.6,0c1.4,0,3,0.4,4.2-1c0.3,0.3,0.6,0.7,1,1c0,61.9,0,123.8,0.1,185.8 c-2.2,0.1-4.3,0.2-6.5,0.2c-59.9,0-119.8,0-179.6,0c0-59.9,0-119.8,0-179.6C214,308.2,214.2,306.1,214.3,303.9z\u0027/\u003E \u003C/g\u003E \u003C/g\u003E \u003C/svg\u003E"
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [
- "Australia East",
- "Australia Southeast",
- "Brazil South",
- "Canada Central",
- "Canada East",
- "Central India",
- "Central US",
- "East Asia",
- "East US",
- "East US 2",
- "France Central",
- "France South",
- "Japan East",
- "Japan West",
- "Korea Central",
- "Korea South",
- "North Central US",
- "North Europe",
- "South Africa North",
- "South Africa West",
- "South Central US",
- "South India",
- "Southeast Asia",
- "UAE Central",
- "UAE North",
- "UK South",
- "UK West",
- "West Central US",
- "West Europe",
- "West India",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2015-01-01"
- ],
- "capabilities": "None"
- }
- ],
- "metadata": {
- "portal": {
- "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 612 792\u0027 enable-background=\u0027new 0 0 612 792\u0027 xml:space=\u0027preserve\u0027\u003E \u003Cg\u003E \u003Cg\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M399,118c61,0,122,0,183-0.1c3.4,0,4.1,0.7,4.1,4.1c-0.1,60.7-0.1,121.3-0.1,182 c-58.9,0-117.8,0-176.8-0.1c-3.1,0-6.2,1.5-9.2,0.1c-0.3-0.3-0.6-0.7-1-1C399,241.3,399,179.7,399,118z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M28,304c61.9,0,123.9,0,185.8,0l0.4-0.1c-0.1,2.2-0.2,4.3-0.2,6.5c0,59.9,0,119.8,0,179.6l0.1-0.1 c-62,0-124,0-186,0C28,428,28,366,28,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M28,490c62,0,124,0,186,0c0,62,0,124,0,186c-60.7,0-121.3,0-182,0.1c-3.4,0-4.1-0.7-4.1-4.1 C28,611.3,28,550.7,28,490z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M214,676c0-62,0-124,0-186c0,0-0.1,0.1-0.1,0.1c59.9,0,119.8,0,179.6,0c2.2,0,4.3-0.2,6.5-0.2l-0.1,0.4 c0,61.9,0,123.9,0,185.8C338,676,276,676,214,676z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M586,490c-60,0-120,0-180,0c-2,0-4,0.1-6,0.2c0,0,0.1-0.4,0.1-0.4c0-61.9,0-123.8-0.1-185.8 c3.1,1.5,6.2-0.1,9.2-0.1C468.2,304,527.1,304,586,304C586,366,586,428,586,490z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M213.8,304c0.1-5.1,0.2-10.3,0.2-15.4c0-56.9,0-113.7,0-170.6c61.7,0,123.3,0,185,0c0,61.7,0,123.3,0,185 c-1.1,1.4-2.7,1-4.2,1c-60.2,0-120.4,0-180.6,0L213.8,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M214.3,303.9c60.2,0,120.4,0,180.6,0c1.4,0,3,0.4,4.2-1c0.3,0.3,0.6,0.7,1,1c0,61.9,0,123.8,0.1,185.8 c-2.2,0.1-4.3,0.2-6.5,0.2c-59.9,0-119.8,0-179.6,0c0-59.9,0-119.8,0-179.6C214,308.2,214.2,306.1,214.3,303.9z\u0027/\u003E \u003C/g\u003E \u003C/g\u003E \u003C/svg\u003E"
- }
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
- },
- {
- "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Wandisco.Fusion",
- "namespace": "Wandisco.Fusion",
- "authorizations": [
- {
- "applicationId": "37b36496-3f4f-443a-a406-5e0a0535f6a3",
- "roleDefinitionId": "b10cdc1f-fd21-4fe9-bae7-7e2e25a91a21"
- }
- ],
- "resourceTypes": [
- {
- "resourceType": "fusionGroups",
- "locations": [
- "East US",
- "East Asia",
- "North Europe",
- "Southeast Asia",
- "West Europe",
- "West Central US",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "fusionGroups/azureZones",
- "locations": [
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "fusionGroups/azureZones/plugins",
- "locations": [
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "fusionGroups/replicationRules",
- "locations": [
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "Locations",
- "locations": [
- "East US"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "Locations/operationStatuses",
- "locations": [
- "Canada Central",
- "East Asia",
- "East US",
- "East US 2 EUAP",
- "Korea Central",
- "North Europe",
- "Southeast Asia",
- "West Europe",
- "West Central US",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "capabilities": "None"
- },
- {
- "resourceType": "fusionGroups/replicationRules/migrations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "registeredSubscriptions",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "fusionGroups/hiveReplicationRules",
- "locations": [
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "fusionGroups/managedOnPremZones",
- "locations": [
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "operations",
- "locations": [],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": true
- }
- },
- "capabilities": "None"
- },
- {
- "resourceType": "migrators",
- "locations": [
- "Canada Central",
- "East US",
- "Korea Central",
- "East Asia",
- "North Europe",
- "Southeast Asia",
- "West Europe",
- "West Central US",
- "West US",
- "West US 2"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/targets",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/liveDataMigrations",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/exclusionTemplates",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/metadataMigrations",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/metadataTargets",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- },
- {
- "resourceType": "migrators/pathMappings",
- "locations": [
- "Canada Central",
- "East US",
- "West US",
- "West US 2",
- "West Central US",
- "Korea Central",
- "West Europe",
- "North Europe",
- "East Asia",
- "Southeast Asia"
- ],
- "apiVersions": [
- "2021-02-01-preview",
- "2021-01-01-preview",
- "2020-12-01-preview",
- "2019-09-01-preview"
- ],
- "metadata": {
- "providerHubMetadata": {
- "providerExtendsPreflight": false
- }
- },
- "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"
- }
- ],
- "metadata": {
- "onboardedVia": "ProviderHub"
- },
- "registrationState": "NotRegistered",
- "registrationPolicy": "RegistrationRequired"
+ "namespace": "Microsoft.Resources",
+ "resourceTypes": [
+ {
+ "resourceType": "tenants",
+ "locations": [],
+ "apiVersions": [
+ "2020-01-01",
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "locations",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "operationresults",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "notifyResourceJobs",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "tags",
+ "locations": [],
+ "apiVersions": [
+ "2019-10-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01"
+ ],
+ "capabilities": "SupportsExtension"
+ },
+ {
+ "resourceType": "checkPolicyCompliance",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "checkZonePeers",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "providers",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "checkresourcename",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "calculateTemplateHash",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "resources",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions",
+ "locations": [],
+ "apiVersions": [
+ "2019-10-01",
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/resources",
+ "locations": [],
+ "apiVersions": [
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/providers",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/operationresults",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "resourceGroups",
+ "locations": [
+ "Central US",
+ "East Asia",
+ "Southeast Asia",
+ "East US",
+ "East US 2",
+ "West US",
+ "West US 2",
+ "North Central US",
+ "South Central US",
+ "West Central US",
+ "North Europe",
+ "West Europe",
+ "Japan East",
+ "Japan West",
+ "Brazil South",
+ "Australia Southeast",
+ "Australia East",
+ "West India",
+ "South India",
+ "Central India",
+ "Canada Central",
+ "Canada East",
+ "UK South",
+ "UK West",
+ "Korea Central",
+ "Korea South",
+ "France Central",
+ "South Africa North",
+ "UAE North",
+ "Australia Central",
+ "Switzerland North",
+ "Germany West Central",
+ "Norway East",
+ "East US SLV",
+ "Jio India West",
+ "West US 3",
+ "France South",
+ "Australia Central 2",
+ "UAE Central",
+ "South Africa West",
+ "Switzerland West",
+ "Germany North",
+ "Norway West",
+ "Brazil Southeast",
+ "Jio India Central",
+ "Sweden Central",
+ "Sweden South",
+ "East US STG",
+ "South Central US STG",
+ "East US 2 EUAP",
+ "Central US EUAP"
+ ],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "SupportsLocation"
+ },
+ {
+ "resourceType": "subscriptions/resourceGroups",
+ "locations": [
+ "Central US",
+ "East Asia",
+ "Southeast Asia",
+ "East US",
+ "East US 2",
+ "West US",
+ "West US 2",
+ "North Central US",
+ "South Central US",
+ "West Central US",
+ "North Europe",
+ "West Europe",
+ "Japan East",
+ "Japan West",
+ "Brazil South",
+ "Australia Southeast",
+ "Australia East",
+ "West India",
+ "South India",
+ "Central India",
+ "Canada Central",
+ "Canada East",
+ "UK South",
+ "UK West",
+ "Korea Central",
+ "Korea South",
+ "France Central",
+ "South Africa North",
+ "UAE North",
+ "Australia Central",
+ "Switzerland North",
+ "Germany West Central",
+ "Norway East",
+ "East US SLV",
+ "Jio India West",
+ "West US 3",
+ "France South",
+ "Australia Central 2",
+ "UAE Central",
+ "South Africa West",
+ "Switzerland West",
+ "Germany North",
+ "Norway West",
+ "Brazil Southeast",
+ "Jio India Central",
+ "Sweden Central",
+ "Sweden South",
+ "East US STG",
+ "South Central US STG",
+ "East US 2 EUAP",
+ "Central US EUAP"
+ ],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ },
+ {
+ "resourceType": "subscriptions/resourcegroups/resources",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/locations",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2016-06-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/tagnames",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "subscriptions/tagNames/tagValues",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "deployments",
+ "locations": [],
+ "apiVersions": [
+ "2021-01-01",
+ "2020-10-01",
+ "2020-06-01",
+ "2019-09-01",
+ "2019-08-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "deployments/operations",
+ "locations": [],
+ "apiVersions": [
+ "2021-01-01",
+ "2020-10-01",
+ "2020-06-01",
+ "2019-09-01",
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "links",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2016-06-01"
+ },
+ {
+ "profileVersion": "2019-03-01-hybrid",
+ "apiVersion": "2018-05-01"
+ }
+ ],
+ "capabilities": "SupportsExtension"
+ },
+ {
+ "resourceType": "operations",
+ "locations": [],
+ "apiVersions": [
+ "2015-01-01"
+ ],
+ "apiProfiles": [
+ {
+ "profileVersion": "2018-06-01-profile",
+ "apiVersion": "2015-01-01"
+ }
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "bulkDelete",
+ "locations": [],
+ "apiVersions": [
+ "2019-05-01",
+ "2019-04-01",
+ "2019-03-01",
+ "2018-11-01",
+ "2018-09-01",
+ "2018-08-01",
+ "2018-07-01",
+ "2018-05-01",
+ "2018-02-01",
+ "2018-01-01",
+ "2017-08-01",
+ "2017-06-01",
+ "2017-05-10",
+ "2017-05-01",
+ "2017-03-01",
+ "2016-09-01",
+ "2016-07-01",
+ "2016-06-01",
+ "2016-02-01",
+ "2015-11-01",
+ "2015-01-01",
+ "2014-04-01-preview"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "deploymentScripts",
+ "locations": [
+ "East Asia",
+ "Southeast Asia",
+ "Australia East",
+ "Brazil South",
+ "Canada Central",
+ "Canada East",
+ "Switzerland North",
+ "Central US EUAP",
+ "Germany West Central",
+ "East US 2",
+ "East US",
+ "Central US",
+ "North Central US",
+ "East US 2 EUAP",
+ "France Central",
+ "UK South",
+ "Central India",
+ "South India",
+ "Japan East",
+ "Korea Central",
+ "North Europe",
+ "Norway East",
+ "UAE North",
+ "West Central US",
+ "West Europe",
+ "West US 2",
+ "West US",
+ "South Central US"
+ ],
+ "apiVersions": [
+ "2020-10-01",
+ "2019-10-01-preview"
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ },
+ {
+ "resourceType": "deploymentScripts/logs",
+ "locations": [
+ "East Asia",
+ "Southeast Asia",
+ "Australia East",
+ "Brazil South",
+ "Canada Central",
+ "Canada East",
+ "Switzerland North",
+ "Central US EUAP",
+ "Germany West Central",
+ "East US 2",
+ "East US",
+ "Central US",
+ "North Central US",
+ "East US 2 EUAP",
+ "France Central",
+ "UK South",
+ "Central India",
+ "South India",
+ "Japan East",
+ "Korea Central",
+ "North Europe",
+ "Norway East",
+ "UAE North",
+ "West Central US",
+ "West Europe",
+ "West US 2",
+ "West US",
+ "South Central US"
+ ],
+ "apiVersions": [
+ "2020-10-01",
+ "2019-10-01-preview"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "locations/deploymentScriptOperationResults",
+ "locations": [
+ "East Asia",
+ "Southeast Asia",
+ "Australia East",
+ "Brazil South",
+ "Canada Central",
+ "Canada East",
+ "Switzerland North",
+ "Central US EUAP",
+ "Germany West Central",
+ "East US 2",
+ "East US",
+ "Central US",
+ "North Central US",
+ "East US 2 EUAP",
+ "France Central",
+ "UK South",
+ "Central India",
+ "South India",
+ "Japan East",
+ "Korea Central",
+ "North Europe",
+ "Norway East",
+ "UAE North",
+ "West Central US",
+ "West Europe",
+ "West US 2",
+ "West US",
+ "South Central US"
+ ],
+ "apiVersions": [
+ "2020-10-01",
+ "2019-10-01-preview"
+ ],
+ "capabilities": "None"
+ },
+ {
+ "resourceType": "templateSpecs",
+ "locations": [
+ "East Asia",
+ "Southeast Asia",
+ "Australia East",
+ "Australia Central",
+ "Australia Central 2",
+ "Australia Southeast",
+ "Brazil South",
+ "Canada Central",
+ "Canada East",
+ "Switzerland North",
+ "Switzerland West",
+ "Central US EUAP",
+ "Germany North",
+ "Germany West Central",
+ "East US 2",
+ "East US",
+ "Central US",
+ "North Central US",
+ "East US 2 EUAP",
+ "France Central",
+ "France South",
+ "UK South",
+ "UK West",
+ "Central India",
+ "West India",
+ "South India",
+ "Japan East",
+ "Japan West",
+ "Korea Central",
+ "Korea South",
+ "North Europe",
+ "Norway East",
+ "Norway West",
+ "UAE Central",
+ "UAE North",
+ "West Central US",
+ "West Europe",
+ "West US 2",
+ "West US",
+ "South Central US",
+ "South Africa North",
+ "South Africa West"
+ ],
+ "apiVersions": [
+ "2021-05-01",
+ "2021-03-01-preview",
+ "2019-06-01-preview"
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
+ },
+ {
+ "resourceType": "templateSpecs/versions",
+ "locations": [
+ "East Asia",
+ "Southeast Asia",
+ "Australia East",
+ "Australia Central",
+ "Australia Central 2",
+ "Australia Southeast",
+ "Brazil South",
+ "Canada Central",
+ "Canada East",
+ "Switzerland North",
+ "Switzerland West",
+ "Central US EUAP",
+ "Germany North",
+ "Germany West Central",
+ "East US 2",
+ "East US",
+ "Central US",
+ "North Central US",
+ "East US 2 EUAP",
+ "France Central",
+ "France South",
+ "UK South",
+ "UK West",
+ "Central India",
+ "West India",
+ "South India",
+ "Japan East",
+ "Japan West",
+ "Korea Central",
+ "Korea South",
+ "North Europe",
+ "Norway East",
+ "Norway West",
+ "UAE Central",
+ "UAE North",
+ "West Central US",
+ "West Europe",
+ "West US 2",
+ "West US",
+ "South Central US",
+ "South Africa North",
+ "South Africa West"
+ ],
+ "apiVersions": [
+ "2021-05-01",
+ "2021-03-01-preview",
+ "2019-06-01-preview"
+ ],
+ "capabilities": "SupportsTags, SupportsLocation"
}
]
}
@@ -86891,4 +1365,4 @@
"RandomSeed": "1232399787",
"SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
}
-}
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/ListFeatures.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/ListFeatures.json
new file mode 100644
index 0000000000000..48f9174a071a6
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/ListFeatures.json
@@ -0,0 +1,13846 @@
+{
+ "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.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "3b6719a043a00e80b2cc78c0ce08fd1d",
+ "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, 09 Jul 2021 18:58:24 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "33e7d89d-faf7-4233-a504-a93e724e4708",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-request-id": "33e7d89d-faf7-4233-a504-a93e724e4708",
+ "x-ms-routing-request-id": "WESTUS2:20210709T185825Z:33e7d89d-faf7-4233-a504-a93e724e4708"
+ },
+ "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/providers/Microsoft.Features/features?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-30fa30bcbbad374d97fcedabd6dfbbde-2c33714ad84ab44f-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "f940f331ae329243f0c8255faf89e093",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "495641",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:58:24 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "2474e9ee-f3a8-466d-bb6c-47b3e9e761c1",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-request-id": "westus2:44642560-bbc6-43d5-ab4e-d447c8a9aeb1",
+ "x-ms-routing-request-id": "WESTUS2:20210709T185825Z:2474e9ee-f3a8-466d-bb6c-47b3e9e761c1"
+ },
+ "ResponseBody": {
+ "value": [
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIaaS/features/cloudSimpleRp1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIaaS/cloudSimpleRp1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp10",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp10"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp11",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp11"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp12",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp12"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp13",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp13"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp14",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp14"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp15",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp15"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp16",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp16"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp17",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp17"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp18",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp18"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp19",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp19"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp20",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp20"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp21",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp21"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp22",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp22"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp23",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp23"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp24",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp24"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp25",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp25"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp6",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp6"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp7",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp7"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp8",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp8"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp9",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp9"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/stagingRP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/stagingRP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AAD/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AAD/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AAD/features/previewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AAD/previewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AAD/features/tipAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AAD/tipAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.aadiam/features/betalogconnector",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.aadiam/betalogconnector"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.aadiam/features/testinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.aadiam/testinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Advisor/features/dev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Advisor/dev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.alertsmanagement/features/enableSmartDiagnostics",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.alertsmanagement/enableSmartDiagnostics"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ApiManagement/features/testinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ApiManagement/testinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ApiManagement/features/testinproductionmdm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ApiManagement/testinproductionmdm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Archive/features/PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Archive/PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/aseAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/aseAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/ccAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/ccAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/ciAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/ciAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/eapAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/eapAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/ncusAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/ncusAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/neAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/neAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/scusAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/scusAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/wcusuksAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/wcusuksAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureActiveDirectory/features/B2CV2Resource",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureActiveDirectory/B2CV2Resource"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureActiveDirectory/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureActiveDirectory/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureActiveDirectory/features/CPIMCSP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureActiveDirectory/CPIMCSP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureData/features/eosEarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureData/eosEarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureData/features/tinaEarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureData/tinaEarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureStack/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureStack/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureStack/features/Marketplace",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureStack/Marketplace"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Batch/features/BatchAccountWhitelistSAN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Batch/BatchAccountWhitelistSAN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Batch/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Batch/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Batch/features/portaltest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Batch/portaltest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Batch/features/portaltest2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Batch/portaltest2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Batch/features/SwiftProd",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Batch/SwiftProd"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.BatchAI/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.BatchAI/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.BatchAI/features/workspace",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.BatchAI/workspace"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.BigAnalytics/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.BigAnalytics/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Blockchain/features/privatePreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Blockchain/privatePreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cache/features/betaAccess2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cache/betaAccess2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cache/features/betaAccess3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cache/betaAccess3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.cache/features/CanaryCheckNameAvailability",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.cache/CanaryCheckNameAvailability"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ClassicIaaSMigrate/features/ClassicIaaSMigrate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ClassicIaaSMigrate/ClassicIaaSMigrate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ClassicInfrastructureMigrate/features/ClassicInfrastructureMigrate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ClassicInfrastructureMigrate/ClassicInfrastructureMigrate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ClassicSubscription/features/InternalTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ClassicSubscription/InternalTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.cloudes/features/internalmsft",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.cloudes/internalmsft"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.cloudes/features/internalonly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.cloudes/internalonly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.cloudes/features/testinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.cloudes/testinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/absLuisAuthoring",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/absLuisAuthoring"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/AutoApproveFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/AutoApproveFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/formUnderstandingPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/formUnderstandingPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/TokenAuthPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/TokenAuthPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowManagedDisksReplaceOSDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowManagedDisksReplaceOSDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/armApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/armApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticOSUpgradeWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticOSUpgradeWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AvailabilitySetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AvailabilitySetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzureVirtualMachineSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzureVirtualMachineSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AZBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AZBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/BatchGetTenantInformantionRequests",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/BatchGetTenantInformantionRequests"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsPlan",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsPlan"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalAdvancedSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalAdvancedSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CAPSImagePublishing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CAPSImagePublishing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalStandardSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalStandardSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CorPersistence",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CorPersistence"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DedicatedNodeGroup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DedicatedNodeGroup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/disableDisksAndSnapshotsPerRGLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/disableDisksAndSnapshotsPerRGLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DsmsSecrets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DsmsSecrets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EnableCrossSubscriptionWithKeyVaultResources",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EnableCrossSubscriptionWithKeyVaultResources"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ExtensionsFastpath",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ExtensionsFastpath"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableDeadMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableDeadMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateDiskCopyForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateDiskCopyForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.StopMigrateSkipDiskCopyForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.StopMigrateSkipDiskCopyForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.VMPreprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.VMPreprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/Fabric.UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/Fabric.UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/FastPollingOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/FastPollingOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Foobar",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Foobar"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageBigBlob",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageBigBlob"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryApplicationPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryApplicationPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageHighScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageHighScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryRemoveUserSourceDependency",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryRemoveUserSourceDependency"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpedeFastPolling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpedeFastPolling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/IncrementalSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/IncrementalSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestVMUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestVMUpdate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LocalDiffDiskPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LocalDiffDiskPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/lowprioritysinglevm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/lowprioritysinglevm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedDisksPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedDisksPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedResourcesMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedResourcesMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MRProfile",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MRProfile"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/MultipleAvailabilityZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/MultipleAvailabilityZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NetworkPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NetworkPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NewAllocator",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NewAllocator"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NodeFlight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NodeFlight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OptOutScaleSetPipelinePreemption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OptOutScaleSetPipelinePreemption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OSUpgradeForServiceFabric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OSUpgradeForServiceFabric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/OverProvision",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/OverProvision"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverprovisionedExtensionDelay",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverprovisionedExtensionDelay"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalance",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalance"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithFDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithFDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PerfTestSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PerfTestSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ProximityPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ProximityPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RegionalUltraSSDVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RegionalUltraSSDVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RepairVMScaleSetInstancesPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RepairVMScaleSetInstancesPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/Reprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/Reprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePolicyOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePolicyOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RunScripts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RunScripts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEnablePremiumLRSReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEnablePremiumLRSReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/SpotMeterValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/SpotMeterValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/StandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/StandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TenantReserveActivate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TenantReserveActivate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TipNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TipNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraSSDWithVMSS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraSSDWithVMSS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionForVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionForVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionWithOSUpgrades",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionWithOSUpgrades"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UserImageSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UserImageSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VirtualMachineRuntimeServiceDisablePackageValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VirtualMachineRuntimeServiceDisablePackageValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMPipelineBatchingPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMPipelineBatchingPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewV2Access",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewV2Access"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ZRSImagesAndSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ZRSImagesAndSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ConnectedEnvironment/features/tip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ConnectedEnvironment/tip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/aciOnAtlas",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/aciOnAtlas"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/extension",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/extension"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/privatepreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/privatepreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/previewSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/previewSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerRegisry/features/BlockRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerRegisry/BlockRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/privilegedSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/privilegedSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerRegistry/features/BlockRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerRegistry/BlockRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerRegistry/features/BetaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerRegistry/BetaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerRegistry/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerRegistry/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ACS-EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ACS-EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ACSVNext",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ACSVNext"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AddContainerInsightsSolution",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AddContainerInsightsSolution"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-AzurePolicyAutoApprove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-AzurePolicyAutoApprove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-CanadaCentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-CanadaCentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-CanadaEast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-CanadaEast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-CentralUS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-CentralUS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-EastUS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-EastUS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-EnableAzureDataPlanePolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-EnableAzureDataPlanePolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-INT",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-INT"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-RegionEarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-RegionEarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-UKWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-UKWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSAuditLog",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSAuditLog"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-WestUS2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-WestUS2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AksBypassRegionWritesDisabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AksBypassRegionWritesDisabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSAzureStandardLoadBalancer",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSAzureStandardLoadBalancer"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSHTTPCustomFeatures",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSHTTPCustomFeatures"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AksBypassServiceGate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AksBypassServiceGate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSLockingDownEgressPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSLockingDownEgressPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSPrivateLinkPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSPrivateLinkPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AllowSwarmWindowsAgent",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AllowSwarmWindowsAgent"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/APIServerSecurityPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/APIServerSecurityPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AROGA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AROGA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ARORemoteGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ARORemoteGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AvailabilityZonePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AvailabilityZonePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ControlPlaneUnderlay",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ControlPlaneUnderlay"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/DockerEngineImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/DockerEngineImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableCCPMutatingWebhook",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableCCPMutatingWebhook"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableNetworkPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableNetworkPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableSingleIPPerCCP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableSingleIPPerCCP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/HTTP-Application-Routing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/HTTP-Application-Routing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableXTablesLock",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableXTablesLock"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ManagedCluster",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ManagedCluster"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/LowPriorityPoolPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/LowPriorityPoolPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/MSIPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/MSIPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/MobyImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/MobyImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/MultiAgentpoolPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/MultiAgentpoolPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/NodePublicIPPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/NodePublicIPPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OpenVPN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OpenVPN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OpenshiftManagedCluster",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OpenshiftManagedCluster"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OSABypassMarketplace",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OSABypassMarketplace"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OSAInProgressFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OSAInProgressFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/PodSecurityPolicyPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/PodSecurityPolicyPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/RBAC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/RBAC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/V20180331API",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/V20180331API"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/SaveOSATestConfig",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/SaveOSATestConfig"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/WindowsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/WindowsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/VMSSPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/VMSSPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Contoso/features/RPaaSSampleApp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Contoso/RPaaSSampleApp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CostManagementBeta/features/TenantRegistration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CostManagementBeta/TenantRegistration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CustomerInsights/features/privatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CustomerInsights/privatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CustomProviders/features/customrp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CustomProviders/customrp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CustomProviders/features/associations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CustomProviders/associations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CustomProviders/features/UpcomingRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CustomProviders/UpcomingRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/HeavyCreateAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/HeavyCreateAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/DBEIntAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/DBEIntAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/EdgeSignUp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/EdgeSignUp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/PassiveStampAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/PassiveStampAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/DatabricksEUAPAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/DatabricksEUAPAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/DatabricksControlPlane",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/DatabricksControlPlane"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/TowboatAllowedSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/TowboatAllowedSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/DatabricksTestEnv",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/DatabricksTestEnv"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCatalog/features/PPEAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCatalog/PPEAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCatalog/features/PRODAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCatalog/PRODAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCatalog/features/PRODAccessNew",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCatalog/PRODAccessNew"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataFactory/features/DFAccessInBuildout",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataFactory/DFAccessInBuildout"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataExchange/features/workspacePreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataExchange/workspacePreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataFactory/features/GatewayHAPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataFactory/GatewayHAPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataFactory/features/GatewayHAPublicPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataFactory/GatewayHAPublicPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeAnalytics/features/internalAccessWestCentralUS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeAnalytics/internalAccessWestCentralUS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeAnalytics/features/internalAccessWestUS2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeAnalytics/internalAccessWestUS2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeAnalytics/features/Scope",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeAnalytics/Scope"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataMigration/features/BuddyA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataMigration/BuddyA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataMigration/features/demo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataMigration/demo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataMigration/features/int",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataMigration/int"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataMigration/features/staging",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataMigration/staging"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataShare/features/ReactSqlUxPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataShare/ReactSqlUxPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/georeplica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/georeplica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/firewallRuleAllowAzureServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/firewallRuleAllowAzureServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/newStorageLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/newStorageLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/georestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/georestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/replica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/replica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMariaDB/features/privatePreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMariaDB/privatePreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/storageautogrow",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/storageautogrow"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/resourceHealth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/resourceHealth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/vnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/vnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/threatdetection",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/threatdetection"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/firewallRuleAllowAzureServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/firewallRuleAllowAzureServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/workloadInsight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/workloadInsight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/georestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/georestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/georeplica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/georeplica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/largeStorage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/largeStorage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/newStorageLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/newStorageLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DbforMySQL/features/replica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DbforMySQL/replica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/resourceHealth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/resourceHealth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/storageautogrow",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/storageautogrow"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/vnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/vnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.dbformysql/features/webappnewbizmodel",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.dbformysql/webappnewbizmodel"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/workloadInsight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/workloadInsight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/citus64vCores",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/citus64vCores"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/citusHA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/citusHA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/cituspreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/cituspreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/citusRoles",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/citusRoles"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/firewallRuleAllowAzureServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/firewallRuleAllowAzureServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/georeplica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/georeplica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/georestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/georestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/indexAdvisor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/indexAdvisor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/largeStorage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/largeStorage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/newStorageLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/newStorageLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/ossazureactivedirectoryadmin",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/ossazureactivedirectoryadmin"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.dbforpostgresql/features/pgversionten",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.dbforpostgresql/pgversionten"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/replica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/replica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/resourceHealth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/resourceHealth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/storageautogrow",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/storageautogrow"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/vnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/vnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.dbforpostgresql/features/webappnewbizmodel",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.dbforpostgresql/webappnewbizmodel"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/workloadInsight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/workloadInsight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeploymentManager/features/admdev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeploymentManager/admdev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeploymentManager/features/ignite2018PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeploymentManager/ignite2018PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeploymentManager/features/tip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeploymentManager/tip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.devices/features/AzureIoTElasticPools",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.devices/AzureIoTElasticPools"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.devices/features/AzureIoTProvisioningService",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.devices/AzureIoTProvisioningService"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Devices/features/PublicPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Devices/PublicPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevSpaces/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevSpaces/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/DevInProdIntegration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/DevInProdIntegration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/Integration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/Integration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/Test2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/Test2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/Test3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/Test3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/Test4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/Test4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.dns/features/privatepreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.dns/privatepreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DocumentDB/features/autopilot-flight-3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DocumentDB/autopilot-flight-3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DocumentDB/features/storageanalytics-public-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DocumentDB/storageanalytics-public-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DomainRegistration/features/betaGD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DomainRegistration/betaGD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.EventGrid/features/storageEventSubscriptions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.EventGrid/storageEventSubscriptions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Experimentation/features/POC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Experimentation/POC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExpressPod/features/DataBoxCanaryTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExpressPod/DataBoxCanaryTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExpressPod/features/DataIngestionService",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExpressPod/DataIngestionService"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExpressPod/features/DeviceImportAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExpressPod/DeviceImportAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Expresspod/features/diskimportaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Expresspod/diskimportaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExpressPod/features/ExpressPodCanary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExpressPod/ExpressPodCanary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Expresspod/features/IgniteSignup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Expresspod/IgniteSignup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExpressPod/features/MockGdcoAndUps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExpressPod/MockGdcoAndUps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Expresspod/features/MockXtService",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Expresspod/MockXtService"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExternalShim/features/ExternalShimAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExternalShim/ExternalShimAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Genomics/features/DevelopmentEnvironmentAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Genomics/DevelopmentEnvironmentAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/CanaryParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/CanaryParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/GA20181120",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/GA20181120"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HanaOnAzure/features/noAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HanaOnAzure/noAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/DedicatedHsmEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/DedicatedHsmEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/deploymentVerification",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/deploymentVerification"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/drillVerification",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/drillVerification"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/UseDogfoodHsmAdminPlane",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/UseDogfoodHsmAdminPlane"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/HybridComputePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/HybridComputePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.hybridcompute/features/HybridComputeExtensionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.hybridcompute/HybridComputeExtensionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/HybridRPCanary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/HybridRPCanary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridData/features/PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridData/PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/AIMONEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/AIMONEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/actiongrouptestinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/actiongrouptestinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/azurehealthlimitedpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/azurehealthlimitedpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/azurehealthpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/azurehealthpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/baseline-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/baseline-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/baseline-dogfood",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/baseline-dogfood"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/billingv3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/billingv3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/diagnosticsettingpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/diagnosticsettingpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/customMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/customMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableCCAN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableCCAN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/EnableCHNRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/EnableCHNRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableCID",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableCID"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/EnableNOERegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/EnableNOERegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/EnableNOWRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/EnableNOWRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableSEA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableSEA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/EnableSEAURegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/EnableSEAURegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableSUK",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableSUK"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableWestUS2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableWestUS2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/metricalertprivatepreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/metricalertprivatepreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/metricalertmultidimprivatepreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/metricalertmultidimprivatepreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/NotificationRulePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/NotificationRulePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/NotificationGroupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/NotificationGroupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/ScheduledQueryRulesPROD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/ScheduledQueryRulesPROD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/ScheduledQueryRulesAIMON",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/ScheduledQueryRulesAIMON"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/testinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/testinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/testinproductionmdm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/testinproductionmdm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/testinproductionnms",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/testinproductionnms"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTCentral/features/metering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTCentral/metering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTSpaces/features/CanaryCustomers",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTSpaces/CanaryCustomers"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTSpaces/features/MVP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTSpaces/MVP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IotSpaces/features/PPECustomers",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IotSpaces/PPECustomers"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IotSpaces/features/PreviewCustomers",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IotSpaces/PreviewCustomers"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTSpaces/features/ScaleTestCustomers",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTSpaces/ScaleTestCustomers"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KeyVault/features/EventGridPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KeyVault/EventGridPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KeyVault/features/HSMPoolEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KeyVault/HSMPoolEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kona/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kona/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kona/features/betaAccess2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kona/betaAccess2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kubernetes/features/previewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kubernetes/previewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KubernetesConfiguration/features/sourceControlConfiguration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KubernetesConfiguration/sourceControlConfiguration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/AllowSwitzerlandNorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/AllowSwitzerlandNorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseSharedIdentities",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseSharedIdentities"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.LabServices/features/DevInProdIntegration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.LabServices/DevInProdIntegration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/AllowCrossSubscriptionGatewayAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/AllowCrossSubscriptionGatewayAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/AmeProjectionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/AmeProjectionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/AllowUnlimitedLogicApps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/AllowUnlimitedLogicApps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/FairfaxDemo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/FairfaxDemo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/HostingEnvironmentsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/HostingEnvironmentsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/IsolatedEnvironmentsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/IsolatedEnvironmentsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/IsolatedEnvironmentsPrivateRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/IsolatedEnvironmentsPrivateRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/IsolatedEnvironmentsPreviewDisable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/IsolatedEnvironmentsPreviewDisable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.MachineLearningCompute/features/ViennaPublicPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.MachineLearningCompute/ViennaPublicPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.MachineLearningExperimentation/features/CanaryFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.MachineLearningExperimentation/CanaryFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Maintenance/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Maintenance/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ManagedIdentity/features/EnableSecurityGroups",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ManagedIdentity/EnableSecurityGroups"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ManagedNetwork/features/mncbetaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ManagedNetwork/mncbetaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Microsoft/features/AllowNetworkWatcherAzureReachabilityReport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Microsoft/AllowNetworkWatcherAzureReachabilityReport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Mindaro/features/tip2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Mindaro/tip2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Mindaro/features/tip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Mindaro/tip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/AllowSMB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/AllowSMB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFBackupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFBackupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFGA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFGA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFGATenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFGATenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFNFSv4Preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFNFSv4Preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFReplicationPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFReplicationPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSnapRestorePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSnapRestorePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/managementNicAdmin",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/managementNicAdmin"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/testing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/testing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAcceleratedNetworkingFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAcceleratedNetworkingFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAccessRuleExtendedProperties",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAccessRuleExtendedProperties"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAcceleratedNetworkingForLinux",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAcceleratedNetworkingForLinux"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAllocateOptimizations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAllocateOptimizations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAllocateAsyncValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAllocateAsyncValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAppGwWafBotManagerRuleSet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAppGwWafBotManagerRuleSet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAppGwPerSiteFirewallPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAppGwPerSiteFirewallPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayClientAuthentication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayClientAuthentication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAppGwWafCustomRuleGeoMatch",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAppGwWafCustomRuleGeoMatch"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayLoadDistributionPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayLoadDistributionPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayV2WildcardListener",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayV2WildcardListener"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationSecurityGroups",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationSecurityGroups"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayZonePinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayZonePinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAzureFirewall",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAzureFirewall"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAsgsOnVmScaleSet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAsgsOnVmScaleSet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowBastionHostPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowBastionHostPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowBastionHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowBastionHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowClassicCrossSubscriptionPeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowClassicCrossSubscriptionPeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowBringYourOwnPublicIpAddress",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowBringYourOwnPublicIpAddress"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowCoExistenceAnyOrder",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowCoExistenceAnyOrder"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowCortexExpressRouteGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowCortexExpressRouteGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowCortexGlobalVnetPeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowCortexGlobalVnetPeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowCortexSecurity",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowCortexSecurity"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowDdosProtectionPlan",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowDdosProtectionPlan"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowDisableBgpRouteProgagation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowDisableBgpRouteProgagation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowDestinationServiceEndpoints",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowDestinationServiceEndpoints"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowDSeriesForBrooklyn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowDSeriesForBrooklyn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.network/features/allowERArmProviderPortal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.network/allowERArmProviderPortal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowDynamicRedirectToTestGwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowDynamicRedirectToTestGwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowExpressRoutePorts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowExpressRoutePorts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowExRCrossRegionResourceValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowExRCrossRegionResourceValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowFpgaEnabledClustersFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowFpgaEnabledClustersFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowFrontdoor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowFrontdoor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGlobalCrpHttpClient",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGlobalCrpHttpClient"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGlobalTagsForSql",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGlobalTagsForSql"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGlobalPeeringTransit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGlobalPeeringTransit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGlobalVnetPeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGlobalVnetPeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGlobalTagsForStorage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGlobalTagsForStorage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowHidingCrossSubscriptionResources",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowHidingCrossSubscriptionResources"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGRPeerConnection",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGRPeerConnection"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowILBAllPortsRule",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowILBAllPortsRule"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIntendedPolicies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIntendedPolicies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIntentedPolicies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIntentedPolicies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowInterfaceEndpoints",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowInterfaceEndpoints"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowInternalDelegations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowInternalDelegations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIpTags",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIpTags"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIpGroups",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIpGroups"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIPv6CAOnStandardLB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIPv6CAOnStandardLB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIpv6GlobalReach",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIpv6GlobalReach"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIpv6PrivatePeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIpv6PrivatePeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIPv6VirtualNetwork",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIPv6VirtualNetwork"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowLBPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowLBPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowLBPreviewWave2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowLBPreviewWave2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowLBPreviewWave3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowLBPreviewWave3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowLBSNATallocationPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowLBSNATallocationPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowLoadBalancingOnSecondaryIpConfigs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowLoadBalancingOnSecondaryIpConfigs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMacPreservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMacPreservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMaxPrivateLinkServicesPerLoadBalancerOptimization",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMaxPrivateLinkServicesPerLoadBalancerOptimization"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMultiNicOnVMScaleSet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMultiNicOnVMScaleSet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMultipleAddressPrefixesOnSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMultipleAddressPrefixesOnSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMultipleIpConfigurationsPerNic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMultipleIpConfigurationsPerNic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMutipleAddressPrefixesOnSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMutipleAddressPrefixesOnSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNatGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNatGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetwatcherAzureReachabilityReport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetwatcherAzureReachabilityReport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkIntentPolicies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkIntentPolicies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkProfiles",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkProfiles"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkWatcher",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkWatcher"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkWatcherAzureReachabilityReport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkWatcherAzureReachabilityReport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkWatcherConnectivityCheck",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkWatcherConnectivityCheck"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNfvrpFirewallPolicyPrivate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNfvrpFirewallPolicyPrivate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNfvrpFirewallPolicySlice",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNfvrpFirewallPolicySlice"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNfvrpFirewallPolicyValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNfvrpFirewallPolicyValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNfvrpResourcePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNfvrpResourcePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNfvrpVirtualRouterSlice",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNfvrpVirtualRouterSlice"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowOutboundNatRule",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowOutboundNatRule"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowP2SCortexAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowP2SCortexAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPaaSEndpointAcl",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPaaSEndpointAcl"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPingMesh",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPingMesh"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPreflightValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPreflightValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrepareNetworkPoliciesAction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrepareNetworkPoliciesAction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrivateAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrivateAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrivateEndpoints",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrivateEndpoints"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrivateLinkServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrivateLinkServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPseudoClientAppId",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPseudoClientAppId"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPublicIpMobility",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPublicIpMobility"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPublicIPOnVMScaleSetVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPublicIPOnVMScaleSetVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPublicIpPrefix",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPublicIpPrefix"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPublicIpsAndLoadBalancingOnSecondaryIpConfigsInVMScaleSet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPublicIpsAndLoadBalancingOnSecondaryIpConfigsInVMScaleSet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToApplicationGatewayBvt1Gwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToApplicationGatewayBvt1Gwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteBvt2Gwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteBvt2Gwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteBvt3Gwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteBvt3Gwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteCPGwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteCPGwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteDPGwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteDPGwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteMXGwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteMXGwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteRSGwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteRSGwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectMaps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectMaps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRegionalGatewayManagerForSecureGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRegionalGatewayManagerForSecureGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRegionalVMSSVirtualNetworkGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRegionalVMSSVirtualNetworkGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRouteServiceAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRouteServiceAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRouteTables",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRouteTables"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRoutingPreferenceFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRoutingPreferenceFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRPGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRPGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSecureVnets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSecureVnets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowServiceEndpointPolicies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowServiceEndpointPolicies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSingleNicAndMultiNicInSameAvailabilitySet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSingleNicAndMultiNicInSameAvailabilitySet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowStandardLBOutboundRulesPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowStandardLBOutboundRulesPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowStaticPublicIpAsInstanceIp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowStaticPublicIpAsInstanceIp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSubnetDelegation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSubnetDelegation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSubscriptionMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSubscriptionMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowThrottleCrpOperations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowThrottleCrpOperations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVirtualNetworkTap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVirtualNetworkTap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVMsFromDifferentVnetsOnAvailabilitySet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVMsFromDifferentVnetsOnAvailabilitySet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVMSSVirtualNetworkGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVMSSVirtualNetworkGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVmssHealthProbe",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVmssHealthProbe"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVnetPeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVnetPeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVnetGatewayOpenVpnProtocol",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVnetGatewayOpenVpnProtocol"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.network/features/AllowVpnclientIpsecPoliciesSet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.network/AllowVpnclientIpsecPoliciesSet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/armApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/armApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/azurednspreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/azurednspreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/CloudDnsAliasPortalTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/CloudDnsAliasPortalTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/CloudDnsBdmProd",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/CloudDnsBdmProd"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/CloudDnsBdmPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/CloudDnsBdmPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/CloudDnsReleaseCandidate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/CloudDnsReleaseCandidate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/DisableNetworkWatcherAutocreation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/DisableNetworkWatcherAutocreation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/CloudDnsThrottling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/CloudDnsThrottling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableDdosProtectionPlanBilling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableDdosProtectionPlanBilling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableOperationBatching",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableOperationBatching"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableTenantNoSyncLock",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableTenantNoSyncLock"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableTenantOperationBatching",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableTenantOperationBatching"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableValidationInBackgroundTask",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableValidationInBackgroundTask"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/HybridRegionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/HybridRegionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ExrGwGatewaySubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ExrGwGatewaySubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/InternetAnalyzerPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/InternetAnalyzerPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/isVMSSVirtualNetworkGatewayAllowed",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/isVMSSVirtualNetworkGatewayAllowed"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/PrivateDnsGcpPPE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/PrivateDnsGcpPPE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/PrivateDnsGcpDaily",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/PrivateDnsGcpDaily"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/SkipPseudoVipGeneration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/SkipPseudoVipGeneration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/SecureGwGatewaySubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/SecureGwGatewaySubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ThrottleArmOperationsRnm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ThrottleArmOperationsRnm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/TestFlag",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/TestFlag"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/TrafficManagerHeatMap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/TrafficManagerHeatMap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Netwotk/features/AllowGlobalPeeringTransit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Netwotk/AllowGlobalPeeringTransit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NotificationHubs/features/NHubMetrics",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NotificationHubs/NHubMetrics"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.OperationalInsights/features/LAClusterApiEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.OperationalInsights/LAClusterApiEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.OperationalInsights/features/SwitzerlandRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.OperationalInsights/SwitzerlandRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowCarrierInterconnect",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowCarrierInterconnect"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowDirectInterconnect",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowDirectInterconnect"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowCDNInterconnect",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowCDNInterconnect"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowDirectPeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowDirectPeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowExchangeInterconnect",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowExchangeInterconnect"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowPeeringService",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowPeeringService"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowExchangePeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowExchangePeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/AKS-DataPlaneAutoApprove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/AKS-DataPlaneAutoApprove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/Insights",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/Insights"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/Events",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/Events"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/States",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/States"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Project/features/tip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Project/tip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/32DiskBackupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/32DiskBackupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/AzureFileShareBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/AzureFileShareBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/BackupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/BackupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/BlockedFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/BlockedFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/CrossRegionRestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/CrossRegionRestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/HanaBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/HanaBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/InstantBackupandRecovery",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/InstantBackupandRecovery"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/ItemLevelRecovery",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/ItemLevelRecovery"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/LargeDiskVMBackupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/LargeDiskVMBackupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/MABAlertingFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/MABAlertingFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/MercuryAutoProtection",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/MercuryAutoProtection"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/PPEAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/PPEAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/PremiumStorageBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/PremiumStorageBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/RecoveryServicesCanada",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/RecoveryServicesCanada"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/RecoveryServicesBeta",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/RecoveryServicesBeta"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/RecoveryServicesResourceMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/RecoveryServicesResourceMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/RecoveryServicesUK",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/RecoveryServicesUK"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/RecoveryServicesWUS2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/RecoveryServicesWUS2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/ResourceGraphSyncEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/ResourceGraphSyncEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/WorkloadBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/WorkloadBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RemoteApp/features/CspTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RemoteApp/CspTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RemoteApp/features/PrivacyEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RemoteApp/PrivacyEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RemoteApp/features/ple",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RemoteApp/ple"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resouces/features/EUAPParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resouces/EUAPParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RemoteApp/features/privatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RemoteApp/privatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ResourceHealth/features/Stage3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ResourceHealth/Stage3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AllowInternalDelegations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AllowInternalDelegations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/ARMDisableResourcesPerRGLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/ARMDisableResourcesPerRGLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/ARMLimitx2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/ARMLimitx2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AvailabilityZonePeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AvailabilityZonePeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AvailabilityZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AvailabilityZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/DataControlAgreement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/DataControlAgreement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/EUAPParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/EUAPParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/FairfaxDemo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/FairfaxDemo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/GermanyNorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/GermanyNorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/GermanyRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/GermanyRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/GermanyWestCentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/GermanyWestCentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/mandatoryRetentionPeriodEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/mandatoryRetentionPeriodEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/NorwayEast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/NorwayEast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/NorwayRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/NorwayRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/NorwayWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/NorwayWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/SouthAfricaRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/SouthAfricaRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.resources/features/SwitzerlandNorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.resources/SwitzerlandNorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/SwitzerlandRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/SwitzerlandRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.resources/features/SwitzerlandWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.resources/SwitzerlandWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/TestFlag",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/TestFlag"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/ThrottledSubscriptions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/ThrottledSubscriptions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/UAERegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/UAERegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Saas/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Saas/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/AdvancedThreatProtection",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/AdvancedThreatProtection"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/ApplicationWhitelisting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/ApplicationWhitelisting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/ApplicationWhiteliting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/ApplicationWhiteliting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/appwhitelistingaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/appwhitelistingaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.security/features/Assessments",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.security/Assessments"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/CoreDev1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/CoreDev1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/Dev1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/Dev1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/Dev2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/Dev2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/Dev3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/Dev3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/discoveredSecuritySolutions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/discoveredSecuritySolutions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/externalSecuritySolutions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/externalSecuritySolutions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/Integration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/Integration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/jitnac-dev2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/jitnac-dev2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/jitnac-dev3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/jitnac-dev3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/jitnac-int",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/jitnac-int"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/jitnac-rome3int",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/jitnac-rome3int"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/jitvmaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/jitvmaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/NacJIT",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/NacJIT"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.security/features/NetworkData",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.security/NetworkData"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/networkMap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/networkMap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/northSouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/northSouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/PricingBundles",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/PricingBundles"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/ShzadaTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/ShzadaTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/VaGrayLabel",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/VaGrayLabel"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/WindowsDefenderAtp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/WindowsDefenderAtp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SerialConsole/features/PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SerialConsole/PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/seabreezePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/seabreezePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/seabreezePrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/seabreezePrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/serviceFabricEngineering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/serviceFabricEngineering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/serviceFabricStageAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/serviceFabricStageAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabricMesh/features/seabreezePrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabricMesh/seabreezePrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabricMesh/features/serviceFabricEngineering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabricMesh/serviceFabricEngineering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Services/features/RPSaaSPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Services/RPSaaSPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SignalR/features/betaaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SignalR/betaaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SignalRService/features/betaaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SignalRService/betaaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Solutions/features/ApplianceEastUS2EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Solutions/ApplianceEastUS2EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Solutions/features/ApplianceMultiRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Solutions/ApplianceMultiRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Solutions/features/AppliancePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Solutions/AppliancePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Solutions/features/ApplicationGA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Solutions/ApplicationGA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/4tbpool",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/4tbpool"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/4TBOption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/4TBOption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/dataSync",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/dataSync"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/dataeditor-publicpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/dataeditor-publicpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/dw-asa",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/dw-asa"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/ExternalTdeCertificate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/ExternalTdeCertificate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/firewall-enforce-azure-policy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/firewall-enforce-azure-policy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/hyperscale-publicpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/hyperscale-publicpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/IndexAdvisor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/IndexAdvisor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/IndexAdvisorPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/IndexAdvisorPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/IndexAdvisorPublic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/IndexAdvisorPublic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/LongTermRetention",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/LongTermRetention"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/LongTermRetentionV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/LongTermRetentionV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/ManagedInstancePublic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/ManagedInstancePublic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/multiaz-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/multiaz-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/multiaz-test",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/multiaz-test"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/pesto",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/pesto"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/pesto-lite",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/pesto-lite"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/queryeditor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/queryeditor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/queryeditor-publicpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/queryeditor-publicpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/queryeditor-webqueryendpoint",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/queryeditor-webqueryendpoint"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/QueryPerformanceInsightPublic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/QueryPerformanceInsightPublic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/serverless-publicpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/serverless-publicpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/SQL-DW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/SQL-DW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-4tb-publicpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-4tb-publicpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-ActiveDirectoryAdmin",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-ActiveDirectoryAdmin"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/sqldb-addonstorage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/sqldb-addonstorage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-ElasticJobs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-ElasticJobs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-elasticpool",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-elasticpool"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-fsv2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-fsv2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-higherStandardPerDbDtu",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-higherStandardPerDbDtu"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-JobAccounts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-JobAccounts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-mseries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-mseries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-premiumrs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-premiumrs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-vcoremodel",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-vcoremodel"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldbsterling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldbsterling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldbtde",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldbtde"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/tdeAkvIntegration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/tdeAkvIntegration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/ADLSGen1Shim",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/ADLSGen1Shim"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/adlsgen2BlobInterop",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/adlsgen2BlobInterop"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowADFS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowADFS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowArchive",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowArchive"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowHNS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowHNS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowLinuxOptimizedShares",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowLinuxOptimizedShares"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.storage/features/AllowNFSV3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.storage/AllowNFSV3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowSharedIdentities",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowSharedIdentities"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowStorageV1Accounts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowStorageV1Accounts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowTargetStampSpecification",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowTargetStampSpecification"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/armApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/armApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/BlobIndex",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/BlobIndex"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/BlobQuery",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/BlobQuery"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/Changefeed",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/Changefeed"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.storage/features/ContainerSoftDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.storage/ContainerSoftDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/CustomerControlledFailover",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/CustomerControlledFailover"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/EncryptionAtRest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/EncryptionAtRest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.storage/features/jurobins",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.storage/jurobins"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/LivesiteThrottling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/LivesiteThrottling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/ObjectReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/ObjectReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/premiumblob",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/premiumblob"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.storage/features/PremiumHns",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.storage/PremiumHns"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/RestoreBlobRanges",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/RestoreBlobRanges"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/Tags",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/Tags"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/version",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/version"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/Versioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/Versioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/XArchive",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/XArchive"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorageCache/features/generalAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorageCache/generalAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.storagereplication/features/SOS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.storagereplication/SOS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/betaAcess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/betaAcess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/EnableUnsupportedGeo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/EnableUnsupportedGeo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/StorSimpleGardaIbizaInGA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/StorSimpleGardaIbizaInGA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/StorSimpleGardaIbizaMigrated",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/StorSimpleGardaIbizaMigrated"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/ASA_NewRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/ASA_NewRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/ProdWestUSX",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/ProdWestUSX"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TimeSeriesInsights/features/extendedCapacityAndRetention",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TimeSeriesInsights/extendedCapacityAndRetention"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TimeSeriesInsights/features/previewV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TimeSeriesInsights/previewV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Token/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Token/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Uic/features/uxdevelopment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Uic/uxdevelopment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VirtualMachineImages/features/CanaryAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VirtualMachineImages/CanaryAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VirtualMachineImages/features/VirtualMachineTemplatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VirtualMachineImages/VirtualMachineTemplatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VisualStudio/features/ExtensionResource",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VisualStudio/ExtensionResource"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/CloudSimpleRP1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/CloudSimpleRP1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp11",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp11"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp12",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp12"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/CloudSimpleRP16",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/CloudSimpleRP16"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp17",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp17"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp18",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp18"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.vmwarecloudsimple/features/eastus-devtest-bl31",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.vmwarecloudsimple/eastus-devtest-bl31"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-01",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-01"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-02",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-02"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-03",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-03"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-04",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-04"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-05",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-05"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-06",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-06"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-07",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-07"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-08",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-08"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-devtest-virt-01",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-devtest-virt-01"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-devtest-virt-02",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-devtest-virt-02"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-01",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-01"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-02",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-02"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-03",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-03"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-04",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-04"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-05",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-05"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-06",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-06"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-07",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-07"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-08",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-08"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-09",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-09"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-10",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-10"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-11",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-11"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-12",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-12"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-13",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-13"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-14",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-14"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-15",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-15"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-16",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-16"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-17",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-17"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-18",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-18"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-19",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-19"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-20",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-20"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-23",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-23"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-24",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-24"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-25",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-25"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-26",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-26"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-27",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-27"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-28",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-28"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-30",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-30"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-31",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-31"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-32",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-32"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-33",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-33"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-34",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-34"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-37",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-37"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-38",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-38"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-39",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-39"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-40",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-40"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-41",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-41"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-42",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-42"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-43",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-43"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-44",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-44"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-45",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-45"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-46",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-46"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-47",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-47"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-48",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-48"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-49",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-49"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-50",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-50"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-51",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-51"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-52",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-52"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-53",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-53"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-54",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-54"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-57",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-57"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-59",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-59"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-61",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-61"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-62",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-62"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-63",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-63"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-64",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-64"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-65",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-65"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-66",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-66"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-67",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-67"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-68",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-68"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-69",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-69"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-70",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-70"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-71",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-71"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-72",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-72"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-73",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-73"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-74",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-74"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-77",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-77"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-78",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-78"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-79",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-79"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/env-cs-westus-devtest-80",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/env-cs-westus-devtest-80"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/env-cs-westus-devtest-81",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/env-cs-westus-devtest-81"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/env-cs-westus-devtest-82",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/env-cs-westus-devtest-82"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/env-cs-westus-devtest-83",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/env-cs-westus-devtest-83"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/env-cs-westus-devtest-84",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/env-cs-westus-devtest-84"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/expire-on-7-25-19",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/expire-on-7-25-19"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/itops-he",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/itops-he"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/kiev-test-demo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/kiev-test-demo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/multi-region-1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/multi-region-1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/multi-region-2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/multi-region-2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/multi-region-3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/multi-region-3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/multi-region-4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/multi-region-4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/mustEmitFractions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/mustEmitFractions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/mustEmitNone",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/mustEmitNone"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/mustEmitOnes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/mustEmitOnes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/mustEmitZeros",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/mustEmitZeros"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/stg-csos",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/stg-csos"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/subscriptionsWhiteList",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/subscriptionsWhiteList"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/westeurope-test",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/westeurope-test"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/westus-he-test",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/westus-he-test"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/westus-maas",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/westus-maas"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/ASEInEastUS2EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/ASEInEastUS2EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/AustraliaCentral2RegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/AustraliaCentral2RegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/AustraliaCentralRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/AustraliaCentralRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/AustraliaEastRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/AustraliaEastRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/AustraliaSouthEastRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/AustraliaSouthEastRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/BrazilSouthRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/BrazilSouthRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CanadaCentralRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CanadaCentralRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CanadaEastRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CanadaEastRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CentralIndiaRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CentralIndiaRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CentralUSEUAPRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CentralUSEUAPRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CentralUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CentralUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EastAsiaRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EastAsiaRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EastAsiaStageRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EastAsiaStageRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EastUS2EUAPRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EastUS2EUAPRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EastUS2RegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EastUS2RegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EventGridIntegration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EventGridIntegration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/FranceCentralRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/FranceCentralRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/FranceSouthRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/FranceSouthRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/JapanEastRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/JapanEastRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/JapanWestRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/JapanWestRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/KoreaCentralRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/KoreaCentralRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/KoreaSouthRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/KoreaSouthRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/NorthCentralUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/NorthCentralUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/NorthEuropeRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/NorthEuropeRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/PinnedToGlobalEndpoint",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/PinnedToGlobalEndpoint"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/RegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/RegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/SouthCentralUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/SouthCentralUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/SouthEastAsiaRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/SouthEastAsiaRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/SouthIndiaRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/SouthIndiaRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/TestFeatureRegistration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/TestFeatureRegistration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/UAECentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/UAECentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/UKSouthRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/UKSouthRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/UKWestRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/UKWestRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/Undelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/Undelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/UseTipForTopLevelProxyOnlyApis",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/UseTipForTopLevelProxyOnlyApis"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/WestCentralUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/WestCentralUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/WestIndiaRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/WestIndiaRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/WestUS2RegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/WestUS2RegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/WestUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/WestUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.WindowsIoT/features/DevelopmentEnvironmentAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.WindowsIoT/DevelopmentEnvironmentAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.WindowsIoT/features/WcusAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.WindowsIoT/WcusAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Xrm/features/uxdevelopment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Xrm/uxdevelopment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowObjectReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowObjectReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ESXiDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ESXiDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowNfsFileShares",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowNfsFileShares"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/WorkloadBackupSoftDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/WorkloadBackupSoftDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/PrivateClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/PrivateClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/PrivateClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/PrivateClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AROPrivateClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AROPrivateClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MSvDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MSvDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/GermanyNorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/GermanyNorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/IsHybridServicesTestSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/IsHybridServicesTestSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/BlockCustomerManagedKey",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/BlockCustomerManagedKey"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AllowLinkedNotificationsToHiddenRP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AllowLinkedNotificationsToHiddenRP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowAccountEncryptionKeyForQueues",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowAccountEncryptionKeyForQueues"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowAccountEncryptionKeyForTables",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowAccountEncryptionKeyForTables"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/NorwayWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/NorwayWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.EventGrid/features/PartnerOperations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.EventGrid/PartnerOperations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Blockchain/features/WCUSParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Blockchain/WCUSParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableComputeOnlyUpdates",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableComputeOnlyUpdates"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/StaticSitesEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/StaticSitesEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kubernetes/features/ppeAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kubernetes/ppeAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AAD-V2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AAD-V2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/privateip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/privateip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/privateip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/privateip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/privateip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/privateip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/managedClustersTestRegionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/managedClustersTestRegionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/EarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/EarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SyncBookmark",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SyncBookmark"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/LAOnboarding",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/LAOnboarding"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DCSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DCSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/XLargeDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/XLargeDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DV3Sizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DV3Sizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGZ",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGZ"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLACC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLACC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DDAGen5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DDAGen5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ASeriesInternal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ASeriesInternal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Nested",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Nested"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Internal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Internal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TimeSeriesInsights/features/Staging",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TimeSeriesInsights/Staging"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSNetworkModePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSNetworkModePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.BlockchainTokens/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.BlockchainTokens/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/ossazureactivedirectoryadmin",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/ossazureactivedirectoryadmin"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNVAInVHub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNVAInVHub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevSpaces/features/Helm3Preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevSpaces/Helm3Preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/INT-APROVED",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/INT-APROVED"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/SpotPoolPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/SpotPoolPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenshift/features/INT-APPROVED",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenshift/INT-APPROVED"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureData/features/azurearcprivatepreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureData/azurearcprivatepreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-NewAPIVersion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-NewAPIVersion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayV2UrlRewrite",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayV2UrlRewrite"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBox/features/HongKongBoxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBox/HongKongBoxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBox/features/IndiaBoxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBox/IndiaBoxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.vmwarecloudsimple/features/new-region-test-client",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.vmwarecloudsimple/new-region-test-client"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnablePrivateLink",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnablePrivateLink"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/AllowGenevaObtainer",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/AllowGenevaObtainer"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/MPAWorm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/MPAWorm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/AllowMoveDatabase",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/AllowMoveDatabase"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.network/features/EnableRnmCallback",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.network/EnableRnmCallback"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/PartitionedDns",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/PartitionedDns"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Containerservice/features/AKS-AzurePolicyV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Containerservice/AKS-AzurePolicyV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/multiaz-gp-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/multiaz-gp-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFBackupOperator",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFBackupOperator"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFTierChange",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFTierChange"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFFlexPool",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFFlexPool"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSnapshotPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSnapshotPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NotificationHubs/features/germanyWestCentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NotificationHubs/germanyWestCentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/MetricAPI",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/MetricAPI"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/vnetLocationCheckBypass",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/vnetLocationCheckBypass"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ARM.AFEC/features/multiaz-gp-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ARM.AFEC/multiaz-gp-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/AIWorkspacePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/AIWorkspacePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerRegistry/features/TasksPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerRegistry/TasksPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/UseCustomizedUbuntuPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/UseCustomizedUbuntuPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/DevFedRAMP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/DevFedRAMP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/StagingFedRAMP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/StagingFedRAMP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/ProdFedRAMP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/ProdFedRAMP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Providerhub/features/FeaturePutApi",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Providerhub/FeaturePutApi"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TerraformOSS/features/EnableTerraform",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TerraformOSS/EnableTerraform"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Mv2SmallSizeSeries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Mv2SmallSizeSeries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TerraformOSS/features/EnableTerraformWithWhitelistedTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TerraformOSS/EnableTerraformWithWhitelistedTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AnmPRFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AnmPRFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorMultiFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorMultiFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorSingleFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorSingleFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/DBEBvtAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/DBEBvtAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevSpaces/features/internalOnly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevSpaces/internalOnly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/BestPracticePrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/BestPracticePrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OSANewUnderlayTesting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OSANewUnderlayTesting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayV1AndV2InSameSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayV1AndV2InSameSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayPrivateLink",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayPrivateLink"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/HnsSnapshot",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/HnsSnapshot"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/ShowBannerForDeviceUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/ShowBannerForDeviceUpdate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedIdentityEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedIdentityEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ResourceHealth/features/EnableKustoClustersRhc",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ResourceHealth/EnableKustoClustersRhc"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/Endpoints",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/Endpoints"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAzureNetworkManager",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAzureNetworkManager"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/PPE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/PPE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/ossdenypublicendpointaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/ossdenypublicendpointaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/ossdenypublicendpointaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/ossdenypublicendpointaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Datadog/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Datadog/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/preproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/preproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAppGwPublicAndPrivateIpOnSamePort",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAppGwPublicAndPrivateIpOnSamePort"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAllocateVMValidationOptimizations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAllocateVMValidationOptimizations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRoutingToTestNfvrpInstance1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRoutingToTestNfvrpInstance1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRoutingToTestNfvrpInstance2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRoutingToTestNfvrpInstance2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRoutingToTestNfvrpInstance3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRoutingToTestNfvrpInstance3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRoutingToTestNfvrpInstance4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRoutingToTestNfvrpInstance4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBox/features/DataBoxExportAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBox/DataBoxExportAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionO365",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionO365"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/InProgress",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/InProgress"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoReserveActivateInColocation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoReserveActivateInColocation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServicesHub/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServicesHub/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/NodeImageUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/NodeImageUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KeyVault/features/MHSM_HighCapacitySKU",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KeyVault/MHSM_HighCapacitySKU"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMariaDB/features/ossdenypublicendpointaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMariaDB/ossdenypublicendpointaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ListOfPinnedFabricClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ListOfPinnedFabricClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/NPSSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/NPSSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/internalEngineering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/internalEngineering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/SaveAROTestConfig",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/SaveAROTestConfig"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/USSTAGESCParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/USSTAGESCParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionDM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionDM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionEngine",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionEngine"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionCM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionCM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionDM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionDM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionCM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionCM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionEngine",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionEngine"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/TestDFInProduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/TestDFInProduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IndustryDataLifecycle/features/Microsoft.AIDLS.Service",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IndustryDataLifecycle/Microsoft.AIDLS.Service"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/aropreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/aropreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNsgAndRouteTableOnBMDelegatedSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNsgAndRouteTableOnBMDelegatedSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowFirewallPremium",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowFirewallPremium"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ChangeAnalysis/features/NotificationsPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ChangeAnalysis/NotificationsPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowRequireInfrastructureEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowRequireInfrastructureEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/armApiInternalAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/armApiInternalAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-IngressApplicationGatewayAddon",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-IngressApplicationGatewayAddon"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EncryptionAtHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EncryptionAtHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/Gen2VMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/Gen2VMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/DisableDeploymentGrooming",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/DisableDeploymentGrooming"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/BastionFeaturesEnableKerberos",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/BastionFeaturesEnableKerberos"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Synapse/features/SparkCatalogInSAS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Synapse/SparkCatalogInSAS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowSMBMultichannel",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowSMBMultichannel"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KeyVault/features/RbacAuthorizationPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KeyVault/RbacAuthorizationPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Wandisco.Fusion/features/LiveDataMigrator",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Wandisco.Fusion/LiveDataMigrator"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Wandisco.Fusion/features/LiveDataPlane",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Wandisco.Fusion/LiveDataPlane"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Wandisco.Fusion/features/LiveDataPlatform",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Wandisco.Fusion/LiveDataPlatform"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/AllowRequireInfrastructureEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/AllowRequireInfrastructureEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ChangeAnalysis/features/ResourceChangesPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ChangeAnalysis/ResourceChangesPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TrustedVMBackfillEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TrustedVMBackfillEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/EnableApiConnectionKeys",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/EnableApiConnectionKeys"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/MaxSurgePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/MaxSurgePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AZ_germanywestcentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AZ_germanywestcentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AAD/features/testAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AAD/testAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OpenShiftSupportGate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OpenShiftSupportGate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowBringYourOwnIpAddressForThirdParties",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowBringYourOwnIpAddressForThirdParties"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVipswap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVipswap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableAzureRBACPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableAzureRBACPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Confluent/features/confluentOrgAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Confluent/confluentOrgAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.securitygraph/features/IsgAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.securitygraph/IsgAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ProximityPlacementGroupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ProximityPlacementGroupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSubscriptionLoadBalancerCaching",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSubscriptionLoadBalancerCaching"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCollaboration/features/devEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCollaboration/devEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.hybridnetwork/features/allowVnfVendor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.hybridnetwork/allowVnfVendor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.hybridnetwork/features/allowVnfCustomer",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.hybridnetwork/allowVnfCustomer"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.HybridNetwork/features/HybridNetworkRPaaSRegistration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.HybridNetwork/HybridNetworkRPaaSRegistration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Notebooks/features/AzureNBDevTestTraffic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Notebooks/AzureNBDevTestTraffic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchSubscriptionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchSubscriptionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/orcastls",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/orcastls"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/orcastls",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/orcastls"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMariaDB/features/orcastls",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMariaDB/orcastls"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableEncryptionAtHostPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableEncryptionAtHostPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableAzureDiskFileCSIDriver",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableAzureDiskFileCSIDriver"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/PPE-NEU",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/PPE-NEU"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/JediBetaTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/JediBetaTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/largeStorage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/largeStorage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/SQLInVMPresenceVisibility",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/SQLInVMPresenceVisibility"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/useContainerd",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/useContainerd"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ContainerRuntime",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ContainerRuntime"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/JediBetaTestAntares",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/JediBetaTestAntares"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/GPUDedicatedVHDPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/GPUDedicatedVHDPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/MicrosoftRRDCLab1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/MicrosoftRRDCLab1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/westus2mockedge",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/westus2mockedge"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Notebooks/features/AzureNBCanaryTraffic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Notebooks/AzureNBCanaryTraffic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-OMSAppMonitoring",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-OMSAppMonitoring"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/LogSearchAlertsV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/LogSearchAlertsV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBI/features/DailyPrivateLinkServicesForPowerBI",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBI/DailyPrivateLinkServicesForPowerBI"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/ResourceMoveAllowed",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/ResourceMoveAllowed"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CopyV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CopyV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/MabAfecTestEv2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/MabAfecTestEv2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Authorization/features/PolicyExemptionPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Authorization/PolicyExemptionPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ApiManagement/features/dummyfeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ApiManagement/dummyfeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSTOnBMDelegatedSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSTOnBMDelegatedSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/UserAssignedIdentityPreviewInternalTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/UserAssignedIdentityPreviewInternalTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KubernetesConfiguration/features/AKS-GitOps-FeatureFlag",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KubernetesConfiguration/AKS-GitOps-FeatureFlag"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CloudServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CloudServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/attestations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/attestations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableUltraSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableUltraSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMoreASPerLBfWithoutVMSS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMoreASPerLBfWithoutVMSS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithConfigurableRepairActions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithConfigurableRepairActions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/EV2TestAFECFlag",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/EV2TestAFECFlag"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/UseCustomizedContainerRuntime",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/UseCustomizedContainerRuntime"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AzureEdgeZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AzureEdgeZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ImportExport/features/SouthAfricaNorthAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ImportExport/SouthAfricaNorthAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowWorkloadTypeOnBM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowWorkloadTypeOnBM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.cdn/features/EnablePrivateLink",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.cdn/EnablePrivateLink"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AZ_brazilsouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AZ_brazilsouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SystemPriorityCopy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SystemPriorityCopy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Swiftlet/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Swiftlet/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/UserAssignedIdentityPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/UserAssignedIdentityPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Codespaces/features/CanaryUSEC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Codespaces/CanaryUSEC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisk512E",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisk512E"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resiliency/features/PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resiliency/PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IntelligentITDigitalTwin/features/AccessControl",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IntelligentITDigitalTwin/AccessControl"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.D365CustomerInsights/features/enableAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.D365CustomerInsights/enableAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetappInfraOnBM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetappInfraOnBM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.migrate/features/TestFeatureEV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.migrate/TestFeatureEV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFDoubleEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFDoubleEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGPhaseScaleOutCopies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGPhaseScaleOutCopies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-GitOps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-GitOps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/NewRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/NewRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/FastPathEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/FastPathEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.migrate/features/TestFeatureEV2Migrate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.migrate/TestFeatureEV2Migrate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Relay/features/AllowPrivateEndpointProxies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Relay/AllowPrivateEndpointProxies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForwardAzGatewayTags",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForwardAzGatewayTags"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/DataBoxExportHeavyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/DataBoxExportHeavyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.policyinsights/features/checkPolicyRestrictions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.policyinsights/checkPolicyRestrictions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/GCEV2TestFeature001",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/GCEV2TestFeature001"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/DsmsSecrets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/DsmsSecrets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/ManagedClustersPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/ManagedClustersPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/EastUS2EUAPMockEdge",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/EastUS2EUAPMockEdge"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/QueryPacks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/QueryPacks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KubernetesConfiguration/features/Extensions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KubernetesConfiguration/Extensions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableEphemeralOSDiskPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableEphemeralOSDiskPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableDscpConfiguration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableDscpConfiguration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DocumentDB/features/pitr-public-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DocumentDB/pitr-public-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/USSTAGEEParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/USSTAGEEParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.FootprintMonitoring/features/FirstPartyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.FootprintMonitoring/FirstPartyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdateInt",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdateInt"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdatePPE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdatePPE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdateCanary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdateCanary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/HnsAppendBlob",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/HnsAppendBlob"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/FixedMaintenanceWindow",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/FixedMaintenanceWindow"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrivateEndpointNSG",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrivateEndpointNSG"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExtendedLocation/features/CustomLocations-pp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExtendedLocation/CustomLocations-pp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExtendedLocation/features/CustomLocations-ppauto",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExtendedLocation/CustomLocations-ppauto"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/spotPriorityServiceFabric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/spotPriorityServiceFabric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSMBEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSMBEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSMBCAShare",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSMBCAShare"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/EarlyAccessGA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/EarlyAccessGA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Capacity/features/CentrallyManagedLicenses",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Capacity/CentrallyManagedLicenses"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/GCEV2TestFeature002",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/GCEV2TestFeature002"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/ossrdbmsinfrastructureencryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/ossrdbmsinfrastructureencryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/ossrdbmsinfrastructureencryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/ossrdbmsinfrastructureencryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/ossrdbmsbyokga",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/ossrdbmsbyokga"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/ossrdbmsbyokga",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/ossrdbmsbyokga"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Routing-CanaryCentralEUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/Routing-CanaryCentralEUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/SwitzerlandNorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/SwitzerlandNorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCollaboration/features/privatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCollaboration/privatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IndustryDataLifecycle/features/Microsoft.AIDLS.Services.WcusOnly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IndustryDataLifecycle/Microsoft.AIDLS.Services.WcusOnly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IndustryDataLifecycle/features/Microsoft.AIDLS.Services.NonWcus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IndustryDataLifecycle/Microsoft.AIDLS.Services.NonWcus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.MachineLearningServices/features/MFE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.MachineLearningServices/MFE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFMultiOU",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFMultiOU"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFLdapoverTls",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFLdapoverTls"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFLdapExtendedGroups",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFLdapExtendedGroups"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableEastUS2EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableEastUS2EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableJapanWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableJapanWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableAustraliaCentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableAustraliaCentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/PublicPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/PublicPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Contoso/features/RPaaSBridge",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Contoso/RPaaSBridge"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cdn/features/EUAPRunnerRPV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cdn/EUAPRunnerRPV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AutonomousDevelopmentPlatform/features/EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AutonomousDevelopmentPlatform/EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowStorageServiceEncryptionIdentity",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowStorageServiceEncryptionIdentity"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SqlVirtualMachine/features/BulkRegistration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SqlVirtualMachine/BulkRegistration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StoragePool/features/PublicPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StoragePool/PublicPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CustomerLockbox/features/CustomerLockboxFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CustomerLockbox/CustomerLockboxFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ReserveMacOnCreateNic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ReserveMacOnCreateNic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowAttributeBasedAccessControl",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowAttributeBasedAccessControl"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSharedAD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSharedAD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/UpdateCenter",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/UpdateCenter"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionKOps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionKOps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionKOps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionKOps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionSE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionSE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionSE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionSE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Chaos/features/PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Chaos/PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Chaos/features/SquallTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Chaos/SquallTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Baremetal/features/ClusterStorPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Baremetal/ClusterStorPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreviewRebootless",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreviewRebootless"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.D365CustomerInsights/features/enableMsftAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.D365CustomerInsights/enableMsftAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.D365CustomerInsights/features/enableTip1Access",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.D365CustomerInsights/enableTip1Access"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgresql/features/singleServerHA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgresql/singleServerHA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgresql/features/singleServerCMW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgresql/singleServerCMW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgresql/features/singleServerVnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgresql/singleServerVnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cdn/features/PilotRunnerRPV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cdn/PilotRunnerRPV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cdn/features/RunnerRPV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cdn/RunnerRPV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cdn/features/RunnerRPV1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cdn/RunnerRPV1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/RegionsInTesting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/RegionsInTesting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgresql/features/citusComputeScaling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgresql/citusComputeScaling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPreProvisionedVmReuseWithSingleNicAndAccelNet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPreProvisionedVmReuseWithSingleNicAndAccelNet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/EarlyVerify",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/EarlyVerify"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SecurityInsights/features/IncidentsThrottlingTestFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SecurityInsights/IncidentsThrottlingTestFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/EnableSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/EnableSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForpostgresql/features/citusStorageScaling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForpostgresql/citusStorageScaling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/nsxSimplifiedExperience",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/nsxSimplifiedExperience"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AppAssessment/features/migratePrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AppAssessment/migratePrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFAesEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFAesEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFLdapSigning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFLdapSigning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdatePerf",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdatePerf"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UACDataboxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UACDataboxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.dbformysql/features/singleServerCMW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.dbformysql/singleServerCMW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.dbformysql/features/singleServerVnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.dbformysql/singleServerVnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/BrazilSouthAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/BrazilSouthAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/BRSDataboxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/BRSDataboxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/BRSDiskAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/BRSDiskAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/BRSHeavyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/BRSHeavyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UACHeavyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UACHeavyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UACDiskAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UACDiskAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UAECentralAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UAECentralAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UKSouthAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UKSouthAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UKSDataboxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UKSDataboxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UKSDiskAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UKSDiskAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UKSHeavyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UKSHeavyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/SZNHeavyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/SZNHeavyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/SZNDiskAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/SZNDiskAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/SZNDataboxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/SZNDataboxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/SwitzerlandNorthAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/SwitzerlandNorthAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFVolumeGroup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFVolumeGroup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforpostgresql/features/singleServerHelpRequest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforpostgresql/singleServerHelpRequest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMysql/features/singleServerHelpRequest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMysql/singleServerHelpRequest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/LogicApps-2020-09-RegionsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/LogicApps-2020-09-RegionsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AutonomousDevelopmentPlatform/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AutonomousDevelopmentPlatform/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AKS-OpenServiceMesh",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AKS-OpenServiceMesh"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/MigrateToMSIClusterPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/MigrateToMSIClusterPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGTrustedVM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGTrustedVM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/portalSiteToSiteVpn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/portalSiteToSiteVpn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithVMScaleSetsAtScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithVMScaleSetsAtScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/MSIPrivateLinkEarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/MSIPrivateLinkEarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/IsCloudManagementEnabledForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/IsCloudManagementEnabledForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/DenyList",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/DenyList"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.resources/features/InternalAzureEdgeZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.resources/InternalAzureEdgeZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Bing/features/InternalTesting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Bing/InternalTesting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/portalSRMAddon",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/portalSRMAddon"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/DisableVirtualMachineQuota",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/DisableVirtualMachineQuota"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/DisableLabVirtualMachineQuota",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/DisableLabVirtualMachineQuota"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Communication/features/PhoneNumberInboundCallingAllowed",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Communication/PhoneNumberInboundCallingAllowed"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/EUAPParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/EUAPParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCollaboration/features/ciEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCollaboration/ciEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCollaboration/features/canaryEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCollaboration/canaryEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCollaboration/features/intEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCollaboration/intEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.OpenLogisticsPlatform/features/WorkspacesOperations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.OpenLogisticsPlatform/WorkspacesOperations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFAzureKeyVaultEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFAzureKeyVaultEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/HnsOnMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/HnsOnMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradeSDPWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradeSDPWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/singleServerHA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/singleServerHA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SignalRService/features/AllowCustomDomainCertificate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SignalRService/AllowCustomDomainCertificate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.securityinsights/features/SatelliteClusterAustralia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.securityinsights/SatelliteClusterAustralia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAppGwWafPolicyHigherLimits",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAppGwWafPolicyHigherLimits"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.operationalinsights/features/QueryPacks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.operationalinsights/QueryPacks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/AllowDdv4Sku",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/AllowDdv4Sku"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoRollingUpgradeForSFAutoOSUpgrade",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoRollingUpgradeForSFAutoOSUpgrade"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseElasticPipelineOptimization",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseElasticPipelineOptimization"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureData/features/ArcDataRPaas",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureData/ArcDataRPaas"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AutoUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AutoUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.AzPE.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.AzPE.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/SQLFixedMaintenanceWindowCanary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/SQLFixedMaintenanceWindowCanary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableResourceLevelLocking",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableResourceLevelLocking"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/isVwanDeploy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/isVwanDeploy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowVendorTestingRedirection",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/AllowVendorTestingRedirection"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureArcData/features/ArcDataRpaasDev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureArcData/ArcDataRpaasDev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/PodSubnetPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/PodSubnetPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AlertsManagement/features/rhartestinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AlertsManagement/rhartestinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnablePodIdentityPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnablePodIdentityPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.operationalinsights/features/EnableQueryPacks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.operationalinsights/EnableQueryPacks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointsRetrieveSAS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointsRetrieveSAS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/flexibleServerReplica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/flexibleServerReplica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnableACRTeleport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnableACRTeleport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IndustryDataLifecycle/features/CanaryAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IndustryDataLifecycle/CanaryAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/CustomNodeConfigPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/CustomNodeConfigPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/basicstandardtest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/basicstandardtest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/EnableRecoveryServicesVaultAmpAlerts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/EnableRecoveryServicesVaultAmpAlerts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataProtection/features/BlobOperationalBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataProtection/BlobOperationalBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AFDEUAPRunnerV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AFDEUAPRunnerV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AFDPilotRunnerV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AFDPilotRunnerV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AFDPrivateProductionV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AFDPrivateProductionV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AFDProdRunnerV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AFDProdRunnerV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowServiceChain",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowServiceChain"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowUpdateAddressSpaceInPeeredVnets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowUpdateAddressSpaceInPeeredVnets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/DisableMachinesPerRGLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/DisableMachinesPerRGLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/PreviewRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/PreviewRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservationOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservationOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExtendedLocation/features/CustomLocations-int",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExtendedLocation/CustomLocations-int"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/UseCustomizedWindowsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/UseCustomizedWindowsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/UseAKSWindows2004Preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/UseAKSWindows2004Preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DelegatedNetwork/features/ControllerAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DelegatedNetwork/ControllerAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/RedHatEngineering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/RedHatEngineering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SecurityInsights/features/noIncidentThrottling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SecurityInsights/noIncidentThrottling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SecurityInsights/features/CancelIncidentThrottling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SecurityInsights/CancelIncidentThrottling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.LoadTestService/features/loadTestBetaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.LoadTestService/loadTestBetaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-WestCentralUS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/Allow-WestCentralUS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/SkipDeviceVersionCheckForResourceMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/SkipDeviceVersionCheckForResourceMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SecurityInsights/features/applyIncidentThrottling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SecurityInsights/applyIncidentThrottling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-ConfidentialComputingAddon",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-ConfidentialComputingAddon"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnablePrivateClusterFQDNSubdomain",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnablePrivateClusterFQDNSubdomain"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTCentral/features/scootaloo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTCentral/scootaloo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/HostReplaceCustomerNotification",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/HostReplaceCustomerNotification"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPremiumSkuLb",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPremiumSkuLb"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMCustomImagePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMCustomImagePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPatchModeOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPatchModeOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ResourceConnector/features/Appliances-pp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ResourceConnector/Appliances-pp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ResourceConnector/features/Appliances-ppauto",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ResourceConnector/Appliances-ppauto"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutorotationForDiskEncryptionAtRest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutorotationForDiskEncryptionAtRest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/policyStateChangeNotifications",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/policyStateChangeNotifications"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AnyBuild/features/TestResourceProvider",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AnyBuild/TestResourceProvider"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgresql/features/flexibleServerDeleteFeedback",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgresql/flexibleServerDeleteFeedback"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySql/features/flexibleServerDeleteFeedback",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySql/flexibleServerDeleteFeedback"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/OptimizeCreateDnsCalls",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/OptimizeCreateDnsCalls"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMSSFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMSSFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HealthcareApis/features/Gen2PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HealthcareApis/Gen2PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableMaxPrivateEndpointsVia64kPath",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableMaxPrivateEndpointsVia64kPath"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableHighAvailabilityMode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableHighAvailabilityMode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.EventGrid/features/EventGridPreviewFeatures2021H1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.EventGrid/EventGridPreviewFeatures2021H1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SqlVirtualMachine/features/TestAFECForTPID",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SqlVirtualMachine/TestAFECForTPID"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DbForPostgreSQL/features/MarlinSubscriptionSwitch",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DbForPostgreSQL/MarlinSubscriptionSwitch"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Routing-CanaryEastUS2EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/Routing-CanaryEastUS2EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowFileVerlaine",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowFileVerlaine"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSDNAppliance",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSDNAppliance"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForpostgresql/features/perfDataReset",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForpostgresql/perfDataReset"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.security/features/iotsolutionmigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.security/iotsolutionmigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AlertsManagement/features/PreviewSmartDetectionsMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AlertsManagement/PreviewSmartDetectionsMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AlertsManagement/features/SmartAlertsTeamExperimentalDetectors",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AlertsManagement/SmartAlertsTeamExperimentalDetectors"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ImportExport/features/KoreaSouthAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ImportExport/KoreaSouthAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.operationalinsights/features/IsTroubleShootEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.operationalinsights/IsTroubleShootEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/GitHub.Enterprise/features/EnableAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "GitHub.Enterprise/EnableAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMApps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMApps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/EnableRSVaultSecurityAlertsToAzureMonitor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/EnableRSVaultSecurityAlertsToAzureMonitor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/EnableAzureBackupJobFailureAlertsToAzureMonitor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/EnableAzureBackupJobFailureAlertsToAzureMonitor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataProtection/features/EnableAzureBackupJobFailureAlertsToAzureMonitor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataProtection/EnableAzureBackupJobFailureAlertsToAzureMonitor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ManagedResolverPPE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ManagedResolverPPE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Maps/features/betaAccessTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Maps/betaAccessTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTryRestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTryRestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KubernetesConfiguration/features/ClusterConfigurationAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KubernetesConfiguration/ClusterConfigurationAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/QAtesting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/QAtesting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SerialConsole.PPE/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SerialConsole.PPE/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/BastionGatewaySubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/BastionGatewaySubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/HnsSoftDeleteFilesFolders",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/HnsSoftDeleteFilesFolders"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceLinker/features/canaryEnable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceLinker/canaryEnable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceLinker/features/EastUS2EUAPEnable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceLinker/EastUS2EUAPEnable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/MatchNatRulePortOffsetToScaleSetVMIndex",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/MatchNatRulePortOffsetToScaleSetVMIndex"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Providers.Test/features/autoApproveTestFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Providers.Test/autoApproveTestFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableBillingOnMseev2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableBillingOnMseev2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableBillingOnBM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableBillingOnBM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Communication/features/ResourceGeoAwareness",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Communication/ResourceGeoAwareness"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Communication/features/StagingGeoAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Communication/StagingGeoAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointExcludeDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointExcludeDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFFileRestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFFileRestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFUserQuota",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFUserQuota"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnableAKSWindowsDSR",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnableAKSWindowsDSR"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/UseAKSWindows2019Preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/UseAKSWindows2019Preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/KubeletDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/KubeletDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnableAKSWindowsCalico",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnableAKSWindowsCalico"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/BackupCreateVaultWithCmk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/BackupCreateVaultWithCmk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnableCloudControllerManager",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnableCloudControllerManager"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Synapse/features/TSQLStreaming",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Synapse/TSQLStreaming"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayDenyOutboundInternet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayDenyOutboundInternet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AZ_uswest3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AZ_uswest3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/LogicApps-Yakima",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/LogicApps-Yakima"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ServiceEndpointPoliciesAliasesOnboarding",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ServiceEndpointPoliciesAliasesOnboarding"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AZ_indiacentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AZ_indiacentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AZ_koreacentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AZ_koreacentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIpv6CloudService",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIpv6CloudService"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.MobileNetwork/features/AllowMobileNetworkCustomer",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.MobileNetwork/AllowMobileNetworkCustomer"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdateDev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdateDev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdateTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdateTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/MICROSOFT.DATABOXEDGE/features/ASE-CLOUD-MGMT-K8S-PREVIEW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "MICROSOFT.DATABOXEDGE/ASE-CLOUD-MGMT-K8S-PREVIEW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/HANASnapshotBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/HANASnapshotBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.dbforpostgresql/features/locationCapability",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.dbforpostgresql/locationCapability"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGatewayLoadBalancer",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGatewayLoadBalancer"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMNetworkInterfaceConfigurations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMNetworkInterfaceConfigurations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnableAzureKeyvaultSecretsProvider",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnableAzureKeyvaultSecretsProvider"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AKS-ExtensionManager",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AKS-ExtensionManager"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/locationCapability",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/locationCapability"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ConnectedVMwarevSphere/features/ConnectedVMwarePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ConnectedVMwarevSphere/ConnectedVMwarePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/CloudSanExperience",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/CloudSanExperience"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Communication/features/AllowResourceMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Communication/AllowResourceMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/IngestionSettings",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/IngestionSettings"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotBlock",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotBlock"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.testbase/features/EastUS2EUAPEnable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.testbase/EastUS2EUAPEnable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AKS-AzureKeyVaultSecretsProvider",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AKS-AzureKeyVaultSecretsProvider"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LiveTierChange",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LiveTierChange"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/VariableResiliency",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/VariableResiliency"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowVRS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowVRS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.operationalinsights/features/storageinsigtenabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.operationalinsights/storageinsigtenabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/drsPlacementPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/drsPlacementPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Devices/features/CosmosDBRoutingEndpointPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Devices/CosmosDBRoutingEndpointPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EarlyStartVMSSRoleInstances",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EarlyStartVMSSRoleInstances"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureArcData/features/acreeLicenseProp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureArcData/acreeLicenseProp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TerraformOSS/features/OwnershipEnforcement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TerraformOSS/OwnershipEnforcement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/ArcServerPrivateLinkPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/ArcServerPrivateLinkPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Routing-AllowWestEurope",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/Routing-AllowWestEurope"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMScaleSetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMScaleSetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/scaleTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/scaleTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Singularity/features/scaleTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Singularity/scaleTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/RunCommandPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/RunCommandPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/block-tsql-crud",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/block-tsql-crud"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExtendedLocation/features/CustomLocations-InProgress",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExtendedLocation/CustomLocations-InProgress"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ResourceConnector/features/Appliances-InProgress",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ResourceConnector/Appliances-InProgress"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceLinker/features/EastUSEnable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceLinker/EastUSEnable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kubernetes/features/NewRegionRollOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kubernetes/NewRegionRollOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFChownMode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFChownMode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFUnixPermissions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFUnixPermissions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerPlatform/features/enterprisePoliciesPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerPlatform/enterprisePoliciesPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCBR",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCBR"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCBR2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCBR2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationSY",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationSY"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationML",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationML"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCQ",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCQ"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBRSE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBRSE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBRUS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBRUS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationYT",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationYT"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationYQ",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationYQ"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationPN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationPN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationDM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationDM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCDM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCDM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationHK",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationHK"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCBN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCBN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationPAR",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationPAR"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationMRS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationMRS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationDEN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationDEN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationDEWC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationDEWC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationKW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationKW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationOS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationOS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationJINC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationJINC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationJINW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationJINW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationSE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationSE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationPS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationPS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCH",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCH"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationDB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationDB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationNOE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationNOE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationNOW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationNOW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationJNB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationJNB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCPT",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCPT"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationSN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationSN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationMA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationMA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationSG",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationSG"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCHN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCHN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCHW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCHW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationAUH",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationAUH"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationDXB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationDXB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationLN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationLN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCY",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCY"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationAM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationAM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBY",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBY"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationMWH",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationMWH"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationUSW3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationUSW3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/FIPSPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/FIPSPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EventgridPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EventgridPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFCoolAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFCoolAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFDualProtocolNFSv4AndSMB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFDualProtocolNFSv4AndSMB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/customIops",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/customIops"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SecurityAndCompliance/features/PrivateLinksFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SecurityAndCompliance/PrivateLinksFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AgFoodPlatform/features/Microsoft.Farmbeats.Preview.Canary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AgFoodPlatform/Microsoft.Farmbeats.Preview.Canary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisksMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisksMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowForceDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowForceDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceLinker/features/WestCentralUSEnable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceLinker/WestCentralUSEnable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ManagedResolver",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ManagedResolver"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AI/features/TestingRetail",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AI/TestingRetail"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ProviderHubDevTest/features/ProviderHubDev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ProviderHubDevTest/ProviderHubDev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CreateOptionClone",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CreateOptionClone"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForceDeletePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForceDeletePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/DisablePrivateLinkSubnetMacAllocation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/DisablePrivateLinkSubnetMacAllocation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBIDedicated/features/paygdxt",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBIDedicated/paygdxt"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBIDedicated/features/paygdaily",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBIDedicated/paygdaily"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBIDedicated/features/paygsingapore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBIDedicated/paygsingapore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBIDedicated/features/paygbrzsb",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBIDedicated/paygbrzsb"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBIDedicated/features/paygmsitbcdr",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBIDedicated/paygmsitbcdr"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/CustomKubeletIdentityPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/CustomKubeletIdentityPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AKSNodelessPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AKSNodelessPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/production",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/production"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Singularity/features/production",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Singularity/production"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HDInsight/features/HiloTestInProd",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HDInsight/HiloTestInProd"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HDInsight/features/HiloPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HDInsight/HiloPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/AzureBackupResourceGuardEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/AzureBackupResourceGuardEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowPremiumObjectReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowPremiumObjectReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/EnableAPIVersion20210401Preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/EnableAPIVersion20210401Preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedDisksForStandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedDisksForStandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrivateEndpointStaticIpConfigurations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrivateEndpointStaticIpConfigurations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFAdAdministrators",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFAdAdministrators"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/OpenAIOnlyStamp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/OpenAIOnlyStamp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/DevControlPlane",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/DevControlPlane"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/StagingControlPlane",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/StagingControlPlane"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.M365SecurityAndCompliance/features/PrivateLinksFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.M365SecurityAndCompliance/PrivateLinksFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/DataHistoryEarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/DataHistoryEarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoAssessmentVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoAssessmentVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SupportCurrentLinuxAgentOnly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SupportCurrentLinuxAgentOnly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.EventGrid/features/June2021Features",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.EventGrid/June2021Features"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationaustraliacentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationaustraliacentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationaustraliacentral2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationaustraliacentral2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationaustraliaeast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationaustraliaeast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationaustraliasoutheast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationaustraliasoutheast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationbrazilsouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationbrazilsouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationbrazilus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationbrazilus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationbrazilsoutheast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationbrazilsoutheast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationcanadacentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationcanadacentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationcanadaeast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationcanadaeast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationcentralindia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationcentralindia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationcentralus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationcentralus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationcentraluseuap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationcentraluseuap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationeastasia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationeastasia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationeastus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationeastus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationeastus2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationeastus2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationeastus2euap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationeastus2euap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationfrancecentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationfrancecentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationfrancesouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationfrancesouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationgermanynorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationgermanynorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationgermanywestcentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationgermanywestcentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationjapaneast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationjapaneast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationjapanwest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationjapanwest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationjioindiawest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationjioindiawest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationkoreacentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationkoreacentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationkoreasouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationkoreasouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationnorthcentralus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationnorthcentralus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationnortheurope",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationnortheurope"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationnorwayeast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationnorwayeast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationnorwaywest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationnorwaywest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationsouthafricanorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationsouthafricanorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationsouthafricawest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationsouthafricawest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationsouthcentralus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationsouthcentralus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationsouthindia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationsouthindia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationsoutheastasia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationsoutheastasia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationswitzerlandnorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationswitzerlandnorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationswitzerlandwest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationswitzerlandwest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationuaecentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationuaecentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationuaenorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationuaenorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationuksouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationuksouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationukwest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationukwest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationwestcentralus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationwestcentralus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationwesteurope",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationwesteurope"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationwestindia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationwestindia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationwestus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationwestus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationwestus2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationwestus2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationswedencentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationswedencentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationswedensouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationswedensouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationeastusslv",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationeastusslv"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/BrazilUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/BrazilUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AzureDummyRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AzureDummyRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureSphere/features/int",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureSphere/int"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureSphere/features/staging",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureSphere/staging"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureSphere/features/preprod",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureSphere/preprod"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/BypassCnameCheckForCustomDomainDeletion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/BypassCnameCheckForCustomDomainDeletion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForpostgresql/features/citusShardRebalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForpostgresql/citusShardRebalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForpostgresql/features/citusCMW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForpostgresql/citusCMW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/elevatedScripting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/elevatedScripting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPoliciesOnBaremetal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPoliciesOnBaremetal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.FluidRelay/features/FluidPrivatePreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.FluidRelay/FluidPrivatePreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/portalCloudLink",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/portalCloudLink"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataProtection/features/AzureBackupResourceGuardEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataProtection/AzureBackupResourceGuardEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/flexibleServerRestoreV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/flexibleServerRestoreV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/flexibleServerRestoreV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/flexibleServerRestoreV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/ConnectedContainerRegistries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/ConnectedContainerRegistries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/HighBMSOperations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/HighBMSOperations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/nsxPrivateDNS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/nsxPrivateDNS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/prestage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/prestage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/stage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/stage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Singularity/features/stage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Singularity/stage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Singularity/features/prestage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Singularity/prestage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/test",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/test"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/flexibleServerFailover",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/flexibleServerFailover"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/privateDnsZone",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/privateDnsZone"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Search/features/afecint",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Search/afecint"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/MultiAzDedicatedCluster",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/MultiAzDedicatedCluster"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVmssFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVmssFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/UpdateAzureRBACPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/UpdateAzureRBACPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnablePrivateClusterPublicFQDN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnablePrivateClusterPublicFQDN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/HTTPProxyConfigPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/HTTPProxyConfigPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/DisableLocalAccountsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/DisableLocalAccountsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/UseCustomizedWindowsContainerRuntime",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/UseCustomizedWindowsContainerRuntime"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AppGwMetricLogFromNewStoreTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AppGwMetricLogFromNewStoreTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/AmcsInternal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/AmcsInternal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.operationalinsights/features/EnablePreviewFeatures",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.operationalinsights/EnablePreviewFeatures"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/ImmutableStorageWithVersioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/ImmutableStorageWithVersioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowPurviewPolicyEnforcement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowPurviewPolicyEnforcement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/JobCountPerSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/JobCountPerSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseNrpPutVmssPerTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseNrpPutVmssPerTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/RemoveARMQuotaLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/RemoveARMQuotaLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Search/features/afecint2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Search/afecint2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTerminateScheduledEvent",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTerminateScheduledEvent"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CheckForVMEviction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CheckForVMEviction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/earlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/earlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/hidePostgreSql9.5Version",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/hidePostgreSql9.5Version"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayRelaxedOutboundRestrictions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayRelaxedOutboundRestrictions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFEncryptedSMBConnectionsToDC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFEncryptedSMBConnectionsToDC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HealthcareApis/features/EastAsia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HealthcareApis/EastAsia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowReadingLoadBalancerTenantResourcesBatching",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowReadingLoadBalancerTenantResourcesBatching"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExtendedLocation/features/CustomLocation-InternalSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExtendedLocation/CustomLocation-InternalSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Dynamics365Fraudprotection/features/DfpPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Dynamics365Fraudprotection/DfpPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Dynamics365Fraudprotection/features/DfpTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Dynamics365Fraudprotection/DfpTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecommendationsService/features/onboarding",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecommendationsService/onboarding"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkSecurityPerimeter",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkSecurityPerimeter"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraBuiltOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraBuiltOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLAV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLAV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableApplicationGatewayCustomBackendMetrics",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableApplicationGatewayCustomBackendMetrics"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Search/features/EnableZoneRedundancy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Search/EnableZoneRedundancy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Diagnostics/features/DiagnosticsDev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Diagnostics/DiagnosticsDev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SsdZrsManagedDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SsdZrsManagedDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AKS-AzureDefenderAddon",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AKS-AzureDefenderAddon"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzurePercept/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzurePercept/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ExpressRoutePrivateEndpointGatewayBypass",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ExpressRoutePrivateEndpointGatewayBypass"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ExpressRouteVnetPeeringGatewayBypass",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ExpressRouteVnetPeeringGatewayBypass"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/LegalTerms.Face.PoliceTermsAccepted",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/LegalTerms.Face.PoliceTermsAccepted"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ConfidentialLedger/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ConfidentialLedger/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/EnableFixedSnapshotIntervalReferenceDataLookup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/EnableFixedSnapshotIntervalReferenceDataLookup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/EnablePartitionedReferenceDataLookup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/EnablePartitionedReferenceDataLookup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/EnableFullSnapshotIntervalReferenceDataLookup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/EnableFullSnapshotIntervalReferenceDataLookup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Architecture",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Architecture"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSoftDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSoftDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFEnableDefaultQuota",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFEnableDefaultQuota"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/GitHub.Enterprise/features/InternalAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "GitHub.Enterprise/InternalAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/GitHub.Enterprise/features/Canary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "GitHub.Enterprise/Canary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ProviderHub/features/EUAPServiceRP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ProviderHub/EUAPServiceRP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Sig2SigInstantaneous",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Sig2SigInstantaneous"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/showPostgreSql13Version",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/showPostgreSql13Version"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HealthcareApis/features/JapanWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HealthcareApis/JapanWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/DisableLinkAccessCheckForSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/DisableLinkAccessCheckForSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFLargeVolumes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFLargeVolumes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFIPSecForDNS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFIPSecForDNS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFAvsDataStore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFAvsDataStore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ApiManagement/features/PreviewEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ApiManagement/PreviewEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFFileAccessLogs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFFileAccessLogs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFCrossSubscriptionReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFCrossSubscriptionReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/FullBlobReferenceDataRefreshWithFixedInterval",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/FullBlobReferenceDataRefreshWithFixedInterval"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/PartitionedBlobReferenceData",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/PartitionedBlobReferenceData"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableSlbBatching",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableSlbBatching"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/customlogger",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/customlogger"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTSecurity/features/Integration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTSecurity/Integration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableVNetEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableVNetEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CommunityGalleries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CommunityGalleries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/OmsagentUseAADMSIAuthPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/OmsagentUseAADMSIAuthPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFStandardZRS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFStandardZRS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/vnetSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/vnetSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/flexibleServerManageSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/flexibleServerManageSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/flexibleServerManageSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/flexibleServerManageSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/flexibleServerFailover",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/flexibleServerFailover"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ProviderHub/features/CentralUSEUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ProviderHub/CentralUSEUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CentralUSStageRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CentralUSStageRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/DataHistoryPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/DataHistoryPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/DiagnosticServicesTokens",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/DiagnosticServicesTokens"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMsForTrustedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMsForTrustedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/SkipNetworkIntentPolicies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/SkipNetworkIntentPolicies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerPlatform/features/accountPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerPlatform/accountPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/ZRSPremiumPageBlobs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/ZRSPremiumPageBlobs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseTenantsOfSizeFive",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseTenantsOfSizeFive"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGReplicateVMGS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGReplicateVMGS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.FluidRelay/features/ManualApprovalAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.FluidRelay/ManualApprovalAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/privateDnsZoneSuffix",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/privateDnsZoneSuffix"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/cmkEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/cmkEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGShallowReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGShallowReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/japanwest_geo_pair",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/japanwest_geo_pair"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/microsoftrrdclab2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/microsoftrrdclab2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/microsoftrrdclab3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/microsoftrrdclab3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/microsoftdclabs1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/microsoftdclabs1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/microsoftb25lab1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/microsoftb25lab1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/OmsagentAADAuthPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/OmsagentAADAuthPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/PIPOnNSXEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/PIPOnNSXEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DesktopVirtualization/features/PerUserAccessPricing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DesktopVirtualization/PerUserAccessPricing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/DeploymentStacksPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/DeploymentStacksPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/FederatedClientIdentity",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/FederatedClientIdentity"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.LabServices/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.LabServices/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SCOM/features/AquilaPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SCOM/AquilaPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableObdAccelNet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableObdAccelNet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/brazilsoutheast_geo_pair",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/brazilsoutheast_geo_pair"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSubnetSharingWithCloudServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSubnetSharingWithCloudServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ChangeAnalysis/features/DevAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ChangeAnalysis/DevAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ChangeAnalysis/features/DevAccessCp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ChangeAnalysis/DevAccessCp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HealthcareApis/features/FhirEventPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HealthcareApis/FhirEventPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionKustoCTO",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionKustoCTO"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionKustoCTO",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionKustoCTO"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/AllowWorkflowManagedIdentity",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/AllowWorkflowManagedIdentity"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/NGINX.NGINXPLUS/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "NGINX.NGINXPLUS/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/LinkedInOnlyStamp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/LinkedInOnlyStamp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Private.Contoso/features/Enabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Private.Contoso/Enabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpactfulExtensionUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpactfulExtensionUpdate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/restricted",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/restricted"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/SqlDbSnapshot",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/SqlDbSnapshot"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMultiplePeeringLinksBetweenVnets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMultiplePeeringLinksBetweenVnets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/reversePendingRestartValue",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/reversePendingRestartValue"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ApiSecurity/features/CanaryAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ApiSecurity/CanaryAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Dashboard/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Dashboard/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/dsc",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/dsc"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeAnalytics/features/requestedBetaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeAnalytics/requestedBetaAccess"
+ },
+ {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeAnalytics/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeAnalytics/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeStore/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeStore/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeStore/features/requestedBetaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeStore/requestedBetaAccess"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/WestEuropeRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/WestEuropeRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowCortexAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowCortexAccess"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EastUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EastUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/AzureDedicatedHsm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/AzureDedicatedHsm"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowBaremetalServers",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowBaremetalServers"
+ },
+ {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/UseDogfoodHSM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/UseDogfoodHSM"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PlatformSettingsOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PlatformSettingsOverride"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticExtensionUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticExtensionUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "Unregistering"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ ]
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "441933110",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/ListFeaturesAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/ListFeaturesAsync.json
new file mode 100644
index 0000000000000..6f9b3e82f5489
--- /dev/null
+++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/ListFeaturesAsync.json
@@ -0,0 +1,13846 @@
+{
+ "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.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "3b6719a043a00e80b2cc78c0ce08fd1d",
+ "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, 09 Jul 2021 18:58:24 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "c1679307-322c-4485-83a1-08dcf4dd7817",
+ "x-ms-ratelimit-remaining-subscription-reads": "11998",
+ "x-ms-request-id": "c1679307-322c-4485-83a1-08dcf4dd7817",
+ "x-ms-routing-request-id": "WESTUS2:20210709T185825Z:c1679307-322c-4485-83a1-08dcf4dd7817"
+ },
+ "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/providers/Microsoft.Features/features?api-version=2015-12-01",
+ "RequestMethod": "GET",
+ "RequestHeaders": {
+ "Accept": "application/json, text/json",
+ "Authorization": "Sanitized",
+ "traceparent": "00-7412e2707869f64cbc6ca9f3e1f03f8f-9e555c9b4e3a2748-00",
+ "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )",
+ "x-ms-client-request-id": "f940f331ae329243f0c8255faf89e093",
+ "x-ms-return-client-request-id": "true"
+ },
+ "RequestBody": null,
+ "StatusCode": 200,
+ "ResponseHeaders": {
+ "Cache-Control": "no-cache",
+ "Content-Length": "495641",
+ "Content-Type": "application/json; charset=utf-8",
+ "Date": "Fri, 09 Jul 2021 18:58:25 GMT",
+ "Expires": "-1",
+ "Pragma": "no-cache",
+ "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
+ "Vary": "Accept-Encoding",
+ "X-Content-Type-Options": "nosniff",
+ "x-ms-correlation-request-id": "8e20a5fa-2029-425a-91c9-c1026193bf9c",
+ "x-ms-ratelimit-remaining-subscription-reads": "11997",
+ "x-ms-request-id": "westus2:7b7e44b9-89e9-468c-9ada-4f9bcec2f77c",
+ "x-ms-routing-request-id": "WESTUS2:20210709T185825Z:8e20a5fa-2029-425a-91c9-c1026193bf9c"
+ },
+ "ResponseBody": {
+ "value": [
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIaaS/features/cloudSimpleRp1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIaaS/cloudSimpleRp1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp10",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp10"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp11",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp11"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp12",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp12"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp13",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp13"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp14",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp14"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp15",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp15"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp16",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp16"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp17",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp17"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp18",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp18"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp19",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp19"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp20",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp20"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp21",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp21"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp22",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp22"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp23",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp23"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp24",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp24"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp25",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp25"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp6",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp6"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp7",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp7"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp8",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp8"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/cloudSimpleRp9",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/cloudSimpleRp9"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/CloudSimple.PrivateCloudIAAS/features/stagingRP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "CloudSimple.PrivateCloudIAAS/stagingRP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AAD/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AAD/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AAD/features/previewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AAD/previewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AAD/features/tipAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AAD/tipAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.aadiam/features/betalogconnector",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.aadiam/betalogconnector"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.aadiam/features/testinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.aadiam/testinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Advisor/features/dev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Advisor/dev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.alertsmanagement/features/enableSmartDiagnostics",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.alertsmanagement/enableSmartDiagnostics"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ApiManagement/features/testinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ApiManagement/testinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ApiManagement/features/testinproductionmdm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ApiManagement/testinproductionmdm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Archive/features/PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Archive/PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/aseAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/aseAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/ccAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/ccAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/ciAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/ciAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/eapAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/eapAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/ncusAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/ncusAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/neAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/neAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/scusAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/scusAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/wcusuksAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/wcusuksAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureActiveDirectory/features/B2CV2Resource",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureActiveDirectory/B2CV2Resource"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureActiveDirectory/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureActiveDirectory/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureActiveDirectory/features/CPIMCSP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureActiveDirectory/CPIMCSP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureData/features/eosEarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureData/eosEarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureData/features/tinaEarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureData/tinaEarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureStack/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureStack/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureStack/features/Marketplace",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureStack/Marketplace"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Batch/features/BatchAccountWhitelistSAN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Batch/BatchAccountWhitelistSAN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Batch/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Batch/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Batch/features/portaltest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Batch/portaltest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Batch/features/portaltest2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Batch/portaltest2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Batch/features/SwiftProd",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Batch/SwiftProd"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.BatchAI/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.BatchAI/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.BatchAI/features/workspace",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.BatchAI/workspace"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.BigAnalytics/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.BigAnalytics/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Blockchain/features/privatePreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Blockchain/privatePreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cache/features/betaAccess2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cache/betaAccess2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cache/features/betaAccess3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cache/betaAccess3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.cache/features/CanaryCheckNameAvailability",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.cache/CanaryCheckNameAvailability"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ClassicIaaSMigrate/features/ClassicIaaSMigrate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ClassicIaaSMigrate/ClassicIaaSMigrate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ClassicInfrastructureMigrate/features/ClassicInfrastructureMigrate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ClassicInfrastructureMigrate/ClassicInfrastructureMigrate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ClassicSubscription/features/InternalTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ClassicSubscription/InternalTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.cloudes/features/internalmsft",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.cloudes/internalmsft"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.cloudes/features/internalonly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.cloudes/internalonly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.cloudes/features/testinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.cloudes/testinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/absLuisAuthoring",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/absLuisAuthoring"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/AutoApproveFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/AutoApproveFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/formUnderstandingPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/formUnderstandingPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/TokenAuthPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/TokenAuthPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowManagedDisksReplaceOSDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowManagedDisksReplaceOSDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/armApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/armApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticOSUpgradeWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticOSUpgradeWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AvailabilitySetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AvailabilitySetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AzureVirtualMachineSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AzureVirtualMachineSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AZBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AZBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/BatchGetTenantInformantionRequests",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/BatchGetTenantInformantionRequests"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsPlan",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsPlan"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalAdvancedSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalAdvancedSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalEssentialsSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalEssentialsSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CAPSImagePublishing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CAPSImagePublishing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CanonicalStandardSupport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CanonicalStandardSupport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CorPersistence",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CorPersistence"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DedicatedNodeGroup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DedicatedNodeGroup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/disableDisksAndSnapshotsPerRGLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/disableDisksAndSnapshotsPerRGLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableSerialConsole",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableSerialConsole"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DsmsSecrets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DsmsSecrets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EnableCrossSubscriptionWithKeyVaultResources",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EnableCrossSubscriptionWithKeyVaultResources"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ExtensionsFastpath",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ExtensionsFastpath"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableDeadMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableDeadMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigrationGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigrationGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateDiskCopyForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateDiskCopyForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableTenantLeaseOperationsOnNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableTenantLeaseOperationsOnNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableStopMigrateGen",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableStopMigrateGen"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.StopMigrateSkipDiskCopyForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.StopMigrateSkipDiskCopyForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.EnableVMFaultInjectorForTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.EnableVMFaultInjectorForTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.VMPreprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.VMPreprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/Fabric.UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/Fabric.UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/FastPollingOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/FastPollingOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.AllowUnhealthyNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.AllowUnhealthyNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.EnableCustomizedTenantLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.EnableCustomizedTenantLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Feature.DisableServiceHealing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Feature.DisableServiceHealing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Foobar",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Foobar"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageBigBlob",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageBigBlob"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryApplicationPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryApplicationPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryImageHighScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryImageHighScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/GalleryRemoveUserSourceDependency",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/GalleryRemoveUserSourceDependency"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpedeFastPolling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpedeFastPolling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/IncrementalSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/IncrementalSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestVMUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestVMUpdate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LocalDiffDiskPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LocalDiffDiskPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/lowprioritysinglevm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/lowprioritysinglevm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedDisksPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedDisksPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ManagedResourcesMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ManagedResourcesMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MRProfile",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MRProfile"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/MultipleAvailabilityZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/MultipleAvailabilityZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NetworkPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NetworkPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NewAllocator",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NewAllocator"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NodeFlight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NodeFlight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OptOutScaleSetPipelinePreemption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OptOutScaleSetPipelinePreemption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OSUpgradeForServiceFabric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OSUpgradeForServiceFabric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/OverProvision",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/OverProvision"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverprovisionedExtensionDelay",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverprovisionedExtensionDelay"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalance",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalance"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithFDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithFDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/OverProvisionWithUDBalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/OverProvisionWithUDBalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PerfTestSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PerfTestSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ProximityPlacementGroupsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ProximityPlacementGroupsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RegionalUltraSSDVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RegionalUltraSSDVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RepairVMScaleSetInstancesPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RepairVMScaleSetInstancesPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/Reprovisioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/Reprovisioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RollingUpgradePolicyOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RollingUpgradePolicyOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RunScripts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RunScripts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEnablePremiumLRSReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEnablePremiumLRSReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/SpotMeterValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/SpotMeterValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6NP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6NP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/StandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/StandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TenantReserveActivate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TenantReserveActivate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TipNode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TipNode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UDWithinFDAlignment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UDWithinFDAlignment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraSSDWithVMSS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraSSDWithVMSS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionForVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionForVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UnifiedDiskEncryptionWithOSUpgrades",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UnifiedDiskEncryptionWithOSUpgrades"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UserImageSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UserImageSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VirtualMachineRuntimeServiceDisablePackageValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VirtualMachineRuntimeServiceDisablePackageValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMPipelineBatchingPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMPipelineBatchingPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/vmssApiPreviewV2Access",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/vmssApiPreviewV2Access"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ZRSImagesAndSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ZRSImagesAndSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ConnectedEnvironment/features/tip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ConnectedEnvironment/tip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/aciOnAtlas",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/aciOnAtlas"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/extension",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/extension"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/privatepreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/privatepreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/previewSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/previewSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerRegisry/features/BlockRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerRegisry/BlockRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/privilegedSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/privilegedSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerRegistry/features/BlockRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerRegistry/BlockRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerRegistry/features/BetaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerRegistry/BetaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerRegistry/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerRegistry/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ACS-EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ACS-EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ACSVNext",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ACSVNext"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AddContainerInsightsSolution",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AddContainerInsightsSolution"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-AzurePolicyAutoApprove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-AzurePolicyAutoApprove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-CanadaCentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-CanadaCentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-CanadaEast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-CanadaEast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-CentralUS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-CentralUS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-EastUS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-EastUS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-EnableAzureDataPlanePolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-EnableAzureDataPlanePolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-INT",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-INT"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-RegionEarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-RegionEarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-UKWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-UKWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSAuditLog",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSAuditLog"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-WestUS2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-WestUS2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AksBypassRegionWritesDisabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AksBypassRegionWritesDisabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSAzureStandardLoadBalancer",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSAzureStandardLoadBalancer"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSHTTPCustomFeatures",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSHTTPCustomFeatures"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AksBypassServiceGate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AksBypassServiceGate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSLockingDownEgressPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSLockingDownEgressPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSPrivateLinkPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSPrivateLinkPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AllowSwarmWindowsAgent",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AllowSwarmWindowsAgent"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/APIServerSecurityPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/APIServerSecurityPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AROGA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AROGA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ARORemoteGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ARORemoteGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AvailabilityZonePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AvailabilityZonePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ControlPlaneUnderlay",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ControlPlaneUnderlay"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/DockerEngineImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/DockerEngineImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableCCPMutatingWebhook",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableCCPMutatingWebhook"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableNetworkPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableNetworkPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableSingleIPPerCCP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableSingleIPPerCCP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/HTTP-Application-Routing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/HTTP-Application-Routing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableXTablesLock",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableXTablesLock"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ManagedCluster",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ManagedCluster"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/LowPriorityPoolPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/LowPriorityPoolPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/MSIPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/MSIPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/MobyImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/MobyImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/MultiAgentpoolPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/MultiAgentpoolPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/NodePublicIPPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/NodePublicIPPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OpenVPN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OpenVPN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OpenshiftManagedCluster",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OpenshiftManagedCluster"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OSABypassMarketplace",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OSABypassMarketplace"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OSAInProgressFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OSAInProgressFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/PodSecurityPolicyPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/PodSecurityPolicyPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/RBAC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/RBAC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/V20180331API",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/V20180331API"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/SaveOSATestConfig",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/SaveOSATestConfig"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/WindowsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/WindowsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/VMSSPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/VMSSPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Contoso/features/RPaaSSampleApp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Contoso/RPaaSSampleApp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CostManagementBeta/features/TenantRegistration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CostManagementBeta/TenantRegistration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CustomerInsights/features/privatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CustomerInsights/privatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CustomProviders/features/customrp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CustomProviders/customrp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CustomProviders/features/associations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CustomProviders/associations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CustomProviders/features/UpcomingRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CustomProviders/UpcomingRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/HeavyCreateAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/HeavyCreateAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/DBEIntAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/DBEIntAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/EdgeSignUp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/EdgeSignUp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/PassiveStampAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/PassiveStampAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/DatabricksEUAPAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/DatabricksEUAPAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/DatabricksControlPlane",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/DatabricksControlPlane"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/TowboatAllowedSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/TowboatAllowedSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/DatabricksTestEnv",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/DatabricksTestEnv"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCatalog/features/PPEAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCatalog/PPEAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCatalog/features/PRODAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCatalog/PRODAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCatalog/features/PRODAccessNew",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCatalog/PRODAccessNew"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataFactory/features/DFAccessInBuildout",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataFactory/DFAccessInBuildout"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataExchange/features/workspacePreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataExchange/workspacePreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataFactory/features/GatewayHAPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataFactory/GatewayHAPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataFactory/features/GatewayHAPublicPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataFactory/GatewayHAPublicPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeAnalytics/features/internalAccessWestCentralUS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeAnalytics/internalAccessWestCentralUS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeAnalytics/features/internalAccessWestUS2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeAnalytics/internalAccessWestUS2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeAnalytics/features/Scope",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeAnalytics/Scope"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataMigration/features/BuddyA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataMigration/BuddyA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataMigration/features/demo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataMigration/demo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataMigration/features/int",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataMigration/int"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataMigration/features/staging",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataMigration/staging"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataShare/features/ReactSqlUxPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataShare/ReactSqlUxPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/georeplica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/georeplica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/firewallRuleAllowAzureServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/firewallRuleAllowAzureServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/newStorageLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/newStorageLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/georestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/georestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/replica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/replica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMariaDB/features/privatePreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMariaDB/privatePreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/storageautogrow",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/storageautogrow"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/resourceHealth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/resourceHealth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/vnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/vnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/threatdetection",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/threatdetection"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/firewallRuleAllowAzureServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/firewallRuleAllowAzureServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/workloadInsight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/workloadInsight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/georestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/georestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/georeplica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/georeplica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/largeStorage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/largeStorage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/newStorageLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/newStorageLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DbforMySQL/features/replica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DbforMySQL/replica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/resourceHealth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/resourceHealth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/storageautogrow",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/storageautogrow"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/vnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/vnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.dbformysql/features/webappnewbizmodel",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.dbformysql/webappnewbizmodel"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/workloadInsight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/workloadInsight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/citus64vCores",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/citus64vCores"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/citusHA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/citusHA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/cituspreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/cituspreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/citusRoles",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/citusRoles"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/firewallRuleAllowAzureServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/firewallRuleAllowAzureServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/georeplica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/georeplica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/georestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/georestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/indexAdvisor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/indexAdvisor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/largeStorage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/largeStorage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/newStorageLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/newStorageLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/ossazureactivedirectoryadmin",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/ossazureactivedirectoryadmin"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.dbforpostgresql/features/pgversionten",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.dbforpostgresql/pgversionten"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/replica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/replica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/resourceHealth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/resourceHealth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/storageautogrow",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/storageautogrow"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/vnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/vnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.dbforpostgresql/features/webappnewbizmodel",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.dbforpostgresql/webappnewbizmodel"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/workloadInsight",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/workloadInsight"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeploymentManager/features/admdev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeploymentManager/admdev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeploymentManager/features/ignite2018PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeploymentManager/ignite2018PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeploymentManager/features/tip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeploymentManager/tip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.devices/features/AzureIoTElasticPools",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.devices/AzureIoTElasticPools"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.devices/features/AzureIoTProvisioningService",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.devices/AzureIoTProvisioningService"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Devices/features/PublicPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Devices/PublicPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevSpaces/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevSpaces/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/DevInProdIntegration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/DevInProdIntegration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/Integration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/Integration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/Test2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/Test2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/Test3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/Test3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/Test4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/Test4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.dns/features/privatepreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.dns/privatepreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DocumentDB/features/autopilot-flight-3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DocumentDB/autopilot-flight-3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DocumentDB/features/storageanalytics-public-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DocumentDB/storageanalytics-public-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DomainRegistration/features/betaGD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DomainRegistration/betaGD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.EventGrid/features/storageEventSubscriptions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.EventGrid/storageEventSubscriptions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Experimentation/features/POC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Experimentation/POC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExpressPod/features/DataBoxCanaryTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExpressPod/DataBoxCanaryTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExpressPod/features/DataIngestionService",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExpressPod/DataIngestionService"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExpressPod/features/DeviceImportAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExpressPod/DeviceImportAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Expresspod/features/diskimportaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Expresspod/diskimportaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExpressPod/features/ExpressPodCanary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExpressPod/ExpressPodCanary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Expresspod/features/IgniteSignup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Expresspod/IgniteSignup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExpressPod/features/MockGdcoAndUps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExpressPod/MockGdcoAndUps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Expresspod/features/MockXtService",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Expresspod/MockXtService"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExternalShim/features/ExternalShimAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExternalShim/ExternalShimAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Genomics/features/DevelopmentEnvironmentAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Genomics/DevelopmentEnvironmentAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/CanaryParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/CanaryParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/GA20181120",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/GA20181120"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HanaOnAzure/features/noAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HanaOnAzure/noAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/DedicatedHsmEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/DedicatedHsmEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/deploymentVerification",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/deploymentVerification"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/drillVerification",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/drillVerification"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/UseDogfoodHsmAdminPlane",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/UseDogfoodHsmAdminPlane"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/HybridComputePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/HybridComputePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.hybridcompute/features/HybridComputeExtensionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.hybridcompute/HybridComputeExtensionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/HybridRPCanary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/HybridRPCanary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridData/features/PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridData/PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/AIMONEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/AIMONEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/actiongrouptestinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/actiongrouptestinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/azurehealthlimitedpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/azurehealthlimitedpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/azurehealthpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/azurehealthpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/baseline-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/baseline-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/baseline-dogfood",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/baseline-dogfood"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/billingv3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/billingv3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/diagnosticsettingpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/diagnosticsettingpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/customMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/customMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableCCAN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableCCAN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/EnableCHNRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/EnableCHNRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableCID",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableCID"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/EnableNOERegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/EnableNOERegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/EnableNOWRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/EnableNOWRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableSEA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableSEA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/EnableSEAURegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/EnableSEAURegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableSUK",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableSUK"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableWestUS2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableWestUS2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/metricalertprivatepreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/metricalertprivatepreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/metricalertmultidimprivatepreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/metricalertmultidimprivatepreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/NotificationRulePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/NotificationRulePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/NotificationGroupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/NotificationGroupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/ScheduledQueryRulesPROD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/ScheduledQueryRulesPROD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/ScheduledQueryRulesAIMON",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/ScheduledQueryRulesAIMON"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/testinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/testinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/testinproductionmdm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/testinproductionmdm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/testinproductionnms",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/testinproductionnms"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTCentral/features/metering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTCentral/metering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTSpaces/features/CanaryCustomers",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTSpaces/CanaryCustomers"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTSpaces/features/MVP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTSpaces/MVP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IotSpaces/features/PPECustomers",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IotSpaces/PPECustomers"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IotSpaces/features/PreviewCustomers",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IotSpaces/PreviewCustomers"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTSpaces/features/ScaleTestCustomers",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTSpaces/ScaleTestCustomers"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KeyVault/features/EventGridPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KeyVault/EventGridPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KeyVault/features/HSMPoolEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KeyVault/HSMPoolEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kona/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kona/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kona/features/betaAccess2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kona/betaAccess2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kubernetes/features/previewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kubernetes/previewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KubernetesConfiguration/features/sourceControlConfiguration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KubernetesConfiguration/sourceControlConfiguration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/AllowSwitzerlandNorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/AllowSwitzerlandNorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseSharedIdentities",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseSharedIdentities"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.LabServices/features/DevInProdIntegration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.LabServices/DevInProdIntegration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/AllowCrossSubscriptionGatewayAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/AllowCrossSubscriptionGatewayAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/AmeProjectionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/AmeProjectionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/AllowUnlimitedLogicApps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/AllowUnlimitedLogicApps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/FairfaxDemo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/FairfaxDemo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/HostingEnvironmentsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/HostingEnvironmentsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/IsolatedEnvironmentsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/IsolatedEnvironmentsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/IsolatedEnvironmentsPrivateRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/IsolatedEnvironmentsPrivateRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/IsolatedEnvironmentsPreviewDisable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/IsolatedEnvironmentsPreviewDisable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.MachineLearningCompute/features/ViennaPublicPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.MachineLearningCompute/ViennaPublicPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.MachineLearningExperimentation/features/CanaryFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.MachineLearningExperimentation/CanaryFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Maintenance/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Maintenance/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ManagedIdentity/features/EnableSecurityGroups",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ManagedIdentity/EnableSecurityGroups"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ManagedNetwork/features/mncbetaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ManagedNetwork/mncbetaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Microsoft/features/AllowNetworkWatcherAzureReachabilityReport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Microsoft/AllowNetworkWatcherAzureReachabilityReport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Mindaro/features/tip2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Mindaro/tip2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Mindaro/features/tip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Mindaro/tip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/AllowSMB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/AllowSMB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFBackupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFBackupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFGA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFGA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFGATenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFGATenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFNFSv4Preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFNFSv4Preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFReplicationPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFReplicationPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSnapRestorePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSnapRestorePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/managementNicAdmin",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/managementNicAdmin"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/testing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/testing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAcceleratedNetworkingFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAcceleratedNetworkingFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAccessRuleExtendedProperties",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAccessRuleExtendedProperties"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAcceleratedNetworkingForLinux",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAcceleratedNetworkingForLinux"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAllocateOptimizations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAllocateOptimizations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAllocateAsyncValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAllocateAsyncValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAppGwWafBotManagerRuleSet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAppGwWafBotManagerRuleSet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAppGwPerSiteFirewallPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAppGwPerSiteFirewallPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayClientAuthentication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayClientAuthentication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAppGwWafCustomRuleGeoMatch",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAppGwWafCustomRuleGeoMatch"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayLoadDistributionPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayLoadDistributionPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayV2WildcardListener",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayV2WildcardListener"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationSecurityGroups",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationSecurityGroups"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayZonePinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayZonePinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAzureFirewall",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAzureFirewall"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAsgsOnVmScaleSet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAsgsOnVmScaleSet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowBastionHostPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowBastionHostPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowBastionHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowBastionHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowClassicCrossSubscriptionPeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowClassicCrossSubscriptionPeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowBringYourOwnPublicIpAddress",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowBringYourOwnPublicIpAddress"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowCoExistenceAnyOrder",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowCoExistenceAnyOrder"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowCortexExpressRouteGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowCortexExpressRouteGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowCortexGlobalVnetPeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowCortexGlobalVnetPeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowCortexSecurity",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowCortexSecurity"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowDdosProtectionPlan",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowDdosProtectionPlan"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowDisableBgpRouteProgagation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowDisableBgpRouteProgagation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowDestinationServiceEndpoints",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowDestinationServiceEndpoints"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowDSeriesForBrooklyn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowDSeriesForBrooklyn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.network/features/allowERArmProviderPortal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.network/allowERArmProviderPortal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowDynamicRedirectToTestGwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowDynamicRedirectToTestGwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowExpressRoutePorts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowExpressRoutePorts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowExRCrossRegionResourceValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowExRCrossRegionResourceValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowFpgaEnabledClustersFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowFpgaEnabledClustersFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowFrontdoor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowFrontdoor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGlobalCrpHttpClient",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGlobalCrpHttpClient"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGlobalTagsForSql",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGlobalTagsForSql"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGlobalPeeringTransit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGlobalPeeringTransit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGlobalVnetPeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGlobalVnetPeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGlobalTagsForStorage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGlobalTagsForStorage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowHidingCrossSubscriptionResources",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowHidingCrossSubscriptionResources"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGRPeerConnection",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGRPeerConnection"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowILBAllPortsRule",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowILBAllPortsRule"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIntendedPolicies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIntendedPolicies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIntentedPolicies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIntentedPolicies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowInterfaceEndpoints",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowInterfaceEndpoints"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowInternalDelegations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowInternalDelegations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIpTags",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIpTags"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIpGroups",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIpGroups"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIPv6CAOnStandardLB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIPv6CAOnStandardLB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIpv6GlobalReach",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIpv6GlobalReach"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIpv6PrivatePeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIpv6PrivatePeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIPv6VirtualNetwork",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIPv6VirtualNetwork"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowLBPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowLBPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowLBPreviewWave2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowLBPreviewWave2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowLBPreviewWave3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowLBPreviewWave3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowLBSNATallocationPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowLBSNATallocationPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowLoadBalancingOnSecondaryIpConfigs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowLoadBalancingOnSecondaryIpConfigs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMacPreservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMacPreservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMaxPrivateLinkServicesPerLoadBalancerOptimization",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMaxPrivateLinkServicesPerLoadBalancerOptimization"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMultiNicOnVMScaleSet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMultiNicOnVMScaleSet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMultipleAddressPrefixesOnSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMultipleAddressPrefixesOnSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMultipleIpConfigurationsPerNic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMultipleIpConfigurationsPerNic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMutipleAddressPrefixesOnSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMutipleAddressPrefixesOnSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNatGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNatGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetwatcherAzureReachabilityReport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetwatcherAzureReachabilityReport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkIntentPolicies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkIntentPolicies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkProfiles",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkProfiles"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkWatcher",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkWatcher"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkWatcherAzureReachabilityReport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkWatcherAzureReachabilityReport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkWatcherConnectivityCheck",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkWatcherConnectivityCheck"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNfvrpFirewallPolicyPrivate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNfvrpFirewallPolicyPrivate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNfvrpFirewallPolicySlice",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNfvrpFirewallPolicySlice"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNfvrpFirewallPolicyValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNfvrpFirewallPolicyValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNfvrpResourcePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNfvrpResourcePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNfvrpVirtualRouterSlice",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNfvrpVirtualRouterSlice"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowOutboundNatRule",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowOutboundNatRule"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowP2SCortexAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowP2SCortexAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPaaSEndpointAcl",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPaaSEndpointAcl"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPingMesh",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPingMesh"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPreflightValidation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPreflightValidation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrepareNetworkPoliciesAction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrepareNetworkPoliciesAction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrivateAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrivateAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrivateEndpoints",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrivateEndpoints"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrivateLinkServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrivateLinkServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPseudoClientAppId",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPseudoClientAppId"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPublicIpMobility",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPublicIpMobility"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPublicIPOnVMScaleSetVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPublicIPOnVMScaleSetVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPublicIpPrefix",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPublicIpPrefix"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPublicIpsAndLoadBalancingOnSecondaryIpConfigsInVMScaleSet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPublicIpsAndLoadBalancingOnSecondaryIpConfigsInVMScaleSet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToApplicationGatewayBvt1Gwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToApplicationGatewayBvt1Gwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteBvt2Gwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteBvt2Gwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteBvt3Gwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteBvt3Gwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteCPGwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteCPGwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteDPGwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteDPGwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteMXGwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteMXGwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectGwmCallsToExpressRouteRSGwm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectGwmCallsToExpressRouteRSGwm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRedirectMaps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRedirectMaps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRegionalGatewayManagerForSecureGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRegionalGatewayManagerForSecureGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRegionalVMSSVirtualNetworkGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRegionalVMSSVirtualNetworkGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRouteServiceAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRouteServiceAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRouteTables",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRouteTables"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRoutingPreferenceFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRoutingPreferenceFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRPGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRPGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSecureVnets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSecureVnets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowServiceEndpointPolicies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowServiceEndpointPolicies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSingleNicAndMultiNicInSameAvailabilitySet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSingleNicAndMultiNicInSameAvailabilitySet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowStandardLBOutboundRulesPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowStandardLBOutboundRulesPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowStaticPublicIpAsInstanceIp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowStaticPublicIpAsInstanceIp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSubnetDelegation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSubnetDelegation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSubscriptionMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSubscriptionMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowThrottleCrpOperations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowThrottleCrpOperations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVirtualNetworkTap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVirtualNetworkTap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVMsFromDifferentVnetsOnAvailabilitySet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVMsFromDifferentVnetsOnAvailabilitySet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVMSSVirtualNetworkGateway",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVMSSVirtualNetworkGateway"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVmssHealthProbe",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVmssHealthProbe"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVnetPeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVnetPeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVnetGatewayOpenVpnProtocol",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVnetGatewayOpenVpnProtocol"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.network/features/AllowVpnclientIpsecPoliciesSet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.network/AllowVpnclientIpsecPoliciesSet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/armApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/armApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/azurednspreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/azurednspreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/CloudDnsAliasPortalTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/CloudDnsAliasPortalTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/CloudDnsBdmProd",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/CloudDnsBdmProd"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/CloudDnsBdmPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/CloudDnsBdmPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/CloudDnsReleaseCandidate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/CloudDnsReleaseCandidate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/DisableNetworkWatcherAutocreation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/DisableNetworkWatcherAutocreation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/CloudDnsThrottling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/CloudDnsThrottling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableDdosProtectionPlanBilling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableDdosProtectionPlanBilling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableOperationBatching",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableOperationBatching"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableTenantNoSyncLock",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableTenantNoSyncLock"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableTenantOperationBatching",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableTenantOperationBatching"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableValidationInBackgroundTask",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableValidationInBackgroundTask"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/HybridRegionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/HybridRegionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ExrGwGatewaySubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ExrGwGatewaySubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/InternetAnalyzerPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/InternetAnalyzerPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/isVMSSVirtualNetworkGatewayAllowed",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/isVMSSVirtualNetworkGatewayAllowed"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/PrivateDnsGcpPPE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/PrivateDnsGcpPPE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/PrivateDnsGcpDaily",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/PrivateDnsGcpDaily"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/SkipPseudoVipGeneration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/SkipPseudoVipGeneration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/SecureGwGatewaySubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/SecureGwGatewaySubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ThrottleArmOperationsRnm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ThrottleArmOperationsRnm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/TestFlag",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/TestFlag"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/TrafficManagerHeatMap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/TrafficManagerHeatMap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Netwotk/features/AllowGlobalPeeringTransit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Netwotk/AllowGlobalPeeringTransit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NotificationHubs/features/NHubMetrics",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NotificationHubs/NHubMetrics"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.OperationalInsights/features/LAClusterApiEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.OperationalInsights/LAClusterApiEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.OperationalInsights/features/SwitzerlandRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.OperationalInsights/SwitzerlandRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowCarrierInterconnect",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowCarrierInterconnect"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowDirectInterconnect",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowDirectInterconnect"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowCDNInterconnect",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowCDNInterconnect"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowDirectPeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowDirectPeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowExchangeInterconnect",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowExchangeInterconnect"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowPeeringService",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowPeeringService"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Peering/features/AllowExchangePeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Peering/AllowExchangePeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/AKS-DataPlaneAutoApprove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/AKS-DataPlaneAutoApprove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/Insights",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/Insights"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/Events",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/Events"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/States",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/States"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Project/features/tip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Project/tip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/32DiskBackupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/32DiskBackupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/AzureFileShareBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/AzureFileShareBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/BackupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/BackupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/BlockedFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/BlockedFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/CrossRegionRestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/CrossRegionRestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/HanaBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/HanaBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/InstantBackupandRecovery",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/InstantBackupandRecovery"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/ItemLevelRecovery",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/ItemLevelRecovery"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/LargeDiskVMBackupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/LargeDiskVMBackupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/MABAlertingFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/MABAlertingFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/MercuryAutoProtection",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/MercuryAutoProtection"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/PPEAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/PPEAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/PremiumStorageBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/PremiumStorageBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/RecoveryServicesCanada",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/RecoveryServicesCanada"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/RecoveryServicesBeta",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/RecoveryServicesBeta"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/RecoveryServicesResourceMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/RecoveryServicesResourceMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/RecoveryServicesUK",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/RecoveryServicesUK"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/RecoveryServicesWUS2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/RecoveryServicesWUS2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/ResourceGraphSyncEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/ResourceGraphSyncEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/WorkloadBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/WorkloadBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RemoteApp/features/CspTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RemoteApp/CspTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RemoteApp/features/PrivacyEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RemoteApp/PrivacyEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RemoteApp/features/ple",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RemoteApp/ple"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resouces/features/EUAPParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resouces/EUAPParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RemoteApp/features/privatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RemoteApp/privatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ResourceHealth/features/Stage3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ResourceHealth/Stage3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AllowInternalDelegations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AllowInternalDelegations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/ARMDisableResourcesPerRGLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/ARMDisableResourcesPerRGLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/ARMLimitx2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/ARMLimitx2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AvailabilityZonePeering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AvailabilityZonePeering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AvailabilityZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AvailabilityZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/DataControlAgreement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/DataControlAgreement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/EUAPParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/EUAPParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/FairfaxDemo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/FairfaxDemo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/GermanyNorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/GermanyNorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/GermanyRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/GermanyRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/GermanyWestCentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/GermanyWestCentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/mandatoryRetentionPeriodEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/mandatoryRetentionPeriodEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/NorwayEast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/NorwayEast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/NorwayRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/NorwayRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/NorwayWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/NorwayWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/SouthAfricaRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/SouthAfricaRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.resources/features/SwitzerlandNorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.resources/SwitzerlandNorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/SwitzerlandRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/SwitzerlandRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.resources/features/SwitzerlandWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.resources/SwitzerlandWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/TestFlag",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/TestFlag"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/ThrottledSubscriptions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/ThrottledSubscriptions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/UAERegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/UAERegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Saas/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Saas/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/AdvancedThreatProtection",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/AdvancedThreatProtection"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/ApplicationWhitelisting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/ApplicationWhitelisting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/ApplicationWhiteliting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/ApplicationWhiteliting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/appwhitelistingaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/appwhitelistingaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.security/features/Assessments",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.security/Assessments"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/CoreDev1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/CoreDev1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/Dev1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/Dev1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/Dev2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/Dev2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/Dev3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/Dev3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/discoveredSecuritySolutions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/discoveredSecuritySolutions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/externalSecuritySolutions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/externalSecuritySolutions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/Integration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/Integration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/jitnac-dev2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/jitnac-dev2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/jitnac-dev3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/jitnac-dev3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/jitnac-int",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/jitnac-int"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/jitnac-rome3int",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/jitnac-rome3int"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/jitvmaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/jitvmaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/NacJIT",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/NacJIT"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.security/features/NetworkData",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.security/NetworkData"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/networkMap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/networkMap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/northSouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/northSouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/PricingBundles",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/PricingBundles"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/ShzadaTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/ShzadaTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/VaGrayLabel",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/VaGrayLabel"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/WindowsDefenderAtp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/WindowsDefenderAtp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SerialConsole/features/PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SerialConsole/PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/seabreezePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/seabreezePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/seabreezePrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/seabreezePrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/serviceFabricEngineering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/serviceFabricEngineering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/serviceFabricStageAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/serviceFabricStageAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabricMesh/features/seabreezePrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabricMesh/seabreezePrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabricMesh/features/serviceFabricEngineering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabricMesh/serviceFabricEngineering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Services/features/RPSaaSPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Services/RPSaaSPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SignalR/features/betaaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SignalR/betaaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SignalRService/features/betaaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SignalRService/betaaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Solutions/features/ApplianceEastUS2EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Solutions/ApplianceEastUS2EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Solutions/features/ApplianceMultiRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Solutions/ApplianceMultiRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Solutions/features/AppliancePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Solutions/AppliancePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Solutions/features/ApplicationGA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Solutions/ApplicationGA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/4tbpool",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/4tbpool"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/4TBOption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/4TBOption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/dataSync",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/dataSync"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/dataeditor-publicpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/dataeditor-publicpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/dw-asa",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/dw-asa"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/ExternalTdeCertificate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/ExternalTdeCertificate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/firewall-enforce-azure-policy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/firewall-enforce-azure-policy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/hyperscale-publicpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/hyperscale-publicpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/IndexAdvisor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/IndexAdvisor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/IndexAdvisorPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/IndexAdvisorPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/IndexAdvisorPublic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/IndexAdvisorPublic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/LongTermRetention",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/LongTermRetention"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/LongTermRetentionV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/LongTermRetentionV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/ManagedInstancePublic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/ManagedInstancePublic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/multiaz-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/multiaz-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/multiaz-test",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/multiaz-test"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/pesto",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/pesto"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/pesto-lite",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/pesto-lite"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/queryeditor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/queryeditor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/queryeditor-publicpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/queryeditor-publicpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/queryeditor-webqueryendpoint",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/queryeditor-webqueryendpoint"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/QueryPerformanceInsightPublic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/QueryPerformanceInsightPublic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/serverless-publicpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/serverless-publicpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/SQL-DW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/SQL-DW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-4tb-publicpreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-4tb-publicpreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-ActiveDirectoryAdmin",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-ActiveDirectoryAdmin"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/sqldb-addonstorage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/sqldb-addonstorage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-ElasticJobs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-ElasticJobs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-elasticpool",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-elasticpool"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-fsv2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-fsv2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-higherStandardPerDbDtu",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-higherStandardPerDbDtu"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-JobAccounts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-JobAccounts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-mseries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-mseries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-premiumrs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-premiumrs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldb-vcoremodel",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldb-vcoremodel"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldbsterling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldbsterling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/sqldbtde",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/sqldbtde"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/tdeAkvIntegration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/tdeAkvIntegration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/ADLSGen1Shim",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/ADLSGen1Shim"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/adlsgen2BlobInterop",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/adlsgen2BlobInterop"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowADFS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowADFS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowArchive",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowArchive"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowHNS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowHNS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowLinuxOptimizedShares",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowLinuxOptimizedShares"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.storage/features/AllowNFSV3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.storage/AllowNFSV3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowSharedIdentities",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowSharedIdentities"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowStorageV1Accounts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowStorageV1Accounts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowTargetStampSpecification",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowTargetStampSpecification"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/armApiPreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/armApiPreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/BlobIndex",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/BlobIndex"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/BlobQuery",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/BlobQuery"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/Changefeed",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/Changefeed"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.storage/features/ContainerSoftDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.storage/ContainerSoftDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/CustomerControlledFailover",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/CustomerControlledFailover"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/EncryptionAtRest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/EncryptionAtRest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.storage/features/jurobins",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.storage/jurobins"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/LivesiteThrottling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/LivesiteThrottling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/ObjectReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/ObjectReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/premiumblob",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/premiumblob"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.storage/features/PremiumHns",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.storage/PremiumHns"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/RestoreBlobRanges",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/RestoreBlobRanges"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/Tags",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/Tags"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/version",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/version"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/Versioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/Versioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/XArchive",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/XArchive"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorageCache/features/generalAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorageCache/generalAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.storagereplication/features/SOS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.storagereplication/SOS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/betaAcess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/betaAcess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/EnableUnsupportedGeo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/EnableUnsupportedGeo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/StorSimpleGardaIbizaInGA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/StorSimpleGardaIbizaInGA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/StorSimpleGardaIbizaMigrated",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/StorSimpleGardaIbizaMigrated"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/ASA_NewRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/ASA_NewRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/ProdWestUSX",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/ProdWestUSX"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TimeSeriesInsights/features/extendedCapacityAndRetention",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TimeSeriesInsights/extendedCapacityAndRetention"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TimeSeriesInsights/features/previewV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TimeSeriesInsights/previewV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Token/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Token/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Uic/features/uxdevelopment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Uic/uxdevelopment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VirtualMachineImages/features/CanaryAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VirtualMachineImages/CanaryAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VirtualMachineImages/features/VirtualMachineTemplatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VirtualMachineImages/VirtualMachineTemplatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VisualStudio/features/ExtensionResource",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VisualStudio/ExtensionResource"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/CloudSimpleRP1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/CloudSimpleRP1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp11",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp11"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp12",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp12"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/CloudSimpleRP16",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/CloudSimpleRP16"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp17",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp17"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp18",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp18"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/cloudSimpleRp3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/cloudSimpleRp3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.vmwarecloudsimple/features/eastus-devtest-bl31",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.vmwarecloudsimple/eastus-devtest-bl31"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-01",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-01"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-02",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-02"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-03",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-03"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-04",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-04"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-05",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-05"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-06",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-06"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-07",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-07"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-azure-eastus-devtest-08",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-azure-eastus-devtest-08"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-devtest-virt-01",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-devtest-virt-01"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-devtest-virt-02",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-devtest-virt-02"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-01",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-01"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-02",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-02"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-03",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-03"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-04",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-04"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-05",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-05"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-06",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-06"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-07",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-07"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-08",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-08"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-09",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-09"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-10",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-10"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-11",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-11"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-12",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-12"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-13",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-13"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-14",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-14"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-15",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-15"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-16",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-16"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-17",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-17"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-18",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-18"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-19",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-19"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-20",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-20"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-23",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-23"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-24",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-24"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-25",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-25"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-26",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-26"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-27",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-27"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-28",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-28"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-30",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-30"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-31",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-31"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-32",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-32"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-33",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-33"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-34",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-34"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-37",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-37"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-38",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-38"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-39",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-39"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-40",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-40"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-41",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-41"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-42",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-42"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-43",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-43"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-44",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-44"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-45",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-45"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-46",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-46"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-47",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-47"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-48",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-48"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-49",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-49"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-50",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-50"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-51",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-51"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-52",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-52"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-53",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-53"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-54",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-54"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-57",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-57"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-59",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-59"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-61",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-61"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-62",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-62"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-63",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-63"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-64",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-64"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-65",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-65"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-66",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-66"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-67",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-67"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-68",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-68"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-69",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-69"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-70",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-70"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-71",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-71"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-72",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-72"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-73",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-73"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-74",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-74"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-77",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-77"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-78",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-78"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/env-cs-westus-devtest-79",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/env-cs-westus-devtest-79"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/env-cs-westus-devtest-80",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/env-cs-westus-devtest-80"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/env-cs-westus-devtest-81",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/env-cs-westus-devtest-81"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/env-cs-westus-devtest-82",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/env-cs-westus-devtest-82"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/env-cs-westus-devtest-83",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/env-cs-westus-devtest-83"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/env-cs-westus-devtest-84",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/env-cs-westus-devtest-84"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/expire-on-7-25-19",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/expire-on-7-25-19"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/itops-he",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/itops-he"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/kiev-test-demo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/kiev-test-demo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/multi-region-1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/multi-region-1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/multi-region-2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/multi-region-2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/multi-region-3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/multi-region-3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/multi-region-4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/multi-region-4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/mustEmitFractions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/mustEmitFractions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/mustEmitNone",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/mustEmitNone"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/mustEmitOnes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/mustEmitOnes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/mustEmitZeros",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/mustEmitZeros"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/stg-csos",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/stg-csos"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/subscriptionsWhiteList",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/subscriptionsWhiteList"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMWareCloudSimple/features/westeurope-test",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMWareCloudSimple/westeurope-test"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/westus-he-test",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/westus-he-test"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.VMwareCloudSimple/features/westus-maas",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.VMwareCloudSimple/westus-maas"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/ASEInEastUS2EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/ASEInEastUS2EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/AustraliaCentral2RegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/AustraliaCentral2RegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/AustraliaCentralRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/AustraliaCentralRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/AustraliaEastRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/AustraliaEastRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/AustraliaSouthEastRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/AustraliaSouthEastRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/BrazilSouthRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/BrazilSouthRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CanadaCentralRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CanadaCentralRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CanadaEastRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CanadaEastRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CentralIndiaRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CentralIndiaRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CentralUSEUAPRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CentralUSEUAPRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CentralUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CentralUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EastAsiaRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EastAsiaRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EastAsiaStageRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EastAsiaStageRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EastUS2EUAPRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EastUS2EUAPRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EastUS2RegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EastUS2RegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EventGridIntegration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EventGridIntegration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/FranceCentralRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/FranceCentralRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/FranceSouthRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/FranceSouthRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/JapanEastRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/JapanEastRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/JapanWestRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/JapanWestRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/KoreaCentralRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/KoreaCentralRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/KoreaSouthRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/KoreaSouthRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/NorthCentralUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/NorthCentralUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/NorthEuropeRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/NorthEuropeRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/PinnedToGlobalEndpoint",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/PinnedToGlobalEndpoint"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/RegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/RegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/SouthCentralUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/SouthCentralUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/SouthEastAsiaRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/SouthEastAsiaRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/SouthIndiaRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/SouthIndiaRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/TestFeatureRegistration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/TestFeatureRegistration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/UAECentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/UAECentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/UKSouthRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/UKSouthRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/UKWestRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/UKWestRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/Undelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/Undelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/UseTipForTopLevelProxyOnlyApis",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/UseTipForTopLevelProxyOnlyApis"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/WestCentralUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/WestCentralUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/WestIndiaRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/WestIndiaRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/WestUS2RegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/WestUS2RegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/WestUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/WestUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.WindowsIoT/features/DevelopmentEnvironmentAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.WindowsIoT/DevelopmentEnvironmentAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.WindowsIoT/features/WcusAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.WindowsIoT/WcusAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Xrm/features/uxdevelopment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Xrm/uxdevelopment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowObjectReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowObjectReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ESXiDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ESXiDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowNfsFileShares",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowNfsFileShares"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/WorkloadBackupSoftDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/WorkloadBackupSoftDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/PrivateClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/PrivateClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/PrivateClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/PrivateClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AROPrivateClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AROPrivateClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/MSvDedicatedHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/MSvDedicatedHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/GermanyNorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/GermanyNorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/IsHybridServicesTestSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/IsHybridServicesTestSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/BlockCustomerManagedKey",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/BlockCustomerManagedKey"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AllowLinkedNotificationsToHiddenRP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AllowLinkedNotificationsToHiddenRP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowAccountEncryptionKeyForQueues",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowAccountEncryptionKeyForQueues"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowAccountEncryptionKeyForTables",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowAccountEncryptionKeyForTables"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/NorwayWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/NorwayWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.EventGrid/features/PartnerOperations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.EventGrid/PartnerOperations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Blockchain/features/WCUSParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Blockchain/WCUSParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableComputeOnlyUpdates",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableComputeOnlyUpdates"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/StaticSitesEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/StaticSitesEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kubernetes/features/ppeAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kubernetes/ppeAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AAD-V2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AAD-V2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/privateip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/privateip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/privateip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/privateip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/privateip",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/privateip"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/managedClustersTestRegionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/managedClustersTestRegionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/EarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/EarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SyncBookmark",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SyncBookmark"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/LAOnboarding",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/LAOnboarding"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DCSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DCSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/XLargeDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/XLargeDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DV3Sizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DV3Sizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLG6",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLG6"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLDW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLDW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGZ",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGZ"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLGM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLGM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQLACC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQLACC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SQL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SQL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/DDAGen5",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/DDAGen5"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ASeriesInternal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ASeriesInternal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Nested",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Nested"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Dv2Internal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Dv2Internal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TimeSeriesInsights/features/Staging",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TimeSeriesInsights/Staging"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKSNetworkModePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKSNetworkModePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.BlockchainTokens/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.BlockchainTokens/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/ossazureactivedirectoryadmin",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/ossazureactivedirectoryadmin"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNVAInVHub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNVAInVHub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevSpaces/features/Helm3Preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevSpaces/Helm3Preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TEST2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TEST2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/INT-APROVED",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/INT-APROVED"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/SpotPoolPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/SpotPoolPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenshift/features/INT-APPROVED",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenshift/INT-APPROVED"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureData/features/azurearcprivatepreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureData/azurearcprivatepreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-NewAPIVersion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-NewAPIVersion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayV2UrlRewrite",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayV2UrlRewrite"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBox/features/HongKongBoxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBox/HongKongBoxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBox/features/IndiaBoxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBox/IndiaBoxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.vmwarecloudsimple/features/new-region-test-client",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.vmwarecloudsimple/new-region-test-client"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnablePrivateLink",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnablePrivateLink"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/AllowGenevaObtainer",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/AllowGenevaObtainer"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/MPAWorm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/MPAWorm"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/AllowMoveDatabase",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/AllowMoveDatabase"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.network/features/EnableRnmCallback",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.network/EnableRnmCallback"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/PartitionedDns",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/PartitionedDns"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Containerservice/features/AKS-AzurePolicyV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Containerservice/AKS-AzurePolicyV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SQL/features/multiaz-gp-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SQL/multiaz-gp-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFBackupOperator",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFBackupOperator"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFTierChange",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFTierChange"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFFlexPool",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFFlexPool"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSnapshotPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSnapshotPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NotificationHubs/features/germanyWestCentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NotificationHubs/germanyWestCentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/MetricAPI",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/MetricAPI"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/vnetLocationCheckBypass",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/vnetLocationCheckBypass"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ARM.AFEC/features/multiaz-gp-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ARM.AFEC/multiaz-gp-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/AIWorkspacePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/AIWorkspacePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerRegistry/features/TasksPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerRegistry/TasksPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/UseCustomizedUbuntuPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/UseCustomizedUbuntuPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/DevFedRAMP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/DevFedRAMP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/StagingFedRAMP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/StagingFedRAMP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/ProdFedRAMP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/ProdFedRAMP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Providerhub/features/FeaturePutApi",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Providerhub/FeaturePutApi"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TerraformOSS/features/EnableTerraform",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TerraformOSS/EnableTerraform"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Mv2SmallSizeSeries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Mv2SmallSizeSeries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TerraformOSS/features/EnableTerraformWithWhitelistedTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TerraformOSS/EnableTerraformWithWhitelistedTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AnmPRFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AnmPRFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorMultiFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorMultiFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMOrchestratorSingleFD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMOrchestratorSingleFD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/DBEBvtAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/DBEBvtAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevSpaces/features/internalOnly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevSpaces/internalOnly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/BestPracticePrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/BestPracticePrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OSANewUnderlayTesting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OSANewUnderlayTesting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayV1AndV2InSameSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayV1AndV2InSameSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayPrivateLink",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayPrivateLink"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/HnsSnapshot",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/HnsSnapshot"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StorSimple/features/ShowBannerForDeviceUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StorSimple/ShowBannerForDeviceUpdate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedIdentityEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedIdentityEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ResourceHealth/features/EnableKustoClustersRhc",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ResourceHealth/EnableKustoClustersRhc"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/Endpoints",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/Endpoints"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAzureNetworkManager",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAzureNetworkManager"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/PPE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/PPE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/ossdenypublicendpointaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/ossdenypublicendpointaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/ossdenypublicendpointaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/ossdenypublicendpointaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Datadog/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Datadog/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/preproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/preproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAppGwPublicAndPrivateIpOnSamePort",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAppGwPublicAndPrivateIpOnSamePort"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAllocateVMValidationOptimizations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAllocateVMValidationOptimizations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRoutingToTestNfvrpInstance1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRoutingToTestNfvrpInstance1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRoutingToTestNfvrpInstance2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRoutingToTestNfvrpInstance2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRoutingToTestNfvrpInstance3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRoutingToTestNfvrpInstance3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowRoutingToTestNfvrpInstance4",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowRoutingToTestNfvrpInstance4"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBox/features/DataBoxExportAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBox/DataBoxExportAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionO365",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionO365"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/InProgress",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/InProgress"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoReserveActivateInColocation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoReserveActivateInColocation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServicesHub/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServicesHub/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/NodeImageUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/NodeImageUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KeyVault/features/MHSM_HighCapacitySKU",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KeyVault/MHSM_HighCapacitySKU"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMariaDB/features/ossdenypublicendpointaccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMariaDB/ossdenypublicendpointaccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ListOfPinnedFabricClusters",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ListOfPinnedFabricClusters"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.compute/features/NPSSizes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.compute/NPSSizes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/internalEngineering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/internalEngineering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/SaveAROTestConfig",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/SaveAROTestConfig"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/USSTAGESCParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/USSTAGESCParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionDM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionDM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionEngine",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionEngine"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionCM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionCM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionDM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionDM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionCM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionCM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionEngine",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionEngine"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/TestDFInProduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/TestDFInProduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IndustryDataLifecycle/features/Microsoft.AIDLS.Service",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IndustryDataLifecycle/Microsoft.AIDLS.Service"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/aropreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/aropreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNsgAndRouteTableOnBMDelegatedSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNsgAndRouteTableOnBMDelegatedSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowFirewallPremium",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowFirewallPremium"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ChangeAnalysis/features/NotificationsPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ChangeAnalysis/NotificationsPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowRequireInfrastructureEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowRequireInfrastructureEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/armApiInternalAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/armApiInternalAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-IngressApplicationGatewayAddon",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-IngressApplicationGatewayAddon"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EncryptionAtHost",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EncryptionAtHost"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/Gen2VMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/Gen2VMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/DisableDeploymentGrooming",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/DisableDeploymentGrooming"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/BastionFeaturesEnableKerberos",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/BastionFeaturesEnableKerberos"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Synapse/features/SparkCatalogInSAS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Synapse/SparkCatalogInSAS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowSMBMultichannel",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowSMBMultichannel"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KeyVault/features/RbacAuthorizationPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KeyVault/RbacAuthorizationPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Wandisco.Fusion/features/LiveDataMigrator",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Wandisco.Fusion/LiveDataMigrator"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Wandisco.Fusion/features/LiveDataPlane",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Wandisco.Fusion/LiveDataPlane"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Wandisco.Fusion/features/LiveDataPlatform",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Wandisco.Fusion/LiveDataPlatform"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/AllowRequireInfrastructureEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/AllowRequireInfrastructureEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ChangeAnalysis/features/ResourceChangesPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ChangeAnalysis/ResourceChangesPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/TrustedVMBackfillEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/TrustedVMBackfillEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/EnableApiConnectionKeys",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/EnableApiConnectionKeys"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/MaxSurgePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/MaxSurgePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AZ_germanywestcentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AZ_germanywestcentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AAD/features/testAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AAD/testAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/OpenShiftSupportGate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/OpenShiftSupportGate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowBringYourOwnIpAddressForThirdParties",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowBringYourOwnIpAddressForThirdParties"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowVipswap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowVipswap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableAzureRBACPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableAzureRBACPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Confluent/features/confluentOrgAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Confluent/confluentOrgAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.securitygraph/features/IsgAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.securitygraph/IsgAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ProximityPlacementGroupPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ProximityPlacementGroupPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSubscriptionLoadBalancerCaching",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSubscriptionLoadBalancerCaching"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCollaboration/features/devEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCollaboration/devEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.hybridnetwork/features/allowVnfVendor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.hybridnetwork/allowVnfVendor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.hybridnetwork/features/allowVnfCustomer",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.hybridnetwork/allowVnfCustomer"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.HybridNetwork/features/HybridNetworkRPaaSRegistration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.HybridNetwork/HybridNetworkRPaaSRegistration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Notebooks/features/AzureNBDevTestTraffic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Notebooks/AzureNBDevTestTraffic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchSubscriptionPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchSubscriptionPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/orcastls",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/orcastls"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/orcastls",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/orcastls"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMariaDB/features/orcastls",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMariaDB/orcastls"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableEncryptionAtHostPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableEncryptionAtHostPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableAzureDiskFileCSIDriver",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableAzureDiskFileCSIDriver"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/PPE-NEU",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/PPE-NEU"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/JediBetaTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/JediBetaTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMariaDB/features/largeStorage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMariaDB/largeStorage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/SQLInVMPresenceVisibility",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/SQLInVMPresenceVisibility"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/useContainerd",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/useContainerd"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/ContainerRuntime",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/ContainerRuntime"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/JediBetaTestAntares",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/JediBetaTestAntares"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/GPUDedicatedVHDPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/GPUDedicatedVHDPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/MicrosoftRRDCLab1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/MicrosoftRRDCLab1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/westus2mockedge",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/westus2mockedge"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Notebooks/features/AzureNBCanaryTraffic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Notebooks/AzureNBCanaryTraffic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-OMSAppMonitoring",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-OMSAppMonitoring"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/LogSearchAlertsV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/LogSearchAlertsV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBI/features/DailyPrivateLinkServicesForPowerBI",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBI/DailyPrivateLinkServicesForPowerBI"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/ResourceMoveAllowed",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/ResourceMoveAllowed"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CopyV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CopyV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/MabAfecTestEv2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/MabAfecTestEv2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Authorization/features/PolicyExemptionPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Authorization/PolicyExemptionPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ApiManagement/features/dummyfeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ApiManagement/dummyfeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSTOnBMDelegatedSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSTOnBMDelegatedSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/UserAssignedIdentityPreviewInternalTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/UserAssignedIdentityPreviewInternalTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KubernetesConfiguration/features/AKS-GitOps-FeatureFlag",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KubernetesConfiguration/AKS-GitOps-FeatureFlag"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CloudServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CloudServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/attestations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/attestations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableUltraSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableUltraSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMoreASPerLBfWithoutVMSS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMoreASPerLBfWithoutVMSS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithConfigurableRepairActions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithConfigurableRepairActions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/EV2TestAFECFlag",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/EV2TestAFECFlag"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/UseCustomizedContainerRuntime",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/UseCustomizedContainerRuntime"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AzureEdgeZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AzureEdgeZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ImportExport/features/SouthAfricaNorthAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ImportExport/SouthAfricaNorthAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowWorkloadTypeOnBM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowWorkloadTypeOnBM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.cdn/features/EnablePrivateLink",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.cdn/EnablePrivateLink"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AZ_brazilsouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AZ_brazilsouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SystemPriorityCopy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SystemPriorityCopy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Swiftlet/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Swiftlet/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/UserAssignedIdentityPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/UserAssignedIdentityPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Codespaces/features/CanaryUSEC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Codespaces/CanaryUSEC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisk512E",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisk512E"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resiliency/features/PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resiliency/PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IntelligentITDigitalTwin/features/AccessControl",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IntelligentITDigitalTwin/AccessControl"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.D365CustomerInsights/features/enableAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.D365CustomerInsights/enableAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetappInfraOnBM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetappInfraOnBM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.migrate/features/TestFeatureEV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.migrate/TestFeatureEV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFDoubleEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFDoubleEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGPhaseScaleOutCopies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGPhaseScaleOutCopies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSharing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSharing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-GitOps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-GitOps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/NewRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/NewRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/FastPathEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/FastPathEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.migrate/features/TestFeatureEV2Migrate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.migrate/TestFeatureEV2Migrate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Relay/features/AllowPrivateEndpointProxies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Relay/AllowPrivateEndpointProxies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForwardAzGatewayTags",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForwardAzGatewayTags"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/DataBoxExportHeavyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/DataBoxExportHeavyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.policyinsights/features/checkPolicyRestrictions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.policyinsights/checkPolicyRestrictions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/GCEV2TestFeature001",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/GCEV2TestFeature001"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/DsmsSecrets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/DsmsSecrets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/ManagedClustersPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/ManagedClustersPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/EastUS2EUAPMockEdge",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/EastUS2EUAPMockEdge"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/QueryPacks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/QueryPacks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KubernetesConfiguration/features/Extensions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KubernetesConfiguration/Extensions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/EnableEphemeralOSDiskPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/EnableEphemeralOSDiskPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableDscpConfiguration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableDscpConfiguration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DocumentDB/features/pitr-public-preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DocumentDB/pitr-public-preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/USSTAGEEParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/USSTAGEEParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.FootprintMonitoring/features/FirstPartyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.FootprintMonitoring/FirstPartyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdateInt",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdateInt"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdatePPE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdatePPE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdateCanary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdateCanary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/HnsAppendBlob",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/HnsAppendBlob"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/FixedMaintenanceWindow",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/FixedMaintenanceWindow"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrivateEndpointNSG",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrivateEndpointNSG"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExtendedLocation/features/CustomLocations-pp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExtendedLocation/CustomLocations-pp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExtendedLocation/features/CustomLocations-ppauto",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExtendedLocation/CustomLocations-ppauto"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceFabric/features/spotPriorityServiceFabric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceFabric/spotPriorityServiceFabric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSMBEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSMBEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSMBCAShare",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSMBCAShare"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/EarlyAccessGA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/EarlyAccessGA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Capacity/features/CentrallyManagedLicenses",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Capacity/CentrallyManagedLicenses"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.GuestConfiguration/features/GCEV2TestFeature002",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.GuestConfiguration/GCEV2TestFeature002"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/ossrdbmsinfrastructureencryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/ossrdbmsinfrastructureencryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/ossrdbmsinfrastructureencryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/ossrdbmsinfrastructureencryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMySQL/features/ossrdbmsbyokga",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMySQL/ossrdbmsbyokga"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/ossrdbmsbyokga",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/ossrdbmsbyokga"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Routing-CanaryCentralEUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/Routing-CanaryCentralEUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/SwitzerlandNorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/SwitzerlandNorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCollaboration/features/privatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCollaboration/privatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IndustryDataLifecycle/features/Microsoft.AIDLS.Services.WcusOnly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IndustryDataLifecycle/Microsoft.AIDLS.Services.WcusOnly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IndustryDataLifecycle/features/Microsoft.AIDLS.Services.NonWcus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IndustryDataLifecycle/Microsoft.AIDLS.Services.NonWcus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.MachineLearningServices/features/MFE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.MachineLearningServices/MFE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFMultiOU",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFMultiOU"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFLdapoverTls",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFLdapoverTls"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFLdapExtendedGroups",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFLdapExtendedGroups"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableEastUS2EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableEastUS2EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableJapanWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableJapanWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/EnableAustraliaCentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/EnableAustraliaCentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/PublicPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/PublicPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Contoso/features/RPaaSBridge",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Contoso/RPaaSBridge"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cdn/features/EUAPRunnerRPV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cdn/EUAPRunnerRPV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AutonomousDevelopmentPlatform/features/EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AutonomousDevelopmentPlatform/EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowStorageServiceEncryptionIdentity",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowStorageServiceEncryptionIdentity"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SqlVirtualMachine/features/BulkRegistration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SqlVirtualMachine/BulkRegistration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StoragePool/features/PublicPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StoragePool/PublicPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CustomerLockbox/features/CustomerLockboxFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CustomerLockbox/CustomerLockboxFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ReserveMacOnCreateNic",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ReserveMacOnCreateNic"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowAttributeBasedAccessControl",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowAttributeBasedAccessControl"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSharedAD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSharedAD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/UpdateCenter",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/UpdateCenter"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionKOps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionKOps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionKOps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionKOps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionSE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionSE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionSE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionSE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Chaos/features/PreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Chaos/PreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Chaos/features/SquallTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Chaos/SquallTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Baremetal/features/ClusterStorPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Baremetal/ClusterStorPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestHotPatchVMPreviewRebootless",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestHotPatchVMPreviewRebootless"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.D365CustomerInsights/features/enableMsftAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.D365CustomerInsights/enableMsftAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.D365CustomerInsights/features/enableTip1Access",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.D365CustomerInsights/enableTip1Access"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgresql/features/singleServerHA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgresql/singleServerHA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgresql/features/singleServerCMW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgresql/singleServerCMW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgresql/features/singleServerVnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgresql/singleServerVnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cdn/features/PilotRunnerRPV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cdn/PilotRunnerRPV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cdn/features/RunnerRPV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cdn/RunnerRPV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Cdn/features/RunnerRPV1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Cdn/RunnerRPV1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/RegionsInTesting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/RegionsInTesting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgresql/features/citusComputeScaling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgresql/citusComputeScaling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPreProvisionedVmReuseWithSingleNicAndAccelNet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPreProvisionedVmReuseWithSingleNicAndAccelNet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/EarlyVerify",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/EarlyVerify"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SecurityInsights/features/IncidentsThrottlingTestFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SecurityInsights/IncidentsThrottlingTestFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/EnableSnapshots",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/EnableSnapshots"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForpostgresql/features/citusStorageScaling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForpostgresql/citusStorageScaling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/nsxSimplifiedExperience",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/nsxSimplifiedExperience"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AppAssessment/features/migratePrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AppAssessment/migratePrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFAesEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFAesEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFLdapSigning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFLdapSigning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdatePerf",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdatePerf"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UACDataboxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UACDataboxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.dbformysql/features/singleServerCMW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.dbformysql/singleServerCMW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.dbformysql/features/singleServerVnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.dbformysql/singleServerVnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/BrazilSouthAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/BrazilSouthAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/BRSDataboxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/BRSDataboxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/BRSDiskAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/BRSDiskAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/BRSHeavyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/BRSHeavyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UACHeavyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UACHeavyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UACDiskAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UACDiskAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UAECentralAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UAECentralAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UKSouthAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UKSouthAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UKSDataboxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UKSDataboxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UKSDiskAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UKSDiskAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/UKSHeavyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/UKSHeavyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/SZNHeavyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/SZNHeavyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/SZNDiskAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/SZNDiskAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/SZNDataboxAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/SZNDataboxAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databox/features/SwitzerlandNorthAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databox/SwitzerlandNorthAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFVolumeGroup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFVolumeGroup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforpostgresql/features/singleServerHelpRequest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforpostgresql/singleServerHelpRequest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforMysql/features/singleServerHelpRequest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforMysql/singleServerHelpRequest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/LogicApps-2020-09-RegionsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/LogicApps-2020-09-RegionsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AutonomousDevelopmentPlatform/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AutonomousDevelopmentPlatform/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AKS-OpenServiceMesh",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AKS-OpenServiceMesh"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/MigrateToMSIClusterPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/MigrateToMSIClusterPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGTrustedVM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGTrustedVM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/portalSiteToSiteVpn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/portalSiteToSiteVpn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticRepairsWithVMScaleSetsAtScale",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticRepairsWithVMScaleSetsAtScale"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/MSIPrivateLinkEarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/MSIPrivateLinkEarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/IsCloudManagementEnabledForSub",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/IsCloudManagementEnabledForSub"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/DenyList",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/DenyList"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.resources/features/InternalAzureEdgeZones",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.resources/InternalAzureEdgeZones"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Bing/features/InternalTesting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Bing/InternalTesting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/portalSRMAddon",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/portalSRMAddon"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/DisableVirtualMachineQuota",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/DisableVirtualMachineQuota"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DevTestLab/features/DisableLabVirtualMachineQuota",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DevTestLab/DisableLabVirtualMachineQuota"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Communication/features/PhoneNumberInboundCallingAllowed",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Communication/PhoneNumberInboundCallingAllowed"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/EUAPParticipation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/EUAPParticipation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCollaboration/features/ciEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCollaboration/ciEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCollaboration/features/canaryEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCollaboration/canaryEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataCollaboration/features/intEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataCollaboration/intEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.OpenLogisticsPlatform/features/WorkspacesOperations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.OpenLogisticsPlatform/WorkspacesOperations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFAzureKeyVaultEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFAzureKeyVaultEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/HnsOnMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/HnsOnMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutoOSUpgradeSDPWithGalleryImage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutoOSUpgradeSDPWithGalleryImage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/singleServerHA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/singleServerHA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SignalRService/features/AllowCustomDomainCertificate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SignalRService/AllowCustomDomainCertificate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.securityinsights/features/SatelliteClusterAustralia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.securityinsights/SatelliteClusterAustralia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowAppGwWafPolicyHigherLimits",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowAppGwWafPolicyHigherLimits"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.operationalinsights/features/QueryPacks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.operationalinsights/QueryPacks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/AllowDdv4Sku",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/AllowDdv4Sku"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/NoRollingUpgradeForSFAutoOSUpgrade",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/NoRollingUpgradeForSFAutoOSUpgrade"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseElasticPipelineOptimization",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseElasticPipelineOptimization"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureData/features/ArcDataRPaas",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureData/ArcDataRPaas"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AutoUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AutoUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.AzPE.OptOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.AzPE.OptOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/SQLFixedMaintenanceWindowCanary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/SQLFixedMaintenanceWindowCanary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableResourceLevelLocking",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableResourceLevelLocking"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/isVwanDeploy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/isVwanDeploy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowVendorTestingRedirection",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/AllowVendorTestingRedirection"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureArcData/features/ArcDataRpaasDev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureArcData/ArcDataRpaasDev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/PodSubnetPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/PodSubnetPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AlertsManagement/features/rhartestinproduction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AlertsManagement/rhartestinproduction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnablePodIdentityPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnablePodIdentityPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.AzSM.NewDeployment.Spanning.OptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.AzSM.NewDeployment.Spanning.OptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.operationalinsights/features/EnableQueryPacks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.operationalinsights/EnableQueryPacks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointsRetrieveSAS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointsRetrieveSAS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/flexibleServerReplica",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/flexibleServerReplica"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnableACRTeleport",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnableACRTeleport"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IndustryDataLifecycle/features/CanaryAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IndustryDataLifecycle/CanaryAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/CustomNodeConfigPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/CustomNodeConfigPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.insights/features/basicstandardtest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.insights/basicstandardtest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/EnableRecoveryServicesVaultAmpAlerts",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/EnableRecoveryServicesVaultAmpAlerts"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataProtection/features/BlobOperationalBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataProtection/BlobOperationalBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AFDEUAPRunnerV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AFDEUAPRunnerV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AFDPilotRunnerV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AFDPilotRunnerV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AFDPrivateProductionV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AFDPrivateProductionV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AFDProdRunnerV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AFDProdRunnerV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowServiceChain",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowServiceChain"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowUpdateAddressSpaceInPeeredVnets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowUpdateAddressSpaceInPeeredVnets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/DisableMachinesPerRGLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/DisableMachinesPerRGLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/PreviewRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/PreviewRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.CapacityReservationOptIn",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.CapacityReservationOptIn"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExtendedLocation/features/CustomLocations-int",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExtendedLocation/CustomLocations-int"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/UseCustomizedWindowsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/UseCustomizedWindowsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/UseAKSWindows2004Preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/UseAKSWindows2004Preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DelegatedNetwork/features/ControllerAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DelegatedNetwork/ControllerAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RedHatOpenShift/features/RedHatEngineering",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RedHatOpenShift/RedHatEngineering"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SecurityInsights/features/noIncidentThrottling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SecurityInsights/noIncidentThrottling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SecurityInsights/features/CancelIncidentThrottling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SecurityInsights/CancelIncidentThrottling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.LoadTestService/features/loadTestBetaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.LoadTestService/loadTestBetaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-WestCentralUS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/Allow-WestCentralUS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataBoxEdge/features/SkipDeviceVersionCheckForResourceMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataBoxEdge/SkipDeviceVersionCheckForResourceMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SecurityInsights/features/applyIncidentThrottling",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SecurityInsights/applyIncidentThrottling"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerService/features/AKS-ConfidentialComputingAddon",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerService/AKS-ConfidentialComputingAddon"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnablePrivateClusterFQDNSubdomain",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnablePrivateClusterFQDNSubdomain"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTCentral/features/scootaloo",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTCentral/scootaloo"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/HostReplaceCustomerNotification",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/HostReplaceCustomerNotification"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPremiumSkuLb",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPremiumSkuLb"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMCustomImagePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMCustomImagePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVMPatchModeOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVMPatchModeOverride"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ResourceConnector/features/Appliances-pp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ResourceConnector/Appliances-pp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ResourceConnector/features/Appliances-ppauto",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ResourceConnector/Appliances-ppauto"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutorotationForDiskEncryptionAtRest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutorotationForDiskEncryptionAtRest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PolicyInsights/features/policyStateChangeNotifications",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PolicyInsights/policyStateChangeNotifications"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AnyBuild/features/TestResourceProvider",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AnyBuild/TestResourceProvider"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgresql/features/flexibleServerDeleteFeedback",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgresql/flexibleServerDeleteFeedback"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySql/features/flexibleServerDeleteFeedback",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySql/flexibleServerDeleteFeedback"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/OptimizeCreateDnsCalls",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/OptimizeCreateDnsCalls"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMSSFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMSSFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HealthcareApis/features/Gen2PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HealthcareApis/Gen2PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableMaxPrivateEndpointsVia64kPath",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableMaxPrivateEndpointsVia64kPath"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableHighAvailabilityMode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableHighAvailabilityMode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.EventGrid/features/EventGridPreviewFeatures2021H1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.EventGrid/EventGridPreviewFeatures2021H1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SqlVirtualMachine/features/TestAFECForTPID",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SqlVirtualMachine/TestAFECForTPID"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DbForPostgreSQL/features/MarlinSubscriptionSwitch",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DbForPostgreSQL/MarlinSubscriptionSwitch"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Routing-CanaryEastUS2EUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/Routing-CanaryEastUS2EUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowFileVerlaine",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowFileVerlaine"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFSDNAppliance",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFSDNAppliance"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForpostgresql/features/perfDataReset",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForpostgresql/perfDataReset"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.security/features/iotsolutionmigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.security/iotsolutionmigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AlertsManagement/features/PreviewSmartDetectionsMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AlertsManagement/PreviewSmartDetectionsMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AlertsManagement/features/SmartAlertsTeamExperimentalDetectors",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AlertsManagement/SmartAlertsTeamExperimentalDetectors"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ImportExport/features/KoreaSouthAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ImportExport/KoreaSouthAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.operationalinsights/features/IsTroubleShootEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.operationalinsights/IsTroubleShootEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/GitHub.Enterprise/features/EnableAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "GitHub.Enterprise/EnableAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMApps",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMApps"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/EnableRSVaultSecurityAlertsToAzureMonitor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/EnableRSVaultSecurityAlertsToAzureMonitor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/EnableAzureBackupJobFailureAlertsToAzureMonitor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/EnableAzureBackupJobFailureAlertsToAzureMonitor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataProtection/features/EnableAzureBackupJobFailureAlertsToAzureMonitor",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataProtection/EnableAzureBackupJobFailureAlertsToAzureMonitor"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ManagedResolverPPE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ManagedResolverPPE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Maps/features/betaAccessTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Maps/betaAccessTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTryRestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTryRestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.KubernetesConfiguration/features/ClusterConfigurationAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.KubernetesConfiguration/ClusterConfigurationAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/QAtesting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/QAtesting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SerialConsole.PPE/features/AllowValidationRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SerialConsole.PPE/AllowValidationRegions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/BastionGatewaySubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/BastionGatewaySubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/HnsSoftDeleteFilesFolders",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/HnsSoftDeleteFilesFolders"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceLinker/features/canaryEnable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceLinker/canaryEnable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceLinker/features/EastUS2EUAPEnable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceLinker/EastUS2EUAPEnable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/MatchNatRulePortOffsetToScaleSetVMIndex",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/MatchNatRulePortOffsetToScaleSetVMIndex"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Providers.Test/features/autoApproveTestFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Providers.Test/autoApproveTestFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableBillingOnMseev2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableBillingOnMseev2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableBillingOnBM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableBillingOnBM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Communication/features/ResourceGeoAwareness",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Communication/ResourceGeoAwareness"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Communication/features/StagingGeoAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Communication/StagingGeoAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/RestorePointExcludeDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/RestorePointExcludeDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFFileRestore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFFileRestore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFUserQuota",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFUserQuota"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnableAKSWindowsDSR",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnableAKSWindowsDSR"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/UseAKSWindows2019Preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/UseAKSWindows2019Preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/KubeletDisk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/KubeletDisk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnableAKSWindowsCalico",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnableAKSWindowsCalico"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/BackupCreateVaultWithCmk",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/BackupCreateVaultWithCmk"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnableCloudControllerManager",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnableCloudControllerManager"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Synapse/features/TSQLStreaming",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Synapse/TSQLStreaming"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayDenyOutboundInternet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayDenyOutboundInternet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AZ_uswest3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AZ_uswest3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/LogicApps-Yakima",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/LogicApps-Yakima"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ServiceEndpointPoliciesAliasesOnboarding",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ServiceEndpointPoliciesAliasesOnboarding"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AZ_indiacentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AZ_indiacentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AZ_koreacentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AZ_koreacentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowIpv6CloudService",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowIpv6CloudService"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.MobileNetwork/features/AllowMobileNetworkCustomer",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.MobileNetwork/AllowMobileNetworkCustomer"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdateDev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdateDev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DeviceUpdate/features/AzureDeviceUpdateTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DeviceUpdate/AzureDeviceUpdateTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/MICROSOFT.DATABOXEDGE/features/ASE-CLOUD-MGMT-K8S-PREVIEW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "MICROSOFT.DATABOXEDGE/ASE-CLOUD-MGMT-K8S-PREVIEW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/HANASnapshotBackup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/HANASnapshotBackup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.dbforpostgresql/features/locationCapability",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.dbforpostgresql/locationCapability"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowGatewayLoadBalancer",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowGatewayLoadBalancer"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMNetworkInterfaceConfigurations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMNetworkInterfaceConfigurations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnableAzureKeyvaultSecretsProvider",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnableAzureKeyvaultSecretsProvider"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AKS-ExtensionManager",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AKS-ExtensionManager"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/locationCapability",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/locationCapability"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ConnectedVMwarevSphere/features/ConnectedVMwarePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ConnectedVMwarevSphere/ConnectedVMwarePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/CloudSanExperience",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/CloudSanExperience"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Communication/features/AllowResourceMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Communication/AllowResourceMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/IngestionSettings",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/IngestionSettings"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotBlock",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotBlock"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.testbase/features/EastUS2EUAPEnable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.testbase/EastUS2EUAPEnable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AKS-AzureKeyVaultSecretsProvider",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AKS-AzureKeyVaultSecretsProvider"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/LiveTierChange",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/LiveTierChange"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/VariableResiliency",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/VariableResiliency"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowVRS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowVRS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.operationalinsights/features/storageinsigtenabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.operationalinsights/storageinsigtenabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/drsPlacementPolicy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/drsPlacementPolicy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Devices/features/CosmosDBRoutingEndpointPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Devices/CosmosDBRoutingEndpointPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/EarlyStartVMSSRoleInstances",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/EarlyStartVMSSRoleInstances"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureArcData/features/acreeLicenseProp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureArcData/acreeLicenseProp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.TerraformOSS/features/OwnershipEnforcement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.TerraformOSS/OwnershipEnforcement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridCompute/features/ArcServerPrivateLinkPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridCompute/ArcServerPrivateLinkPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Routing-AllowWestEurope",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/Routing-AllowWestEurope"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/VMScaleSetPinning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/VMScaleSetPinning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/scaleTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/scaleTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Singularity/features/scaleTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Singularity/scaleTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/RunCommandPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/RunCommandPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Sql/features/block-tsql-crud",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Sql/block-tsql-crud"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExtendedLocation/features/CustomLocations-InProgress",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExtendedLocation/CustomLocations-InProgress"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ResourceConnector/features/Appliances-InProgress",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ResourceConnector/Appliances-InProgress"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceLinker/features/EastUSEnable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceLinker/EastUSEnable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kubernetes/features/NewRegionRollOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kubernetes/NewRegionRollOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFChownMode",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFChownMode"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFUnixPermissions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFUnixPermissions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerPlatform/features/enterprisePoliciesPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerPlatform/enterprisePoliciesPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCBR",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCBR"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCBR2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCBR2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationSY",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationSY"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationML",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationML"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCQ",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCQ"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBRSE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBRSE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBRUS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBRUS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationYT",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationYT"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationYQ",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationYQ"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationPN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationPN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationDM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationDM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCDM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCDM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationHK",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationHK"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBL",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBL"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCBN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCBN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationPAR",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationPAR"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationMRS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationMRS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationDEN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationDEN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationDEWC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationDEWC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationKW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationKW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationOS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationOS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationJINC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationJINC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationJINW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationJINW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationSE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationSE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationPS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationPS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCH",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCH"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationDB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationDB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationNOE",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationNOE"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationNOW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationNOW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationJNB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationJNB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCPT",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCPT"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationSN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationSN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationMA",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationMA"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationSG",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationSG"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCHN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCHN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCHW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCHW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationAUH",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationAUH"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationDXB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationDXB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationLN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationLN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationCY",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationCY"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationAM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationAM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBM"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationBY",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationBY"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationMWH",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationMWH"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationUSW3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationUSW3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/FIPSPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/FIPSPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EventgridPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EventgridPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFCoolAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFCoolAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFDualProtocolNFSv4AndSMB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFDualProtocolNFSv4AndSMB"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/customIops",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/customIops"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SecurityAndCompliance/features/PrivateLinksFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SecurityAndCompliance/PrivateLinksFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AgFoodPlatform/features/Microsoft.Farmbeats.Preview.Canary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AgFoodPlatform/Microsoft.Farmbeats.Preview.Canary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraDisksMove",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraDisksMove"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AllowForceDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AllowForceDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ServiceLinker/features/WestCentralUSEnable",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ServiceLinker/WestCentralUSEnable"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ManagedResolver",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ManagedResolver"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AI/features/TestingRetail",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AI/TestingRetail"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ProviderHubDevTest/features/ProviderHubDev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ProviderHubDevTest/ProviderHubDev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CreateOptionClone",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CreateOptionClone"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ForceDeletePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ForceDeletePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/DisablePrivateLinkSubnetMacAllocation",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/DisablePrivateLinkSubnetMacAllocation"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBIDedicated/features/paygdxt",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBIDedicated/paygdxt"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBIDedicated/features/paygdaily",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBIDedicated/paygdaily"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBIDedicated/features/paygsingapore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBIDedicated/paygsingapore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBIDedicated/features/paygbrzsb",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBIDedicated/paygbrzsb"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerBIDedicated/features/paygmsitbcdr",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerBIDedicated/paygmsitbcdr"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/CustomKubeletIdentityPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/CustomKubeletIdentityPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AKSNodelessPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AKSNodelessPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/production",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/production"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Singularity/features/production",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Singularity/production"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HDInsight/features/HiloTestInProd",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HDInsight/HiloTestInProd"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HDInsight/features/HiloPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HDInsight/HiloPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/AzureBackupResourceGuardEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/AzureBackupResourceGuardEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowPremiumObjectReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowPremiumObjectReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/EnableAPIVersion20210401Preview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/EnableAPIVersion20210401Preview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SharedDisksForStandardSSD",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SharedDisksForStandardSSD"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPrivateEndpointStaticIpConfigurations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPrivateEndpointStaticIpConfigurations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFAdAdministrators",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFAdAdministrators"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/OpenAIOnlyStamp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/OpenAIOnlyStamp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/DevControlPlane",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/DevControlPlane"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Databricks/features/StagingControlPlane",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Databricks/StagingControlPlane"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.M365SecurityAndCompliance/features/PrivateLinksFeature",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.M365SecurityAndCompliance/PrivateLinksFeature"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/DataHistoryEarlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/DataHistoryEarlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoAssessmentVMPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoAssessmentVMPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SupportCurrentLinuxAgentOnly",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SupportCurrentLinuxAgentOnly"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.EventGrid/features/June2021Features",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.EventGrid/June2021Features"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationaustraliacentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationaustraliacentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationaustraliacentral2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationaustraliacentral2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationaustraliaeast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationaustraliaeast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationaustraliasoutheast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationaustraliasoutheast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationbrazilsouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationbrazilsouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationbrazilus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationbrazilus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationbrazilsoutheast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationbrazilsoutheast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationcanadacentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationcanadacentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationcanadaeast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationcanadaeast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationcentralindia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationcentralindia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationcentralus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationcentralus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationcentraluseuap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationcentraluseuap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationeastasia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationeastasia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationeastus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationeastus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationeastus2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationeastus2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationeastus2euap",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationeastus2euap"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationfrancecentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationfrancecentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationfrancesouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationfrancesouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationgermanynorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationgermanynorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationgermanywestcentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationgermanywestcentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationjapaneast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationjapaneast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationjapanwest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationjapanwest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationjioindiawest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationjioindiawest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationkoreacentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationkoreacentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationkoreasouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationkoreasouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationnorthcentralus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationnorthcentralus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationnortheurope",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationnortheurope"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationnorwayeast",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationnorwayeast"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationnorwaywest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationnorwaywest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationsouthafricanorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationsouthafricanorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationsouthafricawest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationsouthafricawest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationsouthcentralus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationsouthcentralus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationsouthindia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationsouthindia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationsoutheastasia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationsoutheastasia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationswitzerlandnorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationswitzerlandnorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationswitzerlandwest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationswitzerlandwest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationuaecentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationuaecentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationuaenorth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationuaenorth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationuksouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationuksouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationukwest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationukwest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationwestcentralus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationwestcentralus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationwesteurope",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationwesteurope"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationwestindia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationwestindia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationwestus",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationwestus"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationwestus2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationwestus2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationswedencentral",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationswedencentral"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationswedensouth",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationswedensouth"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/vWANNFVRPMigrationeastusslv",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/vWANNFVRPMigrationeastusslv"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/BrazilUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/BrazilUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/AzureDummyRegion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/AzureDummyRegion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureSphere/features/int",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureSphere/int"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureSphere/features/staging",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureSphere/staging"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzureSphere/features/preprod",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzureSphere/preprod"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/BypassCnameCheckForCustomDomainDeletion",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/BypassCnameCheckForCustomDomainDeletion"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForpostgresql/features/citusShardRebalancing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForpostgresql/citusShardRebalancing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForpostgresql/features/citusCMW",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForpostgresql/citusCMW"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/elevatedScripting",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/elevatedScripting"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowPoliciesOnBaremetal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowPoliciesOnBaremetal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.FluidRelay/features/FluidPrivatePreviewAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.FluidRelay/FluidPrivatePreviewAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/portalCloudLink",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/portalCloudLink"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataProtection/features/AzureBackupResourceGuardEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataProtection/AzureBackupResourceGuardEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/flexibleServerRestoreV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/flexibleServerRestoreV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/flexibleServerRestoreV2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/flexibleServerRestoreV2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Security/features/ConnectedContainerRegistries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Security/ConnectedContainerRegistries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/HighBMSOperations",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/HighBMSOperations"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/nsxPrivateDNS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/nsxPrivateDNS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/prestage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/prestage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/stage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/stage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Singularity/features/stage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Singularity/stage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Singularity/features/prestage",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Singularity/prestage"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/test",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/test"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/flexibleServerFailover",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/flexibleServerFailover"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBforPostgreSQL/features/privateDnsZone",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBforPostgreSQL/privateDnsZone"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Search/features/afecint",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Search/afecint"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/MultiAzDedicatedCluster",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/MultiAzDedicatedCluster"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/InGuestAutoPatchVmssFlexPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/InGuestAutoPatchVmssFlexPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/UpdateAzureRBACPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/UpdateAzureRBACPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/EnablePrivateClusterPublicFQDN",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/EnablePrivateClusterPublicFQDN"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/HTTPProxyConfigPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/HTTPProxyConfigPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/DisableLocalAccountsPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/DisableLocalAccountsPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/UseCustomizedWindowsContainerRuntime",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/UseCustomizedWindowsContainerRuntime"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AppGwMetricLogFromNewStoreTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AppGwMetricLogFromNewStoreTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/AmcsInternal",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/AmcsInternal"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.operationalinsights/features/EnablePreviewFeatures",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.operationalinsights/EnablePreviewFeatures"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/ImmutableStorageWithVersioning",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/ImmutableStorageWithVersioning"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/AllowPurviewPolicyEnforcement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/AllowPurviewPolicyEnforcement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/JobCountPerSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/JobCountPerSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseNrpPutVmssPerTenant",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseNrpPutVmssPerTenant"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/RemoveARMQuotaLimit",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/RemoveARMQuotaLimit"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Search/features/afecint2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Search/afecint2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SpotTerminateScheduledEvent",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SpotTerminateScheduledEvent"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CheckForVMEviction",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CheckForVMEviction"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/earlyAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/earlyAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/hidePostgreSql9.5Version",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/hidePostgreSql9.5Version"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowApplicationGatewayRelaxedOutboundRestrictions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowApplicationGatewayRelaxedOutboundRestrictions"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFEncryptedSMBConnectionsToDC",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFEncryptedSMBConnectionsToDC"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HealthcareApis/features/EastAsia",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HealthcareApis/EastAsia"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowReadingLoadBalancerTenantResourcesBatching",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowReadingLoadBalancerTenantResourcesBatching"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ExtendedLocation/features/CustomLocation-InternalSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ExtendedLocation/CustomLocation-InternalSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Dynamics365Fraudprotection/features/DfpPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Dynamics365Fraudprotection/DfpPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Dynamics365Fraudprotection/features/DfpTest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Dynamics365Fraudprotection/DfpTest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecommendationsService/features/onboarding",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecommendationsService/onboarding"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowNetworkSecurityPerimeter",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowNetworkSecurityPerimeter"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UltraBuiltOut",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UltraBuiltOut"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.compute/features/XLAV3F",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.compute/XLAV3F"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableApplicationGatewayCustomBackendMetrics",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableApplicationGatewayCustomBackendMetrics"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Search/features/EnableZoneRedundancy",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Search/EnableZoneRedundancy"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Diagnostics/features/DiagnosticsDev",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Diagnostics/DiagnosticsDev"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SsdZrsManagedDisks",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SsdZrsManagedDisks"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/AKS-AzureDefenderAddon",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/AKS-AzureDefenderAddon"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AzurePercept/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AzurePercept/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ExpressRoutePrivateEndpointGatewayBypass",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ExpressRoutePrivateEndpointGatewayBypass"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/ExpressRouteVnetPeeringGatewayBypass",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/ExpressRouteVnetPeeringGatewayBypass"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/LegalTerms.Face.PoliceTermsAccepted",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/LegalTerms.Face.PoliceTermsAccepted"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.CognitiveServices/features/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ConfidentialLedger/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ConfidentialLedger/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/EnableFixedSnapshotIntervalReferenceDataLookup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/EnableFixedSnapshotIntervalReferenceDataLookup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/EnablePartitionedReferenceDataLookup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/EnablePartitionedReferenceDataLookup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/EnableFullSnapshotIntervalReferenceDataLookup",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/EnableFullSnapshotIntervalReferenceDataLookup"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Architecture",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Architecture"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGSoftDelete",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGSoftDelete"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFEnableDefaultQuota",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFEnableDefaultQuota"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/GitHub.Enterprise/features/InternalAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "GitHub.Enterprise/InternalAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/GitHub.Enterprise/features/Canary",
+ "type": "Microsoft.Features/providers/features",
+ "name": "GitHub.Enterprise/Canary"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ProviderHub/features/EUAPServiceRP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ProviderHub/EUAPServiceRP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Sig2SigInstantaneous",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Sig2SigInstantaneous"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/showPostgreSql13Version",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/showPostgreSql13Version"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HealthcareApis/features/JapanWest",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HealthcareApis/JapanWest"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/DisableLinkAccessCheckForSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/DisableLinkAccessCheckForSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFLargeVolumes",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFLargeVolumes"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFIPSecForDNS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFIPSecForDNS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFAvsDataStore",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFAvsDataStore"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ApiManagement/features/PreviewEnvironment",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ApiManagement/PreviewEnvironment"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFFileAccessLogs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFFileAccessLogs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFCrossSubscriptionReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFCrossSubscriptionReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/FullBlobReferenceDataRefreshWithFixedInterval",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/FullBlobReferenceDataRefreshWithFixedInterval"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.StreamAnalytics/features/PartitionedBlobReferenceData",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.StreamAnalytics/PartitionedBlobReferenceData"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableSlbBatching",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableSlbBatching"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ContainerInstance/features/customlogger",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ContainerInstance/customlogger"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.IoTSecurity/features/Integration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.IoTSecurity/Integration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableVNetEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableVNetEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/CommunityGalleries",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/CommunityGalleries"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/OmsagentUseAADMSIAuthPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/OmsagentUseAADMSIAuthPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.NetApp/features/ANFStandardZRS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.NetApp/ANFStandardZRS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/vnetSubscription",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/vnetSubscription"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/flexibleServerManageSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/flexibleServerManageSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/flexibleServerManageSubnet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/flexibleServerManageSubnet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/flexibleServerFailover",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/flexibleServerFailover"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ProviderHub/features/CentralUSEUAP",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ProviderHub/CentralUSEUAP"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/CentralUSStageRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/CentralUSStageRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DigitalTwins/features/DataHistoryPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DigitalTwins/DataHistoryPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Insights/features/DiagnosticServicesTokens",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Insights/DiagnosticServicesTokens"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PreprovisioningForEphemeralVMsWithResourceDiffDiskPlacement"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UsePreprovisionedVMsForTrustedVMs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UsePreprovisionedVMsForTrustedVMs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/SkipNetworkIntentPolicies",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/SkipNetworkIntentPolicies"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.PowerPlatform/features/accountPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.PowerPlatform/accountPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/ZRSPremiumPageBlobs",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/ZRSPremiumPageBlobs"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/UseTenantsOfSizeFive",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/UseTenantsOfSizeFive"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGReplicateVMGS",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGReplicateVMGS"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.FluidRelay/features/ManualApprovalAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.FluidRelay/ManualApprovalAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForPostgreSQL/features/privateDnsZoneSuffix",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForPostgreSQL/privateDnsZoneSuffix"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/cmkEncryption",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/cmkEncryption"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/SIGShallowReplication",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/SIGShallowReplication"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/japanwest_geo_pair",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/japanwest_geo_pair"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/microsoftrrdclab2",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/microsoftrrdclab2"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/microsoftrrdclab3",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/microsoftrrdclab3"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/microsoftdclabs1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/microsoftdclabs1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/microsoftb25lab1",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/microsoftb25lab1"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/microsoft.ContainerService/features/OmsagentAADAuthPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "microsoft.ContainerService/OmsagentAADAuthPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.KyberVmAvailabilityMetric",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.KyberVmAvailabilityMetric"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AVS/features/PIPOnNSXEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AVS/PIPOnNSXEnabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DesktopVirtualization/features/PerUserAccessPricing",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DesktopVirtualization/PerUserAccessPricing"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Resources/features/DeploymentStacksPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Resources/DeploymentStacksPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/FederatedClientIdentity",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/FederatedClientIdentity"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.LabServices/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.LabServices/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.SCOM/features/AquilaPrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.SCOM/AquilaPrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/EnableObdAccelNet",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/EnableObdAccelNet"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/Fabric.DisableLiveMigration",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/Fabric.DisableLiveMigration"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/brazilsoutheast_geo_pair",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/brazilsoutheast_geo_pair"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowSubnetSharingWithCloudServices",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowSubnetSharingWithCloudServices"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ChangeAnalysis/features/DevAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ChangeAnalysis/DevAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ChangeAnalysis/features/DevAccessCp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ChangeAnalysis/DevAccessCp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HealthcareApis/features/FhirEventPreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HealthcareApis/FhirEventPreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseComputeSubscriptionKustoCTO",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseComputeSubscriptionKustoCTO"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Kusto/features/UseStorageSubscriptionKustoCTO",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Kusto/UseStorageSubscriptionKustoCTO"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Logic/features/AllowWorkflowManagedIdentity",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Logic/AllowWorkflowManagedIdentity"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/NGINX.NGINXPLUS/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "NGINX.NGINXPLUS/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Storage/features/LinkedInOnlyStamp",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Storage/LinkedInOnlyStamp"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Private.Contoso/features/Enabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Private.Contoso/Enabled"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/ImpactfulExtensionUpdate",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/ImpactfulExtensionUpdate"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.AISupercomputer/features/restricted",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.AISupercomputer/restricted"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.RecoveryServices/features/SqlDbSnapshot",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.RecoveryServices/SqlDbSnapshot"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowMultiplePeeringLinksBetweenVnets",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowMultiplePeeringLinksBetweenVnets"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DBForMySQL/features/reversePendingRestartValue",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DBForMySQL/reversePendingRestartValue"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.ApiSecurity/features/CanaryAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.ApiSecurity/CanaryAccess"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Dashboard/features/PrivatePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Dashboard/PrivatePreview"
+ },
+ {
+ "properties": {
+ "state": "NotRegistered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowPreReleaseRegions",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HybridNetwork/AllowPreReleaseRegions"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Automation/features/dsc",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Automation/dsc"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeAnalytics/features/requestedBetaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeAnalytics/requestedBetaAccess"
+ },
+ {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeAnalytics/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeAnalytics/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeStore/features/betaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeStore/betaAccess"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.DataLakeStore/features/requestedBetaAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.DataLakeStore/requestedBetaAccess"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/WestEuropeRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/WestEuropeRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowCortexAccess",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowCortexAccess"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Web/features/EastUSRegionEnabled",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Web/EastUSRegionEnabled"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/AzureDedicatedHsm",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/AzureDedicatedHsm"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Network/features/AllowBaremetalServers",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Network/AllowBaremetalServers"
+ },
+ {
+ "properties": {
+ "state": "Pending"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.HardwareSecurityModules/features/UseDogfoodHSM",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.HardwareSecurityModules/UseDogfoodHSM"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/PlatformSettingsOverride",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/PlatformSettingsOverride"
+ },
+ {
+ "properties": {
+ "state": "Registered"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AutomaticExtensionUpgradePreview",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AutomaticExtensionUpgradePreview"
+ },
+ {
+ "properties": {
+ "state": "Unregistering"
+ },
+ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB",
+ "type": "Microsoft.Features/providers/features",
+ "name": "Microsoft.Compute/AHUB"
+ }
+ ]
+ }
+ }
+ ],
+ "Variables": {
+ "RandomSeed": "441933110",
+ "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c"
+ }
+}
\ No newline at end of file
diff --git a/sdk/resourcemanager/ci.yml b/sdk/resourcemanager/ci.yml
index 266b7bdacddb1..b26c8532310d2 100644
--- a/sdk/resourcemanager/ci.yml
+++ b/sdk/resourcemanager/ci.yml
@@ -3,7 +3,7 @@
trigger:
branches:
include:
- - master
+ - main
- hotfix/*
- release/*
paths:
@@ -13,7 +13,7 @@ trigger:
pr:
branches:
include:
- - master
+ - main
- feature/*
- hotfix/*
- release/*