diff --git a/sdk/core/Azure.Core.TestFramework/src/Instrumentation/ManagementInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/Instrumentation/ManagementInterceptor.cs index 53bd2a9308e1c..dbc193e9ddfdf 100644 --- a/sdk/core/Azure.Core.TestFramework/src/Instrumentation/ManagementInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/Instrumentation/ManagementInterceptor.cs @@ -2,6 +2,7 @@ // Licensed under the MIT License. using System; +using System.Linq; using System.Reflection; using System.Threading.Tasks; using Castle.DynamicProxy; @@ -39,11 +40,25 @@ public void Intercept(IInvocation invocation) var taskResultType = type.GetGenericArguments()[0]; if (taskResultType.Name.StartsWith("Response")) { - var taskResult = result.GetType().GetProperty("Result").GetValue(result); - var instrumentedResult = _testBase.InstrumentClient(taskResultType, taskResult, new IInterceptor[] { new ManagementInterceptor(_testBase) }); - invocation.ReturnValue = type.Name.StartsWith("ValueTask") - ? GetValueFromValueTask(taskResultType, instrumentedResult) - : GetValueFromOther(taskResultType, instrumentedResult); + try + { + var taskResult = result.GetType().GetProperty("Result").GetValue(result); + var instrumentedResult = _testBase.InstrumentClient(taskResultType, taskResult, new IInterceptor[] { new ManagementInterceptor(_testBase) }); + invocation.ReturnValue = type.Name.StartsWith("ValueTask") + ? GetValueFromValueTask(taskResultType, instrumentedResult) + : GetValueFromOther(taskResultType, instrumentedResult); + } + catch (TargetInvocationException e) + { + if (e.InnerException is AggregateException aggException) + { + throw aggException.InnerExceptions.First(); + } + else + { + throw e.InnerException; + } + } } } else if (invocation.Method.Name.EndsWith("Value") && type.BaseType.Name.EndsWith("Operations")) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersions.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersions.cs index a8d0da2f76836..5e167ad7dbac5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersions.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersions.cs @@ -10,8 +10,6 @@ using System.Threading; using System.Threading.Tasks; using Azure.Core; -using Azure.ResourceManager.Resources; -using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Core { @@ -20,7 +18,7 @@ namespace Azure.ResourceManager.Core /// public class ApiVersions { - private ProvidersOperations ProviderOperations; + private ArmClient _armClient; private ArmClientOptions _clientOptions; /// @@ -30,19 +28,15 @@ internal ApiVersions(ArmClientOptions clientOptions) { BuildApiTable(clientOptions); _clientOptions = clientOptions; - ProviderOperations = null; + _armClient = null; } /// /// Make a provider resource client class. /// - internal void SetProviderClient(TokenCredential credential, Uri baseUri, string subscription) + internal void SetProviderClient(ArmClient armClient) { - ProviderOperations = new ResourcesManagementClient( - baseUri, - subscription, - credential, - _clientOptions.Convert()).Providers; + _armClient = armClient; ; } private ConcurrentDictionary _loadedResourceToApiVersions = new ConcurrentDictionary(); @@ -89,13 +83,13 @@ private string LoadApiVersion(ResourceType resourceType, CancellationToken cance Response results; try { - results = ProviderOperations.Get(resourceType.Namespace, null, cancellationToken); + results = _armClient.DefaultSubscription.GetProviders().Get(resourceType.Namespace, null, cancellationToken); } catch (RequestFailedException ex) when (ex.Status == 404) { return null; } - foreach (var type in results.Value.ResourceTypes) + foreach (var type in results.Value.Data.ResourceTypes) { if (type.ResourceType.Equals(resourceType.Type)) { @@ -111,13 +105,13 @@ private async Task LoadApiVersionAsync(ResourceType resourceType, Cancel Response results; try { - results = await ProviderOperations.GetAsync(resourceType.Namespace, null, cancellationToken).ConfigureAwait(false); + results = await _armClient.DefaultSubscription.GetProviders().GetAsync(resourceType.Namespace, null, cancellationToken).ConfigureAwait(false); } catch (RequestFailedException ex) when (ex.Status == 404) { return null; } - foreach (var type in results.Value.ResourceTypes) + foreach (var type in results.Value.Data.ResourceTypes) { if (type.ResourceType.Equals(resourceType.Type)) { @@ -138,7 +132,7 @@ public string TryGetApiVersion(ResourceType resourceType, CancellationToken canc { return val; } - return ProviderOperations == null ? null : LoadApiVersion(resourceType.ToString(), cancellationToken); + return _armClient == null ? null : LoadApiVersion(resourceType.ToString(), cancellationToken); } /// @@ -151,7 +145,7 @@ public async Task TryGetApiVersionAsync(ResourceType resourceType, Cance { return val; } - return ProviderOperations == null ? null : await LoadApiVersionAsync(resourceType.ToString(), cancellationToken).ConfigureAwait(false); + return _armClient == null ? null : await LoadApiVersionAsync(resourceType.ToString(), cancellationToken).ConfigureAwait(false); } private bool TryGetApiVersion(string resourceType, out string val) @@ -190,7 +184,7 @@ public void SetApiVersion(ResourceType resourceType, string apiVersion) internal ApiVersions Clone() { ApiVersions copy = new ApiVersions(_clientOptions); - copy.ProviderOperations = ProviderOperations; + copy._armClient = _armClient; copy._loadedResourceToApiVersions = new ConcurrentDictionary(_loadedResourceToApiVersions); copy._nonLoadedResourceToApiVersion = new ConcurrentDictionary(_nonLoadedResourceToApiVersion); return copy; diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs index dd6deca38f2a2..4b93175fd7224 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs @@ -99,7 +99,7 @@ private ArmClient( DefaultSubscription = string.IsNullOrWhiteSpace(defaultSubscriptionId) ? GetDefaultSubscription() : GetSubscriptions().TryGet(defaultSubscriptionId); - ClientOptions.ApiVersions.SetProviderClient(credential, baseUri, defaultSubscriptionId ?? DefaultSubscription.Id.SubscriptionId); + ClientOptions.ApiVersions.SetProviderClient(this); } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/Alias.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/Alias.Serialization.cs new file mode 100644 index 0000000000000..d6ceab921da6f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/Alias.Serialization.cs @@ -0,0 +1,74 @@ +// 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 Alias + { + internal static Alias DeserializeAlias(JsonElement element) + { + Optional name = default; + Optional> paths = default; + Optional type = default; + Optional defaultPath = default; + Optional defaultPattern = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + if (property.NameEquals("paths")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(AliasPath.DeserializeAliasPath(item)); + } + paths = array; + continue; + } + if (property.NameEquals("type")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + type = property.Value.GetString().ToAliasType(); + continue; + } + if (property.NameEquals("defaultPath")) + { + defaultPath = property.Value.GetString(); + continue; + } + if (property.NameEquals("defaultPattern")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + defaultPattern = AliasPattern.DeserializeAliasPattern(property.Value); + continue; + } + } + return new Alias(name.Value, Optional.ToList(paths), Optional.ToNullable(type), defaultPath.Value, defaultPattern.Value); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/Alias.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/Alias.cs new file mode 100644 index 0000000000000..7974fe0416368 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/Alias.cs @@ -0,0 +1,48 @@ +// 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 +{ + /// The alias type. + public partial class Alias + { + /// Initializes a new instance of Alias. + internal Alias() + { + Paths = new ChangeTrackingList(); + } + + /// Initializes a new instance of Alias. + /// The alias name. + /// The paths for an alias. + /// The type of the alias. + /// The default path for an alias. + /// The default pattern for an alias. + internal Alias(string name, IReadOnlyList paths, AliasType? type, string defaultPath, AliasPattern defaultPattern) + { + Name = name; + Paths = paths; + Type = type; + DefaultPath = defaultPath; + DefaultPattern = defaultPattern; + } + + /// The alias name. + public string Name { get; } + /// The paths for an alias. + public IReadOnlyList Paths { get; } + /// The type of the alias. + public AliasType? Type { get; } + /// The default path for an alias. + public string DefaultPath { get; } + /// The default pattern for an alias. + public AliasPattern DefaultPattern { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPath.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPath.Serialization.cs new file mode 100644 index 0000000000000..79fcb0b9ee61f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPath.Serialization.cs @@ -0,0 +1,57 @@ +// 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 AliasPath + { + internal static AliasPath DeserializeAliasPath(JsonElement element) + { + Optional path = default; + Optional> apiVersions = default; + Optional pattern = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("path")) + { + path = property.Value.GetString(); + continue; + } + if (property.NameEquals("apiVersions")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetString()); + } + apiVersions = array; + continue; + } + if (property.NameEquals("pattern")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + pattern = AliasPattern.DeserializeAliasPattern(property.Value); + continue; + } + } + return new AliasPath(path.Value, Optional.ToList(apiVersions), pattern.Value); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPath.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPath.cs new file mode 100644 index 0000000000000..f3fed287f0cc0 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPath.cs @@ -0,0 +1,40 @@ +// 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 +{ + /// The type of the paths for alias. + public partial class AliasPath + { + /// Initializes a new instance of AliasPath. + internal AliasPath() + { + ApiVersions = new ChangeTrackingList(); + } + + /// Initializes a new instance of AliasPath. + /// The path of an alias. + /// The API versions. + /// The pattern for an alias path. + internal AliasPath(string path, IReadOnlyList apiVersions, AliasPattern pattern) + { + Path = path; + ApiVersions = apiVersions; + Pattern = pattern; + } + + /// The path of an alias. + public string Path { get; } + /// The API versions. + public IReadOnlyList ApiVersions { get; } + /// The pattern for an alias path. + public AliasPattern Pattern { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPattern.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPattern.Serialization.cs new file mode 100644 index 0000000000000..3b12a0cc07226 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPattern.Serialization.cs @@ -0,0 +1,46 @@ +// 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 AliasPattern + { + internal static AliasPattern DeserializeAliasPattern(JsonElement element) + { + Optional phrase = default; + Optional variable = default; + Optional type = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("phrase")) + { + phrase = property.Value.GetString(); + continue; + } + if (property.NameEquals("variable")) + { + variable = property.Value.GetString(); + continue; + } + if (property.NameEquals("type")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + type = property.Value.GetString().ToAliasPatternType(); + continue; + } + } + return new AliasPattern(phrase.Value, variable.Value, Optional.ToNullable(type)); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPattern.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPattern.cs new file mode 100644 index 0000000000000..3220e553662dd --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPattern.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.ResourceManager.Core +{ + /// The type of the pattern for an alias path. + public partial class AliasPattern + { + /// Initializes a new instance of AliasPattern. + internal AliasPattern() + { + } + + /// Initializes a new instance of AliasPattern. + /// The alias pattern phrase. + /// The alias pattern variable. + /// The type of alias pattern. + internal AliasPattern(string phrase, string variable, AliasPatternType? type) + { + Phrase = phrase; + Variable = variable; + Type = type; + } + + /// The alias pattern phrase. + public string Phrase { get; } + /// The alias pattern variable. + public string Variable { get; } + /// The type of alias pattern. + public AliasPatternType? Type { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPatternType.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPatternType.Serialization.cs new file mode 100644 index 0000000000000..61c1b76d09f47 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPatternType.Serialization.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.ResourceManager.Core +{ + internal static partial class AliasPatternTypeExtensions + { + public static string ToSerialString(this AliasPatternType value) => value switch + { + AliasPatternType.NotSpecified => "NotSpecified", + AliasPatternType.Extract => "Extract", + _ => throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown AliasPatternType value.") + }; + + public static AliasPatternType ToAliasPatternType(this string value) + { + if (string.Equals(value, "NotSpecified", StringComparison.InvariantCultureIgnoreCase)) return AliasPatternType.NotSpecified; + if (string.Equals(value, "Extract", StringComparison.InvariantCultureIgnoreCase)) return AliasPatternType.Extract; + throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown AliasPatternType value."); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPatternType.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPatternType.cs new file mode 100644 index 0000000000000..0b8f9ec94afaf --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasPatternType.cs @@ -0,0 +1,18 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.ResourceManager.Core +{ + /// The type of alias pattern. + public enum AliasPatternType + { + /// NotSpecified is not allowed. + NotSpecified, + /// Extract is the only allowed value. + Extract + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasType.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasType.Serialization.cs new file mode 100644 index 0000000000000..529ef40a9554f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasType.Serialization.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.ResourceManager.Core +{ + internal static partial class AliasTypeExtensions + { + public static string ToSerialString(this AliasType value) => value switch + { + AliasType.NotSpecified => "NotSpecified", + AliasType.PlainText => "PlainText", + AliasType.Mask => "Mask", + _ => throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown AliasType value.") + }; + + public static AliasType ToAliasType(this string value) + { + if (string.Equals(value, "NotSpecified", StringComparison.InvariantCultureIgnoreCase)) return AliasType.NotSpecified; + if (string.Equals(value, "PlainText", StringComparison.InvariantCultureIgnoreCase)) return AliasType.PlainText; + if (string.Equals(value, "Mask", StringComparison.InvariantCultureIgnoreCase)) return AliasType.Mask; + throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown AliasType value."); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasType.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasType.cs new file mode 100644 index 0000000000000..be950e8b51c10 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/AliasType.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.ResourceManager.Core +{ + /// The type of the alias. + public enum AliasType + { + /// Alias type is unknown (same as not providing alias type). + NotSpecified, + /// Alias value is not secret. + PlainText, + /// Alias value is secret. + Mask + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderData.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderData.Serialization.cs new file mode 100644 index 0000000000000..afa8d4374cc90 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderData.Serialization.cs @@ -0,0 +1,64 @@ +// 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 ProviderData + { + internal static ProviderData DeserializeProvider(JsonElement element) + { + Optional id = default; + Optional @namespace = default; + Optional registrationState = default; + Optional registrationPolicy = default; + Optional> resourceTypes = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("id")) + { + id = property.Value.GetString(); + continue; + } + if (property.NameEquals("namespace")) + { + @namespace = property.Value.GetString(); + continue; + } + if (property.NameEquals("registrationState")) + { + registrationState = property.Value.GetString(); + continue; + } + if (property.NameEquals("registrationPolicy")) + { + registrationPolicy = 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 ProviderData(id.Value, @namespace.Value, registrationState.Value, registrationPolicy.Value, Optional.ToList(resourceTypes)); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderData.cs new file mode 100644 index 0000000000000..053b505a9e0bd --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderData.cs @@ -0,0 +1,46 @@ +// 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 ProviderData : SubResource + { + /// Initializes a new instance of Provider. + internal ProviderData() + { + ResourceTypes = new ChangeTrackingList(); + } + + /// Initializes a new instance of Provider. + /// The provider ID. + /// The namespace of the resource provider. + /// The registration state of the resource provider. + /// The registration policy of the resource provider. + /// The collection of provider resource types. + internal ProviderData(string id, string @namespace, string registrationState, string registrationPolicy, IReadOnlyList resourceTypes) + : base(id) + { + Namespace = @namespace; + RegistrationState = registrationState; + RegistrationPolicy = registrationPolicy; + ResourceTypes = resourceTypes; + } + + /// The namespace of the resource provider. + public string Namespace { get; } + /// The registration state of the resource provider. + public string RegistrationState { get; } + /// The registration policy of the resource provider. + public string RegistrationPolicy { get; } + /// The collection of provider resource types. + public IReadOnlyList ResourceTypes { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderListResult.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderListResult.Serialization.cs new file mode 100644 index 0000000000000..42fe916537a21 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderListResult.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 ProviderListResult + { + internal static ProviderListResult DeserializeProviderListResult(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(ProviderData.DeserializeProvider(item)); + } + value = array; + continue; + } + if (property.NameEquals("nextLink")) + { + nextLink = property.Value.GetString(); + continue; + } + } + return new ProviderListResult(Optional.ToList(value), nextLink.Value); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderListResult.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderListResult.cs new file mode 100644 index 0000000000000..358249d577d54 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderListResult.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 ProviderListResult + { + /// Initializes a new instance of ProviderListResult. + internal ProviderListResult() + { + Value = new ChangeTrackingList(); + } + + /// Initializes a new instance of ProviderListResult. + /// An array of resource providers. + /// The URL to use for getting the next set of results. + internal ProviderListResult(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/Generated/Models/ProviderResourceType.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderResourceType.Serialization.cs new file mode 100644 index 0000000000000..b5e94b82f6834 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderResourceType.Serialization.cs @@ -0,0 +1,100 @@ +// 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 ProviderResourceType + { + internal static ProviderResourceType DeserializeProviderResourceType(JsonElement element) + { + Optional resourceType = default; + Optional> locations = default; + Optional> aliases = default; + Optional> apiVersions = default; + Optional capabilities = default; + Optional> properties = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("resourceType")) + { + resourceType = property.Value.GetString(); + continue; + } + if (property.NameEquals("locations")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetString()); + } + locations = array; + continue; + } + if (property.NameEquals("aliases")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(Alias.DeserializeAlias(item)); + } + aliases = array; + continue; + } + if (property.NameEquals("apiVersions")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetString()); + } + apiVersions = array; + continue; + } + if (property.NameEquals("capabilities")) + { + capabilities = property.Value.GetString(); + continue; + } + if (property.NameEquals("properties")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + Dictionary dictionary = new Dictionary(); + foreach (var property0 in property.Value.EnumerateObject()) + { + dictionary.Add(property0.Name, property0.Value.GetString()); + } + properties = dictionary; + continue; + } + } + return new ProviderResourceType(resourceType.Value, Optional.ToList(locations), Optional.ToList(aliases), Optional.ToList(apiVersions), capabilities.Value, Optional.ToDictionary(properties)); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderResourceType.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderResourceType.cs new file mode 100644 index 0000000000000..2f7b2da84aa1a --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ProviderResourceType.cs @@ -0,0 +1,55 @@ +// 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 type managed by the resource provider. + public partial class ProviderResourceType + { + /// Initializes a new instance of ProviderResourceType. + internal ProviderResourceType() + { + Locations = new ChangeTrackingList(); + Aliases = new ChangeTrackingList(); + ApiVersions = new ChangeTrackingList(); + Properties = new ChangeTrackingDictionary(); + } + + /// Initializes a new instance of ProviderResourceType. + /// The resource type. + /// The collection of locations where this resource type can be created. + /// The aliases that are supported by this resource type. + /// The API version. + /// The additional capabilities offered by this resource type. + /// The properties. + internal ProviderResourceType(string resourceType, IReadOnlyList locations, IReadOnlyList aliases, IReadOnlyList apiVersions, string capabilities, IReadOnlyDictionary properties) + { + ResourceType = resourceType; + Locations = locations; + Aliases = aliases; + ApiVersions = apiVersions; + Capabilities = capabilities; + Properties = properties; + } + + /// The resource type. + public string ResourceType { get; } + /// The collection of locations where this resource type can be created. + public IReadOnlyList Locations { get; } + /// The aliases that are supported by this resource type. + public IReadOnlyList Aliases { get; } + /// The API version. + public IReadOnlyList ApiVersions { get; } + /// The additional capabilities offered by this resource type. + public string Capabilities { get; } + /// The properties. + public IReadOnlyDictionary Properties { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Provider.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Provider.cs new file mode 100644 index 0000000000000..bfe654bdf0e65 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Provider.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + /// + /// A class representing a generic azure resource along with the instance operations that can be performed on it. + /// + public class Provider : ProviderOperations + { + /// + /// Initializes a new instance of the class for mocking. + /// + protected Provider() + { + } + + /// + /// Initializes a new instance of the class. + /// + /// The operations object to copy the client parameters from. + /// + /// If or is null. + internal Provider(OperationsBase operations, ProviderData providerData) + : base(operations, providerData.Id) + { + Data = providerData; + } + + internal Provider(ProviderData result) => Data = result; + + /// + /// Gets the data representing this generic azure resource. + /// + public virtual ProviderData Data { get; } + + /// + protected override Provider 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/ProviderContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderContainer.cs new file mode 100644 index 0000000000000..f2e5ab38cf9d9 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderContainer.cs @@ -0,0 +1,243 @@ +// 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; + +namespace Azure.ResourceManager.Core +{ + /// + /// A class representing collection of resources and their operations over their parent. + /// + public class ProviderContainer : ResourceContainerBase + { + /// + /// Initializes a new instance of the class for mocking. + /// + protected ProviderContainer() + { + } + + /// + /// Initializes a new instance of the class. + /// + /// The client context to use. + internal ProviderContainer(OperationsBase parent) + : base(parent) + { + } + + /// + protected override ResourceType ValidResourceType => ResourceIdentifier.RootResourceIdentifier.ResourceType; + + /// + protected override void Validate(ResourceIdentifier identifier) + { + } + + private ProviderRestOperations RestClient + { + get + { + string subscription; + if (Id is null || !Id.TryGetSubscriptionId(out subscription)) + { + subscription = Guid.Empty.ToString(); + } + + return new ProviderRestOperations( + Diagnostics, + Pipeline, + subscription, + BaseUri); + } + } + + /// + /// Gets the provider for a namespace. + /// + /// + /// + /// + /// + public virtual Response Get(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ProviderContainer.Get"); + scope.Start(); + + 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()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Gets the provider for a namespace. + /// + /// + /// + /// + /// + public virtual async Task> GetAsync(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ProviderContainer.Get"); + scope.Start(); + + 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()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// 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 List(int? top = null, string expand = null, CancellationToken cancellationToken = default) + { + 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()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + 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()); + } + 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 ListAsync(int? top = null, string expand = null, CancellationToken cancellationToken = default) + { + 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()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + 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()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderOperations.cs new file mode 100644 index 0000000000000..6bb09082c0e9f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderOperations.cs @@ -0,0 +1,200 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + /// The Providers service client. + public partial class ProviderOperations : ResourceOperationsBase + { + /// + /// Initializes a new instance of the class for mocking. + /// + protected ProviderOperations() + { } + + /// + /// Initializes a new instance of the class. + /// + /// + /// + internal ProviderOperations(ClientContext clientContext, TenantResourceIdentifier id) + : base(clientContext, id) + { + } + + /// + /// Initializes a new instance of the class. + /// + /// 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) + : base(operations, id) + { + } + + /// + protected override ResourceType ValidResourceType => ResourceType; + + /// + /// Gets the resource type definition for a ResourceType. + /// + public static readonly ResourceType ResourceType = "Microsoft.Resources/providers"; + + private ProviderRestOperations RestClient + { + get + { + string subscription; + if (Id is null || !Id.TryGetSubscriptionId(out subscription)) + { + subscription = Guid.Empty.ToString(); + } + + return new ProviderRestOperations( + Diagnostics, + Pipeline, + subscription, + BaseUri); + } + } + + /// Unregisters a subscription from a resource provider. + /// The namespace of the resource provider to unregister. + /// The cancellation token to use. + public virtual async Task> UnregisterAsync(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ProviderOperations.Unregister"); + scope.Start(); + try + { + var result = await RestClient.UnregisterAsync(resourceProviderNamespace, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new Provider(result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Unregisters a subscription from a resource provider. + /// The namespace of the resource provider to unregister. + /// The cancellation token to use. + public virtual Response Unregister(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ProviderOperations.Unregister"); + scope.Start(); + try + { + var result = RestClient.Unregister(resourceProviderNamespace, cancellationToken); + return Response.FromValue(new Provider(result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Registers a subscription with a resource provider. + /// The namespace of the resource provider to register. + /// The cancellation token to use. + public virtual async Task> RegisterAsync(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ProviderOperations.Register"); + scope.Start(); + try + { + var result = await RestClient.RegisterAsync(resourceProviderNamespace, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new Provider(result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Registers a subscription with a resource provider. + /// The namespace of the resource provider to register. + /// The cancellation token to use. + public virtual Response Register(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ProviderOperations.Register"); + scope.Start(); + try + { + var result = RestClient.Register(resourceProviderNamespace, cancellationToken); + return Response.FromValue(new Provider(result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + public override Response Get(CancellationToken cancellationToken = default) + { + 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()); + } + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + public override async Task> GetAsync(CancellationToken cancellationToken = default) + { + 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()); + } + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderRestOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderRestOperations.cs new file mode 100644 index 0000000000000..398639ff9a031 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ProviderRestOperations.cs @@ -0,0 +1,617 @@ +// 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 ProviderRestOperations + { + private string subscriptionId; + private Uri endpoint; + private ClientDiagnostics _clientDiagnostics; + private HttpPipeline _pipeline; + + /// Initializes a new instance of ProviderRestOperations. + /// 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 ProviderRestOperations(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 Azure.Core.HttpMessage CreateUnregisterRequest(string resourceProviderNamespace) + { + 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/", false); + uri.AppendPath(resourceProviderNamespace, true); + uri.AppendPath("/unregister", false); + uri.AppendQuery("api-version", "2019-10-01", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Unregisters a subscription from a resource provider. + /// The namespace of the resource provider to unregister. + /// The cancellation token to use. + /// is null. + public async Task> UnregisterAsync(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + if (resourceProviderNamespace == null) + { + throw new ArgumentNullException(nameof(resourceProviderNamespace)); + } + + using var message = CreateUnregisterRequest(resourceProviderNamespace); + 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); + } + } + + /// Unregisters a subscription from a resource provider. + /// The namespace of the resource provider to unregister. + /// The cancellation token to use. + /// is null. + public Response Unregister(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + if (resourceProviderNamespace == null) + { + throw new ArgumentNullException(nameof(resourceProviderNamespace)); + } + + using var message = CreateUnregisterRequest(resourceProviderNamespace); + _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 CreateRegisterRequest(string resourceProviderNamespace) + { + 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/", false); + uri.AppendPath(resourceProviderNamespace, true); + uri.AppendPath("/register", false); + uri.AppendQuery("api-version", "2019-10-01", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Registers a subscription with a resource provider. + /// The namespace of the resource provider to register. + /// The cancellation token to use. + /// is null. + public async Task> RegisterAsync(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + if (resourceProviderNamespace == null) + { + throw new ArgumentNullException(nameof(resourceProviderNamespace)); + } + + using var message = CreateRegisterRequest(resourceProviderNamespace); + 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); + } + } + + /// Registers a subscription with a resource provider. + /// The namespace of the resource provider to register. + /// The cancellation token to use. + /// is null. + public Response Register(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + if (resourceProviderNamespace == null) + { + throw new ArgumentNullException(nameof(resourceProviderNamespace)); + } + + using var message = CreateRegisterRequest(resourceProviderNamespace); + _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 CreateListRequest(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("/subscriptions/", false); + uri.AppendPath(subscriptionId, true); + 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 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 async Task> ListAsync(int? top = null, string expand = null, CancellationToken cancellationToken = default) + { + using var message = CreateListRequest(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 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 Response List(int? top = null, string expand = null, CancellationToken cancellationToken = default) + { + using var message = CreateListRequest(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 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(); + 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/", 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. + /// 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> GetAsync(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) + { + if (resourceProviderNamespace == null) + { + throw new ArgumentNullException(nameof(resourceProviderNamespace)); + } + + using var message = CreateGetRequest(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. + /// 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 Get(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) + { + if (resourceProviderNamespace == null) + { + throw new ArgumentNullException(nameof(resourceProviderNamespace)); + } + + using var message = CreateGetRequest(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 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(); + 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 a subscription. + /// The URL to the next page of results. + /// 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. + /// is null. + public async Task> ListNextPageAsync(string nextLink, int? top = null, string expand = null, CancellationToken cancellationToken = default) + { + if (nextLink == null) + { + throw new ArgumentNullException(nameof(nextLink)); + } + + using var message = CreateListNextPageRequest(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 a subscription. + /// The URL to the next page of results. + /// 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. + /// is null. + public Response ListNextPage(string nextLink, int? top = null, string expand = null, CancellationToken cancellationToken = default) + { + if (nextLink == null) + { + throw new ArgumentNullException(nameof(nextLink)); + } + + using var message = CreateListNextPageRequest(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); + } + } + + 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/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionOperations.cs index f3fb09230bfbf..d50bae3f0fc15 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/SubscriptionOperations.cs @@ -85,6 +85,15 @@ public virtual LocationContainer GetLocations() return new LocationContainer(this); } + /// + /// Gets the provider container under this subscription. + /// + /// The provider container. + public virtual ProviderContainer GetProviders() + { + return new ProviderContainer(this); + } + /// public override Response Get(CancellationToken cancellationToken = default) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs index 433ddd6283d1b..8edf79ea7445b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs @@ -65,5 +65,14 @@ public virtual AsyncPageable ListResourcesAsync(Func + /// Gets the provider container under this subscription. + /// + /// The provider container. + public virtual ProviderContainer GetProviders() + { + return new ProviderContainer(this); + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs index f3be8bc222b0d..84269c9aaeda8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs @@ -43,7 +43,7 @@ internal ResourceContainerBase(ClientContext clientContext, TIdentifier parentId /// Initializes a new instance of the class. /// /// The resource representing the parent resource. - protected ResourceContainerBase(ResourceOperationsBase parent) + protected ResourceContainerBase(OperationsBase parent) : base(parent) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/SubscriptionProviderIdentifier.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/SubscriptionProviderIdentifier.cs index 8953e740e53e8..573b82080402c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/SubscriptionProviderIdentifier.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/SubscriptionProviderIdentifier.cs @@ -15,6 +15,8 @@ internal SubscriptionProviderIdentifier(SubscriptionResourceIdentifier parent, s Parent = parent; Provider = providerNamespace; IsChild = true; + ResourceType = ProviderOperations.ResourceType; + SubscriptionId = parent.SubscriptionId; } internal SubscriptionProviderIdentifier(SubscriptionProviderIdentifier parent, string providerNamespace, string typeName, string resourceName) @@ -23,6 +25,7 @@ internal SubscriptionProviderIdentifier(SubscriptionProviderIdentifier parent, s Parent = parent; Provider = parent.Provider; IsChild = true; + SubscriptionId = parent.SubscriptionId; } /// @@ -39,6 +42,7 @@ internal SubscriptionProviderIdentifier(SubscriptionProviderIdentifier parent, s Parent = parent; Provider = parent.Provider; IsChild = true; + SubscriptionId = parent.SubscriptionId; } /// @@ -59,5 +63,12 @@ public static implicit operator SubscriptionProviderIdentifier(string other) throw new ArgumentException("Not a valid tenant provider resource", nameof(other)); return id; } + + /// + public override bool TryGetProvider(out string providerId) + { + providerId = Provider; + return true; + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantProviderIdentifier.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantProviderIdentifier.cs index 21f1594d3213c..e1169ec1b2f04 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantProviderIdentifier.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantProviderIdentifier.cs @@ -15,6 +15,7 @@ internal TenantProviderIdentifier(TenantResourceIdentifier parent, string provid Parent = parent; Provider = providerNamespace; IsChild = true; + ResourceType = ProviderOperations.ResourceType; } internal TenantProviderIdentifier(TenantProviderIdentifier parent, string providerNamespace, string typeName, string resourceName) @@ -59,5 +60,12 @@ public static implicit operator TenantProviderIdentifier(string other) throw new ArgumentException("Not a valid tenant provider resource", nameof(other)); return id; } + + /// + public override bool TryGetProvider(out string providerId) + { + providerId = Provider; + return true; + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantResourceIdentifier.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantResourceIdentifier.cs index 6583c31d1a1e4..7c94ee87752ed 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantResourceIdentifier.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantResourceIdentifier.cs @@ -95,5 +95,16 @@ public static implicit operator TenantResourceIdentifier(string other) throw new ArgumentException("Not a valid tenant level resource", nameof(other)); return id; } + + /// + /// + /// + /// + /// + public virtual bool TryGetProvider(out string providerId) + { + providerId = default(string); + return false; + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs index 3426e2d647a76..cd9c8bb3054ad 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs @@ -21,8 +21,7 @@ public async Task GetGenericsConfirmException() var rgName = Recording.GenerateAssetName("testrg"); _ = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); var asetid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{rgName}/providers/Microsoft.Compute/availabilitySets/testavset"; - var subOp = await Client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); - var genericResourceOperations = new GenericResourceOperations(subOp, asetid); + var genericResourceOperations = Client.GetGenericResourceOperations(asetid); RequestFailedException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); Assert.AreEqual(404, exception.Status); Assert.True(exception.Message.Contains("ResourceNotFound")); @@ -35,8 +34,7 @@ public async Task GetGenericsBadNameSpace() var rgName = Recording.GenerateAssetName("testrg"); _ = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); var asetid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{rgName}/providers/Microsoft.NotAValidNameSpace123/availabilitySets/testavset"; - var subOp = await Client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); - var genericResourceOperations = new GenericResourceOperations(subOp, asetid); + var genericResourceOperations = Client.GetGenericResourceOperations(asetid); InvalidOperationException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); Assert.IsTrue(exception.Message.Equals($"An invalid resouce id was given {asetid}")); } @@ -46,13 +44,11 @@ public async Task GetGenericsBadNameSpace() public async Task GetGenericsBadApiVersion() { var rgName = Recording.GenerateAssetName("testrg"); - _ = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); - ResourceGroupResourceIdentifier rgid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{rgName}"; + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); ArmClientOptions options = new ArmClientOptions(); - options.ApiVersions.SetApiVersion(rgid.ResourceType, "1500-10-10"); + options.ApiVersions.SetApiVersion(rg.Id.ResourceType, "1500-10-10"); var client = GetArmClient(options); - var subOp = await client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); - var genericResourceOperations = new GenericResourceOperations(subOp, rgid); + var genericResourceOperations = client.GetGenericResourceOperations(rg.Id); RequestFailedException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); Assert.IsTrue(exception.Message.Contains("InvalidApiVersionParameter")); } @@ -63,8 +59,7 @@ public async Task GetGenericsGoodApiVersion() { var rgName = Recording.GenerateAssetName("testrg"); ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); - var subOp = await Client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); - var genericResourceOperations = new GenericResourceOperations(subOp, rg.Id); + var genericResourceOperations = Client.GetGenericResourceOperations(rg.Id); var genericResource = await genericResourceOperations.GetAsync(); Assert.IsNotNull(genericResource.Value); Assert.IsTrue(genericResource.Value.Data.Name.Equals(rgName)); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ProviderContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ProviderContainerTests.cs new file mode 100644 index 0000000000000..1c67d38f159b1 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ProviderContainerTests.cs @@ -0,0 +1,63 @@ +using System; +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using NUnit.Framework; +using System.Linq; + +namespace Azure.ResourceManager.Core.Tests +{ + public class ProviderContainerTests : ResourceManagerTestBase + { + public ProviderContainerTests(bool isAsync) + : base(isAsync) //, RecordedTestMode.Record) + { + } + + [TestCase("microsoft.insights")] + [RecordedTest] + public async Task GetFromSubscription(string resourceNamespace) + { + var providerContainer = Client.DefaultSubscription.GetProviders(); + var result = await providerContainer.GetAsync(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() + { + ProviderContainer providerContainer = Client.DefaultSubscription.GetProviders(); + Assert.ThrowsAsync(async () => {await providerContainer.GetAsync(null); }); + } + + [TestCase] + [RecordedTest] + public void GetEmptyException() + { + ProviderContainer providerContainer = Client.DefaultSubscription.GetProviders(); + Assert.ThrowsAsync(async () => {await providerContainer.GetAsync(""); }); + } + + [TestCase] + [RecordedTest] + public async Task List() + { + var providerContainer = Client.DefaultSubscription.GetProviders(); + var x = providerContainer.ListAsync(); + Assert.IsNotNull(x); + await foreach (var p in x) + { + Assert.IsNotNull(p.Data.Id); + } + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ProviderOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ProviderOperationsTests.cs new file mode 100644 index 0000000000000..c8ab38c64ca98 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ProviderOperationsTests.cs @@ -0,0 +1,84 @@ +using System; +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using NUnit.Framework; +using System.Linq; + +namespace Azure.ResourceManager.Core.Tests +{ + public class ProviderOperationsTests : ResourceManagerTestBase + { + public ProviderOperationsTests(bool isAsync) + : base(isAsync) //, RecordedTestMode.Record) + { + } + + [TestCase] + [RecordedTest] + public async Task Get() + { + ProviderContainer providerContainer = Client.DefaultSubscription.GetProviders(); + Response response = await providerContainer.GetAsync("microsoft.insights"); + Provider result = response.Value; + Assert.IsNotNull(result); + } + + [TestCase] + [RecordedTest] + public async Task Register() + { + ProviderContainer providerContainer = Client.DefaultSubscription.GetProviders(); + Response response = await providerContainer.GetAsync("microsoft.compute"); + var result = response.Value; + var register = await result.RegisterAsync("microsoft.insights"); + Assert.IsNotNull(register); + } + + [TestCase] + [RecordedTest] + public async Task RegisterNullException() + { + ProviderContainer providerContainer = Client.DefaultSubscription.GetProviders(); + Response response = await providerContainer.GetAsync("microsoft.insights"); + Assert.ThrowsAsync(async () => {await response.Value.RegisterAsync(null); }); + } + + [TestCase] + [RecordedTest] + public async Task RegisterEmptyException() + { + ProviderContainer providerContainer = Client.DefaultSubscription.GetProviders(); + Response response = await providerContainer.GetAsync("microsoft.insights"); + Assert.ThrowsAsync(async () => {await response.Value.RegisterAsync(""); }); + } + + [TestCase] + [RecordedTest] + public async Task Unregister() + { + ProviderContainer providerContainer = Client.DefaultSubscription.GetProviders(); + Response response = await providerContainer.GetAsync("microsoft.insights"); + var result = response.Value; + var unregister = await result.UnregisterAsync("microsoft.insights"); + Assert.IsNotNull(unregister); + } + + [TestCase] + [RecordedTest] + public async Task UnregisterNullException() + { + ProviderContainer providerContainer = Client.DefaultSubscription.GetProviders(); + Response response = await providerContainer.GetAsync("microsoft.insights"); + Assert.ThrowsAsync(async () => {await response.Value.UnregisterAsync(null); }); + } + + [TestCase] + [RecordedTest] + public async Task UnregisterEmptyException() + { + ProviderContainer providerContainer = Client.DefaultSubscription.GetProviders(); + Response response = await providerContainer.GetAsync("microsoft.insights"); + Assert.ThrowsAsync(async () => {await response.Value.UnregisterAsync(""); }); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs index 425d66de13b60..27837523de51c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs @@ -139,6 +139,13 @@ public async Task TestGetSubscription() Assert.NotNull(subscription.Value.Data.Id); } + [RecordedTest] + public async Task TestTryGet() + { + var sub = await Client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); + Assert.AreEqual($"/subscriptions/{TestEnvironment.SubscriptionId}", sub.Data.Id.ToString()); + } + private string GetLongString(int length) { StringBuilder builder = new StringBuilder(); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json index 45334ea831fd2..b744f7ae645b9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0eb3d93b133c8a58c719ba989fc8bd8f", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 07 Jun 2021 22:04:47 GMT", + "Date": "Tue, 15 Jun 2021 17:53:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a5cd478-1251-456e-95e8-a99cb9a406f9", + "x-ms-correlation-request-id": "d784125e-b557-4a7a-a491-94d7b351c619", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "9a5cd478-1251-456e-95e8-a99cb9a406f9", - "x-ms-routing-request-id": "WESTUS2:20210607T220447Z:9a5cd478-1251-456e-95e8-a99cb9a406f9" + "x-ms-request-id": "d784125e-b557-4a7a-a491-94d7b351c619", + "x-ms-routing-request-id": "WESTUS:20210615T175330Z:d784125e-b557-4a7a-a491-94d7b351c619" }, "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", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion().json index 42a5418e27ff6..e7b99028bf173 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion().json @@ -6,7 +6,7 @@ "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 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "841427dead8eed1288f3da5f004eaa6a", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 14 Jun 2021 23:38:23 GMT", + "Date": "Fri, 25 Jun 2021 19:18:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edcf71ec-dad4-4040-801d-c5db11b657e3", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "edcf71ec-dad4-4040-801d-c5db11b657e3", - "x-ms-routing-request-id": "WESTUS2:20210614T233824Z:edcf71ec-dad4-4040-801d-c5db11b657e3" + "x-ms-correlation-request-id": "fdd4b472-cee0-4161-8ce0-44b6d081c76c", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "fdd4b472-cee0-4161-8ce0-44b6d081c76c", + "x-ms-routing-request-id": "WESTUS2:20210625T191847Z:fdd4b472-cee0-4161-8ce0-44b6d081c76c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b37d15bad04c294387feb1ffaefa2bcd-106a9e98fa0c2b49-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a67e791421566348b3dd092f58c6cd1c-2fa689118e9d9248-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "29dfaf6e86e55ac1e6d61714ca41c396", "x-ms-return-client-request-id": "true" }, @@ -67,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 14 Jun 2021 23:38:24 GMT", + "Date": "Fri, 25 Jun 2021 19:18:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33aba45c-5967-449c-8d77-992061328c09", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "33aba45c-5967-449c-8d77-992061328c09", - "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:33aba45c-5967-449c-8d77-992061328c09" + "x-ms-correlation-request-id": "2208c4f0-5082-4853-95ff-d9a5798ef6f9", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "2208c4f0-5082-4853-95ff-d9a5798ef6f9", + "x-ms-routing-request-id": "WESTUS2:20210625T191849Z:2208c4f0-5082-4853-95ff-d9a5798ef6f9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg725", @@ -94,8 +94,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-daae84f7524443448ff23045024dad4f-7be6f7fc27d6ec4d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c5821602e5ee2824deb1bfc57fe994db", "x-ms-return-client-request-id": "true" }, @@ -105,61 +104,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 14 Jun 2021 23:38:24 GMT", + "Date": "Fri, 25 Jun 2021 19:18:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c5b7738-192e-462e-902e-98e9f920fa9b", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "8c5b7738-192e-462e-902e-98e9f920fa9b", - "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:8c5b7738-192e-462e-902e-98e9f920fa9b" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0356f86f046de3458f055429ef683ee5-6325992949894e4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e93e191aed6da1f85329a7d7fbd8bdb2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 14 Jun 2021 23:38:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c08a32b-002b-4d83-a891-d59d47304dce", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "5c08a32b-002b-4d83-a891-d59d47304dce", - "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:5c08a32b-002b-4d83-a891-d59d47304dce" + "x-ms-correlation-request-id": "16107078-7fd0-4d1a-9e08-16878425ceca", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "16107078-7fd0-4d1a-9e08-16878425ceca", + "x-ms-routing-request-id": "WESTUS2:20210625T191849Z:16107078-7fd0-4d1a-9e08-16878425ceca" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -186,9 +139,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a2be1bde0f645048bd210d6178748ca0-76707d3f86455645-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "37fdc816a52788f28bb74a34c6fbdbfd", + "traceparent": "00-ecae291b9c515d4bb5a7d3602f6d601c-653affc633aab44b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e93e191aed6da1f85329a7d7fbd8bdb2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -197,15 +150,15 @@ "Cache-Control": "no-cache", "Content-Length": "619", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 14 Jun 2021 23:38:24 GMT", + "Date": "Fri, 25 Jun 2021 19:18:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e509cf85-de1d-4e2c-87bb-eeb23cad9acc", + "x-ms-correlation-request-id": "b612693f-b862-4bad-bd32-d719a2abe057", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "e509cf85-de1d-4e2c-87bb-eeb23cad9acc", - "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:e509cf85-de1d-4e2c-87bb-eeb23cad9acc" + "x-ms-request-id": "b612693f-b862-4bad-bd32-d719a2abe057", + "x-ms-routing-request-id": "WESTUS2:20210625T191849Z:b612693f-b862-4bad-bd32-d719a2abe057" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion()Async.json index 474fed92ae335..e3ed04b97e611 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a324b859d67f5049b6148623e5b90934-3433f76f8c38fa45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1543ec64203e75b54296dc662d745335", "x-ms-return-client-request-id": "true" }, @@ -17,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 14 Jun 2021 23:38:24 GMT", + "Date": "Fri, 25 Jun 2021 19:18:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae93ab09-a415-472e-8661-8c8b5b795ff2", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "ae93ab09-a415-472e-8661-8c8b5b795ff2", - "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:ae93ab09-a415-472e-8661-8c8b5b795ff2" + "x-ms-correlation-request-id": "0e11e3aa-a6e9-4f12-bae1-a2706063eae1", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "0e11e3aa-a6e9-4f12-bae1-a2706063eae1", + "x-ms-routing-request-id": "WESTUS2:20210625T191858Z:0e11e3aa-a6e9-4f12-bae1-a2706063eae1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -54,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-211d03576355444d9406242c5b8902bd-6b5e11cf9970c04a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-96c52ea5e7237f4da7bc5ca9cb3a057c-bd4a85132e11a94c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9cf0fdc85410a953201b3af46d60497b", "x-ms-return-client-request-id": "true" }, @@ -68,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 14 Jun 2021 23:38:24 GMT", + "Date": "Fri, 25 Jun 2021 19:18:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5481c41-7b50-4321-943e-5318561d6d5d", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "a5481c41-7b50-4321-943e-5318561d6d5d", - "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:a5481c41-7b50-4321-943e-5318561d6d5d" + "x-ms-correlation-request-id": "5430ef99-ea60-48ae-87f7-e880bf6d82ac", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "5430ef99-ea60-48ae-87f7-e880bf6d82ac", + "x-ms-routing-request-id": "WESTUS2:20210625T191900Z:5430ef99-ea60-48ae-87f7-e880bf6d82ac" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6232", @@ -95,7 +94,7 @@ "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 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b341daf4674bd8c414e1f14854ed4b91", "x-ms-return-client-request-id": "true" }, @@ -105,61 +104,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 14 Jun 2021 23:38:24 GMT", + "Date": "Fri, 25 Jun 2021 19:18:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58fc6e88-d47c-49ae-b3e7-b103c3a51e3c", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "58fc6e88-d47c-49ae-b3e7-b103c3a51e3c", - "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:58fc6e88-d47c-49ae-b3e7-b103c3a51e3c" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ea1a1473567c4845b4e4ec7dd654449d-603135d01e43c545-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "26b3373f7fbc9853ef6b1e047b80d535", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 14 Jun 2021 23:38:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30d1761b-cb62-458d-bd9e-3419f0e698b5", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "30d1761b-cb62-458d-bd9e-3419f0e698b5", - "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:30d1761b-cb62-458d-bd9e-3419f0e698b5" + "x-ms-correlation-request-id": "23e4c091-7cfb-4018-a273-78f704ce10d9", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "23e4c091-7cfb-4018-a273-78f704ce10d9", + "x-ms-routing-request-id": "WESTUS2:20210625T191900Z:23e4c091-7cfb-4018-a273-78f704ce10d9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -186,8 +139,9 @@ "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 )", - "x-ms-client-request-id": "9a39eb93821260883918882e620b5532", + "traceparent": "00-ba35cd9f39cdab4a88f150e92d014c7a-a525867b631bb643-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "26b3373f7fbc9853ef6b1e047b80d535", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -196,15 +150,15 @@ "Cache-Control": "no-cache", "Content-Length": "619", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 14 Jun 2021 23:38:24 GMT", + "Date": "Fri, 25 Jun 2021 19:18:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13b74336-7f6e-4a22-97c7-4943d934d048", + "x-ms-correlation-request-id": "be207ea7-ac54-489a-b09c-b9eb2224b078", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "13b74336-7f6e-4a22-97c7-4943d934d048", - "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:13b74336-7f6e-4a22-97c7-4943d934d048" + "x-ms-request-id": "be207ea7-ac54-489a-b09c-b9eb2224b078", + "x-ms-routing-request-id": "WESTUS2:20210625T191900Z:be207ea7-ac54-489a-b09c-b9eb2224b078" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetEmptyException().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetEmptyException().json new file mode 100644 index 0000000000000..1e6221148dc1c --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetEmptyException().json @@ -0,0 +1,80285 @@ +{ + "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-1776f7bd12f20c43823bcfde872ebe1d-e00da5c4148c3b45-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5f3323bea4b450e99e280c83bbaad586", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:45:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c005a196-a5c5-44c5-9f8d-15185d860ecb", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "c005a196-a5c5-44c5-9f8d-15185d860ecb", + "x-ms-routing-request-id": "WESTUS:20210617T004529Z:c005a196-a5c5-44c5-9f8d-15185d860ecb" + }, + "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/?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4a97b439aaaeb046a058643c439934b2-145f375c1525a841-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "19b2bd60e2b9783ed2f9c4cf4303865c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1232568", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:45:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "91c48d5c-3278-4e48-af35-b9d5094681b8", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "91c48d5c-3278-4e48-af35-b9d5094681b8", + "x-ms-routing-request-id": "WESTUS:20210617T004532Z:91c48d5c-3278-4e48-af35-b9d5094681b8" + }, + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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": [] + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "CommunicationServices", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "CommunicationServices/eventGridFilters", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "CheckNameAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + ], + "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": [] + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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": [] + } + ], + "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": [] + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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", + "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", + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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": [] + } + ], + "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", + "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", + "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", + "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", + "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", + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "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" + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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", + "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", + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-08-26" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2020-07-01-preview" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "catalogs/products", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/products/devicegroups", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/devices", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/certificates", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/images", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/deployments", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-01-01-preview", + "2020-11-01-preview", + "2020-10-01" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "clusters/arcSettings", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "clusters/arcSettings/extensions", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/experiments/jobs", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "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" + } + ], + "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" + } + ], + "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", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "blockchainMembers", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2021-05-13-preview" + ], + "defaultApiVersion": "2021-05-13-preview", + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/HybridIdentityMetadata", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/Extensions", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "VirtualMachines/GuestAgents", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listMonitoredResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listApiKeys", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/getDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/setDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/singleSignOnConfigurations", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listHosts", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listLinkedResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/refreshSetPasswordLink", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "agreements", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/instances", + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ + "West US 2", + "UK South" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "devcenters", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "projects/environmentTypes", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "projects/environments/deployments", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-12-08" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US 2 EUAP", + "West Central US", + "West Europe", + "East US" + ], + "apiVersions": [ + "2020-01-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview" + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "defaultApiVersion": "2020-10-01-preview", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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", + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "objectAnchorsAccounts", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-06-23-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2019-11-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2019-11-04-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedInstances", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2021-06-30-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "supportOfferingEntitlement", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/usages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/availableOSs", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testTypes", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/flightingRings", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/packages/osUpdates", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testSummaries", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/favoriteProcesses", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults/analysisResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/emailEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/customerEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + } + ] + } + } + ], + "Variables": { + "RandomSeed": "1892950365", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetEmptyException()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetEmptyException()Async.json new file mode 100644 index 0000000000000..bde129628c298 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetEmptyException()Async.json @@ -0,0 +1,80285 @@ +{ + "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-914554e5b8dc2343ad945f6657a0cd9f-eb80bddafe1f7c4d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5f3323bea4b450e99e280c83bbaad586", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:45:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8ecc2037-e41b-4dc5-b4b0-084519ae0abb", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "8ecc2037-e41b-4dc5-b4b0-084519ae0abb", + "x-ms-routing-request-id": "WESTUS:20210617T004529Z:8ecc2037-e41b-4dc5-b4b0-084519ae0abb" + }, + "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/?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-9f9c034ef1128d46bb5caa2121dfc2b3-b1f22e467170d140-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "19b2bd60e2b9783ed2f9c4cf4303865c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1232568", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:45:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fbceac4d-06a0-4a60-977a-d3b14125df29", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "fbceac4d-06a0-4a60-977a-d3b14125df29", + "x-ms-routing-request-id": "WESTUS:20210617T004532Z:fbceac4d-06a0-4a60-977a-d3b14125df29" + }, + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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": [] + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "CommunicationServices", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "CommunicationServices/eventGridFilters", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "CheckNameAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + ], + "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": [] + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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": [] + } + ], + "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": [] + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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", + "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", + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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": [] + } + ], + "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", + "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", + "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", + "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", + "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", + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "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" + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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", + "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", + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-08-26" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2020-07-01-preview" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "catalogs/products", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/products/devicegroups", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/devices", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/certificates", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/images", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/deployments", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-01-01-preview", + "2020-11-01-preview", + "2020-10-01" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "clusters/arcSettings", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "clusters/arcSettings/extensions", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/experiments/jobs", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "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" + } + ], + "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" + } + ], + "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", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "blockchainMembers", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2021-05-13-preview" + ], + "defaultApiVersion": "2021-05-13-preview", + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/HybridIdentityMetadata", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/Extensions", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "VirtualMachines/GuestAgents", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listMonitoredResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listApiKeys", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/getDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/setDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/singleSignOnConfigurations", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listHosts", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listLinkedResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/refreshSetPasswordLink", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "agreements", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/instances", + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ + "West US 2", + "UK South" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "devcenters", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "projects/environmentTypes", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "projects/environments/deployments", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-12-08" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US 2 EUAP", + "West Central US", + "West Europe", + "East US" + ], + "apiVersions": [ + "2020-01-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview" + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "defaultApiVersion": "2020-10-01-preview", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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", + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "objectAnchorsAccounts", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-06-23-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2019-11-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2019-11-04-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedInstances", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2021-06-30-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "supportOfferingEntitlement", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/usages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/availableOSs", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testTypes", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/flightingRings", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/packages/osUpdates", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testSummaries", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/favoriteProcesses", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults/analysisResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/emailEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/customerEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + } + ] + } + } + ], + "Variables": { + "RandomSeed": "1892950365", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromSubscription(%microsoft.insights%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromSubscription(%microsoft.insights%).json new file mode 100644 index 0000000000000..238a209b5dd16 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromSubscription(%microsoft.insights%).json @@ -0,0 +1,1605 @@ +{ + "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": "|f18c1a39-48db88879dbb04e9.", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "11f7a3d5473e1c8fe10958f646f0a17b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:46:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "43e5c93b-ea54-4446-bbf1-40f8427cd32d", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "43e5c93b-ea54-4446-bbf1-40f8427cd32d", + "x-ms-routing-request-id": "WESTUS:20210617T004643Z:43e5c93b-ea54-4446-bbf1-40f8427cd32d" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8f8684351d06d4fdf84834ef23cc4907", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23922", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:46:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "20130bda-5260-4e04-ae01-ed9d74e24fe9", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "20130bda-5260-4e04-ae01-ed9d74e24fe9", + "x-ms-routing-request-id": "WESTUS:20210617T004643Z:20130bda-5260-4e04-ae01-ed9d74e24fe9" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "181734300", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromSubscription(%microsoft.insights%)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromSubscription(%microsoft.insights%)Async.json new file mode 100644 index 0000000000000..67bf7803897af --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromSubscription(%microsoft.insights%)Async.json @@ -0,0 +1,1605 @@ +{ + "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-94d096a87a235f49b1187e30e1707f3d-8b49ecd31799104a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c635f4320c100a08da26d3eebabdea35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:46:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fda654d8-70e7-43e5-bdd0-999354d457ce", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "fda654d8-70e7-43e5-bdd0-999354d457ce", + "x-ms-routing-request-id": "WESTUS:20210617T004639Z:fda654d8-70e7-43e5-bdd0-999354d457ce" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f82becc2534c0e0f8bc3107b43dc017c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23922", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:46:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0edd4036-9651-42d1-8d0d-9023ee8e1204", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "0edd4036-9651-42d1-8d0d-9023ee8e1204", + "x-ms-routing-request-id": "WESTUS:20210617T004639Z:0edd4036-9651-42d1-8d0d-9023ee8e1204" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "1814902176", + "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%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromTenant(%microsoft.compute%).json new file mode 100644 index 0000000000000..026de6a20d02e --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromTenant(%microsoft.compute%).json @@ -0,0 +1,4650 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "95694a2be1403c4628b413d53c3bf482", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Jun 2021 08:24:23 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" + }, + "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/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", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "70185", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Jun 2021 08:24:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "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" + }, + "ResponseBody": { + "namespace": "Microsoft.Compute", + "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", + "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", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "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", + "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", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-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": [], + "capabilities": "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", + "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", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "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", + "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", + "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": [], + "capabilities": "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "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", + "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", + "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", + "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", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "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/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": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "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", + "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", + "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", + "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", + "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-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", + "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", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachines/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", + "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" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "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", + "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", + "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-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", + "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", + "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", + "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" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "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", + "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" + ], + "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": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "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" + ], + "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", + "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" + ], + "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", + "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" + ], + "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", + "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-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", + "France South", + "Australia Central 2", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" + ], + "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", + "France South", + "Australia Central 2", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" + ], + "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", + "France South", + "Australia Central 2", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" + ], + "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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-03-01", + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "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", + "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", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "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", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "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": "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" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [], + "capabilities": "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", + "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" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "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", + "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" + ], + "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", + "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-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": "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", + "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-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "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": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "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-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [], + "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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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", + "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": "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", + "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": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "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", + "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", + "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", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [], + "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 2 EUAP", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "Central US EUAP", + "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", + "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", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [], + "capabilities": "SupportsTags, SupportsLocation" + } + ] + } + } + ], + "Variables": { + "RandomSeed": "773369925", + "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/ProviderContainerTests/GetFromTenant(%microsoft.compute%)Async.json new file mode 100644 index 0000000000000..901acccee3d84 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetFromTenant(%microsoft.compute%)Async.json @@ -0,0 +1,4650 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "52f660c12e0168d61ff58c713016870e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Jun 2021 08:24:23 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" + }, + "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/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", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "70185", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Jun 2021 08:24:23 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" + }, + "ResponseBody": { + "namespace": "Microsoft.Compute", + "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", + "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", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "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", + "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", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-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": [], + "capabilities": "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", + "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", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "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", + "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", + "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": [], + "capabilities": "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "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", + "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", + "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", + "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", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "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/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": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "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", + "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", + "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", + "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", + "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-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", + "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", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachines/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", + "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" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "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", + "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", + "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-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", + "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", + "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", + "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" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "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", + "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" + ], + "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": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "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" + ], + "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", + "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" + ], + "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", + "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" + ], + "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", + "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-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", + "France South", + "Australia Central 2", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" + ], + "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", + "France South", + "Australia Central 2", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" + ], + "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", + "France South", + "Australia Central 2", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" + ], + "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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-03-01", + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "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", + "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", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "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", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "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": "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" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [], + "capabilities": "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", + "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" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "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", + "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" + ], + "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", + "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-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": "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", + "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-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "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": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "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-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [], + "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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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", + "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": "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", + "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": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "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", + "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", + "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", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [], + "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 2 EUAP", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "Central US EUAP", + "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", + "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", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [], + "capabilities": "SupportsTags, SupportsLocation" + } + ] + } + } + ], + "Variables": { + "RandomSeed": "885766600", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetNullException().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetNullException().json new file mode 100644 index 0000000000000..bc319d4aed63f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetNullException().json @@ -0,0 +1,53 @@ +{ + "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.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8dadb509a04d4673eb1b6ab3c9c81eab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:46:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "50cce674-91d7-4853-8bdf-537cb93cd357", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "50cce674-91d7-4853-8bdf-537cb93cd357", + "x-ms-routing-request-id": "WESTUS:20210617T004644Z:50cce674-91d7-4853-8bdf-537cb93cd357" + }, + "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" + } + } + } + ], + "Variables": { + "RandomSeed": "679797333", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetNullException()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetNullException()Async.json new file mode 100644 index 0000000000000..13c9483dadaf9 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/GetNullException()Async.json @@ -0,0 +1,54 @@ +{ + "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-76d570fb6f1fbb42bcf9532d3d41d6c0-f9187a6079ed4643-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "567a50c54171c60a9c9408204b5891a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:46:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "335a5093-bc81-4cf3-85fe-723ff636fe1d", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "335a5093-bc81-4cf3-85fe-723ff636fe1d", + "x-ms-routing-request-id": "WESTUS:20210617T004641Z:335a5093-bc81-4cf3-85fe-723ff636fe1d" + }, + "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" + } + } + } + ], + "Variables": { + "RandomSeed": "1890417871", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/List().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/List().json new file mode 100644 index 0000000000000..244154868385e --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/List().json @@ -0,0 +1,80285 @@ +{ + "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-a9a6d0849717334ea7509fec35db5820-345dc3589f77b14e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "70e36d10e220e131536c770e2e57ba4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:46:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7fa05b00-f2d1-4159-8e23-7b1ba053133c", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "7fa05b00-f2d1-4159-8e23-7b1ba053133c", + "x-ms-routing-request-id": "WESTUS:20210617T004645Z:7fa05b00-f2d1-4159-8e23-7b1ba053133c" + }, + "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?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-81093424172c184db72c8e58a51f0452-7f673f6f06daf548-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f92fd5f2d0cb71fcc10643dadfbbcce8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1232568", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 17 Jun 2021 00:46:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dca22b53-eb0c-4473-ad6b-ad296e29e17e", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "dca22b53-eb0c-4473-ad6b-ad296e29e17e", + "x-ms-routing-request-id": "WESTUS:20210617T004647Z:dca22b53-eb0c-4473-ad6b-ad296e29e17e" + }, + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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": [] + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "CommunicationServices", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "CommunicationServices/eventGridFilters", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "CheckNameAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + ], + "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": [] + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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": [] + } + ], + "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": [] + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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", + "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", + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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": [] + } + ], + "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", + "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", + "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", + "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", + "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", + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "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" + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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", + "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", + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-08-26" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2020-07-01-preview" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "catalogs/products", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/products/devicegroups", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/devices", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/certificates", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/images", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/deployments", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-01-01-preview", + "2020-11-01-preview", + "2020-10-01" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "clusters/arcSettings", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "clusters/arcSettings/extensions", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/experiments/jobs", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "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" + } + ], + "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" + } + ], + "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", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "blockchainMembers", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2021-05-13-preview" + ], + "defaultApiVersion": "2021-05-13-preview", + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/HybridIdentityMetadata", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/Extensions", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "VirtualMachines/GuestAgents", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listMonitoredResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listApiKeys", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/getDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/setDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/singleSignOnConfigurations", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listHosts", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listLinkedResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/refreshSetPasswordLink", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "agreements", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/instances", + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ + "West US 2", + "UK South" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "devcenters", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "projects/environmentTypes", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "projects/environments/deployments", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-12-08" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US 2 EUAP", + "West Central US", + "West Europe", + "East US" + ], + "apiVersions": [ + "2020-01-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview" + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "defaultApiVersion": "2020-10-01-preview", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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", + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "objectAnchorsAccounts", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-06-23-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2019-11-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2019-11-04-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedInstances", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2021-06-30-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "supportOfferingEntitlement", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/usages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/availableOSs", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testTypes", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/flightingRings", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/packages/osUpdates", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testSummaries", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/favoriteProcesses", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults/analysisResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/emailEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/customerEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + } + ] + } + } + ], + "Variables": { + "RandomSeed": "1600243532", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/List()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/List()Async.json new file mode 100644 index 0000000000000..04e56acf66f92 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderContainerTests/List()Async.json @@ -0,0 +1,80375 @@ +{ + "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-6c6a6e6fb0e63c4d9e5fd626742504e6-7a29bb13eeb0fd43-00", + "User-Agent": [ + "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210622.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5288c797f82def4af4911363b726a32c", + "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": "Tue, 22 Jun 2021 22:33:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5e47bbf4-877f-47ac-9f01-c3247f1e6bbe", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "5e47bbf4-877f-47ac-9f01-c3247f1e6bbe", + "x-ms-routing-request-id": "WESTUS:20210622T223337Z:5e47bbf4-877f-47ac-9f01-c3247f1e6bbe" + }, + "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?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-acc245e513d3b9428443503a4369bd0a-f9b7602eacf80449-00", + "User-Agent": [ + "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210622.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b700b0c9d7b4e7d506b7c2a853ed9e63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1234023", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 22 Jun 2021 22:33:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "acc3f6b2-0310-4645-8eec-dcb42c536155", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "acc3f6b2-0310-4645-8eec-dcb42c536155", + "x-ms-routing-request-id": "WESTUS:20210622T223339Z:acc3f6b2-0310-4645-8eec-dcb42c536155" + }, + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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-06-01-preview", + "2021-06-01", + "2021-05-01-privatepreview", + "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": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/capabilities", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "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 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 US", + "West US 2" + ], + "apiVersions": [ + "2021-06-01-preview", + "2021-06-01", + "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 India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "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 US", + "West US 2" + ], + "apiVersions": [ + "2021-06-01-preview", + "2021-06-01", + "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 India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan West", + "Japan East", + "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 US", + "West US 2" + ], + "apiVersions": [ + "2021-06-01-preview", + "2021-06-01", + "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" + } + ], + "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", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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", + "locations": [ + "UK South", + "UK West", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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": "hostpools/msixpackages", + "locations": [ + "UK South", + "UK West", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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", + "Canada East", + "Canada Central", + "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-03-09-preview", + "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-03-09-preview", + "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" + } + ], + "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", + "Southeast Asia" + ], + "apiVersions": [ + "2021-06-01-preview", + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "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", + "Southeast Asia" + ], + "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", + "Southeast Asia" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "CommunicationServices", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "CommunicationServices/eventGridFilters", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "CheckNameAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + } + ], + "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-06-01-preview", + "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-06-01-preview", + "2021-04-01-preview", + "2020-05-01" + ], + "defaultApiVersion": "2021-04-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-06-01-preview", + "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-06-01-preview", + "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-06-01-preview", + "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-06-01-preview", + "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-06-01-preview", + "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-06-01-preview", + "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-06-01-preview", + "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" + } + ], + "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" + ], + "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": [] + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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": [] + } + ], + "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": [] + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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", + "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", + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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", + "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", + "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", + "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", + "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", + "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", + "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", + "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": [] + } + ], + "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", + "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", + "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", + "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", + "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", + "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" + } + ], + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "2021-01-01", + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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" + } + ], + "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-15", + "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" + } + ], + "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-15", + "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" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "runtimes", + "locations": [], + "apiVersions": [ + "2021-01-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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" + } + ], + "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-15", + "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" + } + ], + "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-15", + "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" + } + ], + "capabilities": "None" + }, + { + "resourceType": "kubeEnvironments", + "locations": [ + "North Central US (Stage)", + "West Central US", + "East US", + "West Europe" + ], + "apiVersions": [ + "2021-01-15", + "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" + } + ], + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "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-15", + "2021-01-01", + "2020-12-01" + ], + "defaultApiVersion": "2021-02-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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-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": [] + } + ], + "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": [] + } + ], + "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": [] + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-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": [] + } + ], + "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": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "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": [ + "2021-06-01", + "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" + ], + "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": [ + "2021-06-01", + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-06-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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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", + "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", + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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": [] + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-08-26" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2020-07-01-preview" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "catalogs/products", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/products/devicegroups", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/devices", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/certificates", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/images", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/deployments", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-01-01-preview", + "2020-11-01-preview", + "2020-10-01" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "clusters/arcSettings", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "clusters/arcSettings/extensions", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/experiments/jobs", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "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" + } + ], + "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" + } + ], + "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", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "blockchainMembers", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2021-05-13-preview" + ], + "defaultApiVersion": "2021-05-13-preview", + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/HybridIdentityMetadata", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/Extensions", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "VirtualMachines/GuestAgents", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listMonitoredResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listApiKeys", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/getDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/setDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/singleSignOnConfigurations", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listHosts", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/listLinkedResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors/refreshSetPasswordLink", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "agreements", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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", + "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" + } + ], + "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" + } + ], + "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", + "Jio India West", + "Jio India Central", + "West US 3" + ], + "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", + "Jio India West", + "Jio India Central", + "West US 3" + ], + "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", + "Jio India West", + "Jio India Central", + "West US 3" + ], + "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", + "Jio India West", + "Jio India Central", + "West US 3" + ], + "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", + "Jio India West", + "Jio India Central", + "West US 3" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/instances", + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "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", + "Japan East", + "Southeast Asia", + "Australia East", + "North Europe" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [ + "West US 2", + "UK South" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ + "West US 2", + "UK South" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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", + "South 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", + "South 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", + "South 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", + "South 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": [ + { + "applicationId": "2dc3760b-4713-48b1-a383-1dfe3e449ec2", + "roleDefinitionId": "67ea68da-c3c7-4ee5-9e29-273c51f4f047" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-12-08" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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": [ + "2021-05-01", + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-05-01", + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/OperationStatuses", + "locations": [ + "East US 2 EUAP", + "West Central US", + "West Europe", + "East US" + ], + "apiVersions": [ + "2021-05-01", + "2020-01-01-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview" + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "defaultApiVersion": "2020-10-01-preview", + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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.MarketplaceNotifications", + "namespace": "Microsoft.MarketplaceNotifications", + "resourceTypes": [ + { + "resourceType": "reviewsnotifications", + "locations": [], + "apiVersions": [ + "2021-03-03" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-03-03" + ], + "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", + "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", + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "objectAnchorsAccounts", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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 Central US", + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-06-23-preview" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2019-11-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2019-11-04-preview" + ], + "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" + } + ], + "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": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedInstances", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2021-06-30-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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-04-01", + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + } + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "supportOfferingEntitlement", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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", + "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" + } + ], + "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", + "West US 3", + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/usages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/availableOSs", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testTypes", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/flightingRings", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/packages/osUpdates", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testSummaries", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/favoriteProcesses", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults/analysisResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/emailEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/customerEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + } + ] + } + } + ], + "Variables": { + "RandomSeed": "1219314852", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Get().json new file mode 100644 index 0000000000000..09487c8b9b469 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Get().json @@ -0,0 +1,1611 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "2551325f3a64cbfd4ef972c55cb6b512", + "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, 25 Jun 2021 17:22:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "92967db3-d7b0-49cf-8de9-464f3c72f930", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "92967db3-d7b0-49cf-8de9-464f3c72f930", + "x-ms-routing-request-id": "WESTUS:20210625T172213Z:92967db3-d7b0-49cf-8de9-464f3c72f930" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-f3c669d4ebbb2d499dfce2d29f26b866-3a2f13d8e2f3e540-00", + "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": "cf8129f79d9757c67e329be043afff45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23925", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d18c1088-0679-409d-9322-ffa9bc4a6558", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "d18c1088-0679-409d-9322-ffa9bc4a6558", + "x-ms-routing-request-id": "WESTUS:20210625T172213Z:d18c1088-0679-409d-9322-ffa9bc4a6558" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Unregistering", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "1039893432", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Get()Async.json new file mode 100644 index 0000000000000..b611fe39be1ec --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Get()Async.json @@ -0,0 +1,1611 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "6aaef90a69323c359d4f89e09691799d", + "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, 25 Jun 2021 17:22:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d7e08f92-7dc9-4f86-a155-76d433c9603f", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "d7e08f92-7dc9-4f86-a155-76d433c9603f", + "x-ms-routing-request-id": "WESTUS:20210625T172213Z:d7e08f92-7dc9-4f86-a155-76d433c9603f" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-bd84e4201a5b804eabd6b51d7c638946-bddf2eb6a5153a4d-00", + "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": "549fdd5916b887ea61deb2552bc34ec0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23925", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dd900df1-9502-4551-ae8b-ebfa26f5f09c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "dd900df1-9502-4551-ae8b-ebfa26f5f09c", + "x-ms-routing-request-id": "WESTUS:20210625T172213Z:dd900df1-9502-4551-ae8b-ebfa26f5f09c" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Unregistering", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "389584218", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Register().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Register().json new file mode 100644 index 0000000000000..617a95494544d --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Register().json @@ -0,0 +1,5724 @@ +{ + "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": "|5adc9e6a-416277ff868e156d.", + "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": "23d54f9bcb33881b92d319bf2a35c27c", + "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, 25 Jun 2021 17:22:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9a65ed51-eb96-4e12-b086-46ab972031e3", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "9a65ed51-eb96-4e12-b086-46ab972031e3", + "x-ms-routing-request-id": "WESTUS:20210625T172213Z:9a65ed51-eb96-4e12-b086-46ab972031e3" + }, + "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-b035022364c6c44ba5795caf0f064e11-15d33c5e42211d45-00", + "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": "74add4ef224ba7202e364462f70eeb9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "54403", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f7e204f5-bb1d-4ea2-a256-07733380bf50", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "f7e204f5-bb1d-4ea2-a256-07733380bf50", + "x-ms-routing-request-id": "WESTUS:20210625T172213Z:f7e204f5-bb1d-4ea2-a256-07733380bf50" + }, + "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": [] + } + ], + "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": [] + } + ], + "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": [] + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-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": [] + } + ], + "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": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.insights/register?api-version=2019-10-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-56350a5b59c34346baa86642767cad9a-37f09334a1690142-00", + "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": "672617b55abe2316e8eef40e949ce9c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23923", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8d6ecd6d-c494-4fed-8945-5c5b092083ef", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "8d6ecd6d-c494-4fed-8945-5c5b092083ef", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:8d6ecd6d-c494-4fed-8945-5c5b092083ef" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Registering", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "1966214146", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Register()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Register()Async.json new file mode 100644 index 0000000000000..34dba85dc3fd5 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Register()Async.json @@ -0,0 +1,5723 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "23d54f9bcb33881b92d319bf2a35c27c", + "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, 25 Jun 2021 17:22:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7a9946d8-c5c2-4803-b6df-7c94eddf66cc", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "7a9946d8-c5c2-4803-b6df-7c94eddf66cc", + "x-ms-routing-request-id": "WESTUS:20210625T172213Z:7a9946d8-c5c2-4803-b6df-7c94eddf66cc" + }, + "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-17d163f2d2f6ed4890fea065c7541d0e-a1dab9a5d855b04e-00", + "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": "74add4ef224ba7202e364462f70eeb9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "54403", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2658bee6-0cb8-43ae-a89e-8264de61c8bb", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "2658bee6-0cb8-43ae-a89e-8264de61c8bb", + "x-ms-routing-request-id": "WESTUS:20210625T172213Z:2658bee6-0cb8-43ae-a89e-8264de61c8bb" + }, + "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": [] + } + ], + "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": [] + } + ], + "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": [] + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-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": [] + } + ], + "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": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.insights/register?api-version=2019-10-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-0b28bebb62e1bc4788db9d4e0ffe3dd0-961f541f35fb3e4d-00", + "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": "672617b55abe2316e8eef40e949ce9c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23923", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5f3368c0-acbd-4f13-94a7-412b1e07ca2f", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "5f3368c0-acbd-4f13-94a7-412b1e07ca2f", + "x-ms-routing-request-id": "WESTUS:20210625T172214Z:5f3368c0-acbd-4f13-94a7-412b1e07ca2f" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Registering", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "1966214146", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterEmptyException().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterEmptyException().json new file mode 100644 index 0000000000000..25823895c4da7 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterEmptyException().json @@ -0,0 +1,1646 @@ +{ + "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-5ba4c54e4e29f644878c35141c8d9277-27ad2e0d25275d49-00", + "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": "d5eb54362fd7ac3cb98e2fe97ab0267b", + "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, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f04f8a3d-9a1e-4840-9b96-0826200d831a", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "f04f8a3d-9a1e-4840-9b96-0826200d831a", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:f04f8a3d-9a1e-4840-9b96-0826200d831a" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-330436e6c70a9148a5a48d43ad8f67b4-79550751e6009a4f-00", + "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": "b19a826540c917bcf58c994d101ff7e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23923", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9f1f535c-b88b-474f-96d9-26d7da686f25", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "9f1f535c-b88b-474f-96d9-26d7da686f25", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:9f1f535c-b88b-474f-96d9-26d7da686f25" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Registering", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers//register?api-version=2019-10-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-092fae17cfc9104a921076afef51a62a-d992f5dfe887a14d-00", + "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": "1210cd0d8af454f116f340fc1b09b1e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "194", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9d27306d-3a4d-41e9-8c8f-165fa4808a5b", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "9d27306d-3a4d-41e9-8c8f-165fa4808a5b", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:9d27306d-3a4d-41e9-8c8f-165fa4808a5b" + }, + "ResponseBody": { + "message": "No HTTP resource was found that matches the request URI \u0027https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/register?api-version=2019-10-01\u0027." + } + } + ], + "Variables": { + "RandomSeed": "1741330235", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterEmptyException()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterEmptyException()Async.json new file mode 100644 index 0000000000000..9602bd97c54ee --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterEmptyException()Async.json @@ -0,0 +1,1636 @@ +{ + "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.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fab4e572e524241bfa6308dc4d974337", + "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, 25 Jun 2021 19:19:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4ea8dfe1-d8eb-4bb4-999c-13d33e1515f0", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "4ea8dfe1-d8eb-4bb4-999c-13d33e1515f0", + "x-ms-routing-request-id": "WESTUS:20210625T191934Z:4ea8dfe1-d8eb-4bb4-999c-13d33e1515f0" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-9601dba0abb5db44a041237af5e42f30-9d1c7c4d3af0ec4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "140595bef8c71555952b2f31341a9e45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23924", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 19:19:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "116a2d3e-4cdd-4f04-811a-e72eae47fa0a", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "116a2d3e-4cdd-4f04-811a-e72eae47fa0a", + "x-ms-routing-request-id": "WESTUS:20210625T191934Z:116a2d3e-4cdd-4f04-811a-e72eae47fa0a" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Unregistered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers//register?api-version=2019-10-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-3490e529b2ef7549a1badad586d3fa5a-ba45f68d79ba7744-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0b97f3e6e378c51154bc0105b4182cae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "194", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 19:19:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cf538d42-4161-4d59-877b-e1be0fdf5b00", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "cf538d42-4161-4d59-877b-e1be0fdf5b00", + "x-ms-routing-request-id": "WESTUS:20210625T191934Z:cf538d42-4161-4d59-877b-e1be0fdf5b00" + }, + "ResponseBody": { + "message": "No HTTP resource was found that matches the request URI \u0027https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/register?api-version=2019-10-01\u0027." + } + } + ], + "Variables": { + "RandomSeed": "503396766", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterNullException().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterNullException().json new file mode 100644 index 0000000000000..9b67e68fca7fe --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterNullException().json @@ -0,0 +1,1611 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "3269ef2fdd192f0216403c7a521b77e6", + "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, 25 Jun 2021 17:22:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "eff5e884-8a58-4b36-b73b-b076eb024b03", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "eff5e884-8a58-4b36-b73b-b076eb024b03", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:eff5e884-8a58-4b36-b73b-b076eb024b03" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-ad65447cb8ef904aa050e34b7485745b-b93d643df5a75249-00", + "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": "c370c2aaa068264c6099813955745aa1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23923", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2e93822d-377b-4bc9-94a4-9d2cd5ea1611", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "2e93822d-377b-4bc9-94a4-9d2cd5ea1611", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:2e93822d-377b-4bc9-94a4-9d2cd5ea1611" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Registering", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "887544327", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterNullException()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterNullException()Async.json new file mode 100644 index 0000000000000..4b7c1ed72b30d --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/RegisterNullException()Async.json @@ -0,0 +1,1611 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "55ff5ed67dc44ad0e38fcca67b719eae", + "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, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ceeccce7-f52c-4a29-8f9f-4b8dbd619308", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "ceeccce7-f52c-4a29-8f9f-4b8dbd619308", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:ceeccce7-f52c-4a29-8f9f-4b8dbd619308" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a9dd906c86244845a8f4f906da29578f-9de276b4fcadaa4f-00", + "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": "cc098fd2ca349af4747a430678f682d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23923", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f9f9f9e1-a652-4817-b0a1-2cca88ff43fe", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "f9f9f9e1-a652-4817-b0a1-2cca88ff43fe", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:f9f9f9e1-a652-4817-b0a1-2cca88ff43fe" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Registering", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "1658072255", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Unregister().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Unregister().json new file mode 100644 index 0000000000000..603c78d2ba087 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Unregister().json @@ -0,0 +1,3167 @@ +{ + "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": "|5adc9e6b-416277ff868e156d.", + "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": "bfd521627e5b94c4e0ba1e413138337d", + "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, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9b54ed93-8ed0-459c-a1e9-da582d02b9c3", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "9b54ed93-8ed0-459c-a1e9-da582d02b9c3", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:9b54ed93-8ed0-459c-a1e9-da582d02b9c3" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-dea13ba02bfccf4094677ad4ba35d1fc-f10cb28be5051d43-00", + "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": "84fa3c2d6fa182c5e120e3b215999a43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23923", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a575fc06-cb8d-411f-a009-b310617f68ce", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "a575fc06-cb8d-411f-a009-b310617f68ce", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:a575fc06-cb8d-411f-a009-b310617f68ce" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Registering", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.insights/unregister?api-version=2019-10-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4c7651dd9ef3a54291bdc4099147df65-26bf637614120f45-00", + "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": "5334e863a62e9d45296640ac730b3457", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23925", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "637c17cf-0e66-443f-a0a9-05aed9b426bc", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "637c17cf-0e66-443f-a0a9-05aed9b426bc", + "x-ms-routing-request-id": "WESTUS:20210625T172216Z:637c17cf-0e66-443f-a0a9-05aed9b426bc" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Unregistering", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "164037313", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Unregister()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Unregister()Async.json new file mode 100644 index 0000000000000..bce7baf17416f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/Unregister()Async.json @@ -0,0 +1,3166 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "d457aa7584bd6ea2740a223b0329a846", + "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, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e7ec1000-9bb1-4416-8f50-5ee6de93952c", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "e7ec1000-9bb1-4416-8f50-5ee6de93952c", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:e7ec1000-9bb1-4416-8f50-5ee6de93952c" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-91ebd08e5c750b4a8be8b0a964aaf7a6-d98965c434e37f4d-00", + "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": "949f11fbca6ad0934faa60fa9aa6b4f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23923", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b6953a64-b9b1-4063-9c61-43a499683140", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "b6953a64-b9b1-4063-9c61-43a499683140", + "x-ms-routing-request-id": "WESTUS:20210625T172215Z:b6953a64-b9b1-4063-9c61-43a499683140" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Registering", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.insights/unregister?api-version=2019-10-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-fa8e83baf5500943b989a807896002ca-26da34540407354f-00", + "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": "d7d2c1ecdeb3ee23c8b8df98aa053ea6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23925", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "46132667-d8b6-42ca-a65e-77f86c040a03", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "46132667-d8b6-42ca-a65e-77f86c040a03", + "x-ms-routing-request-id": "WESTUS:20210625T172216Z:46132667-d8b6-42ca-a65e-77f86c040a03" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Unregistering", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "852599229", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterEmptyException().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterEmptyException().json new file mode 100644 index 0000000000000..9cfab6c6d6c65 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterEmptyException().json @@ -0,0 +1,1645 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "1fc6e121542f18991ebe2f16266055b8", + "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, 25 Jun 2021 17:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bda4ec7d-6fd3-4f31-8bc7-c7676b762c81", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "bda4ec7d-6fd3-4f31-8bc7-c7676b762c81", + "x-ms-routing-request-id": "WESTUS:20210625T172216Z:bda4ec7d-6fd3-4f31-8bc7-c7676b762c81" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-6c8c062e8c67c44aa51d2fea85938a06-fe6a5299d0a7ed4b-00", + "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": "667a08a2b03ab6c658a1b92226c12245", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23925", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "55c7b1b5-641e-4142-86a5-220d924d807e", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "55c7b1b5-641e-4142-86a5-220d924d807e", + "x-ms-routing-request-id": "WESTUS:20210625T172216Z:55c7b1b5-641e-4142-86a5-220d924d807e" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Unregistering", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers//unregister?api-version=2019-10-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-3b3a7b70dd88dc48aec726f92f316e5d-34e7cea5a274e14a-00", + "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": "3aa656219bd7dffc668dfc9749210ce4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "196", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c2af726b-f313-4159-b67f-c593bbed6e0f", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "c2af726b-f313-4159-b67f-c593bbed6e0f", + "x-ms-routing-request-id": "WESTUS:20210625T172216Z:c2af726b-f313-4159-b67f-c593bbed6e0f" + }, + "ResponseBody": { + "message": "No HTTP resource was found that matches the request URI \u0027https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/unregister?api-version=2019-10-01\u0027." + } + } + ], + "Variables": { + "RandomSeed": "88045817", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterEmptyException()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterEmptyException()Async.json new file mode 100644 index 0000000000000..9d12558fe2e35 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterEmptyException()Async.json @@ -0,0 +1,1636 @@ +{ + "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.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "300dea490019b69acb2f040e0f56fdac", + "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, 25 Jun 2021 19:19:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8937626b-bbeb-4ce5-938b-423320cc0b58", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "8937626b-bbeb-4ce5-938b-423320cc0b58", + "x-ms-routing-request-id": "WESTUS:20210625T191934Z:8937626b-bbeb-4ce5-938b-423320cc0b58" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-76f728d557767f4681abbbbbe0644618-89a8168d2fb95c4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "924046140f7063918bb6c6bec4b3afef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23924", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 19:19:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3054326c-5316-4fb0-aae6-8890ac8e5471", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "3054326c-5316-4fb0-aae6-8890ac8e5471", + "x-ms-routing-request-id": "WESTUS:20210625T191935Z:3054326c-5316-4fb0-aae6-8890ac8e5471" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Unregistered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers//unregister?api-version=2019-10-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-dedd3fbe57299241b65b0902591bb346-399cfe4f4351b94b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "af8fbc71bcd6033e2c041fc9ab36966d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "196", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 19:19:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6eed6c0e-7626-42db-9218-9aa1713e175f", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "6eed6c0e-7626-42db-9218-9aa1713e175f", + "x-ms-routing-request-id": "WESTUS:20210625T191935Z:6eed6c0e-7626-42db-9218-9aa1713e175f" + }, + "ResponseBody": { + "message": "No HTTP resource was found that matches the request URI \u0027https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/unregister?api-version=2019-10-01\u0027." + } + } + ], + "Variables": { + "RandomSeed": "309034079", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterNullException().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterNullException().json new file mode 100644 index 0000000000000..5460e3fa91a0f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterNullException().json @@ -0,0 +1,1611 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "047e8ed82e3c3470a1c5b9100ae77f3b", + "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, 25 Jun 2021 17:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4ffcc6cd-a703-4a99-aba0-f41c4b7a86a9", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "4ffcc6cd-a703-4a99-aba0-f41c4b7a86a9", + "x-ms-routing-request-id": "WESTUS:20210625T172217Z:4ffcc6cd-a703-4a99-aba0-f41c4b7a86a9" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-86085bc784409442a5fffb7735d8a7a9-f2418de18330ad48-00", + "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": "5be7edca168300033342216ead725333", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23925", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f6dfd49b-df38-48c8-9143-12af8b18ae15", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "f6dfd49b-df38-48c8-9143-12af8b18ae15", + "x-ms-routing-request-id": "WESTUS:20210625T172217Z:f6dfd49b-df38-48c8-9143-12af8b18ae15" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Unregistering", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "1688502918", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterNullException()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterNullException()Async.json new file mode 100644 index 0000000000000..9aec9e0bb0583 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ProviderOperationsTests/UnregisterNullException()Async.json @@ -0,0 +1,1611 @@ +{ + "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.20210624.1", + "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" + ], + "x-ms-client-request-id": "e34dd62b565b8a9e517e533734463a60", + "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, 25 Jun 2021 17:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "86741c54-bbfc-45ff-914f-5a546e221a15", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "86741c54-bbfc-45ff-914f-5a546e221a15", + "x-ms-routing-request-id": "WESTUS:20210625T172216Z:86741c54-bbfc-45ff-914f-5a546e221a15" + }, + "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.insights?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-51bf62bcd8ad184e9429ba9a4f301448-13045e64ade38647-00", + "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": "db17bdaa1f53a51571702eeebca9cd55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "23925", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 25 Jun 2021 17:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ce203935-747a-46eb-ad1a-978b3bca2f36", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "ce203935-747a-46eb-ad1a-978b3bca2f36", + "x-ms-routing-request-id": "WESTUS:20210625T172217Z:ce203935-747a-46eb-ad1a-978b3bca2f36" + }, + "ResponseBody": { + "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" + ], + "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" + } + ], + "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" + ], + "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" + ], + "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" + } + ], + "registrationState": "Unregistering", + "registrationPolicy": "RegistrationRequired" + } + } + ], + "Variables": { + "RandomSeed": "2039874809", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file 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 683fbc73ad91b..73f251cf0dbef 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 @@ -86891,4 +86891,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/TestTryGet.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestTryGet.json new file mode 100644 index 0000000000000..f56f038ed8f33 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestTryGet.json @@ -0,0 +1,99 @@ +{ + "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.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b33e35ce74e3b1c760b80cd0d9940e66", + "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, 25 Jun 2021 19:24:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b5323c3e-41ba-492a-b6bd-237ceb52de82", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "b5323c3e-41ba-492a-b6bd-237ceb52de82", + "x-ms-routing-request-id": "WESTUS2:20210625T192458Z:b5323c3e-41ba-492a-b6bd-237ceb52de82" + }, + "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?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-ad2ec6375c2af64db2e1f9b0ba2f71fc-d7f054265044c74e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a1d291533ed76e150bd5ddd99181492d", + "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, 25 Jun 2021 19:24:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1b480fbb-2b65-4fc9-9b54-f3897a7ef852", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "1b480fbb-2b65-4fc9-9b54-f3897a7ef852", + "x-ms-routing-request-id": "WESTUS2:20210625T192458Z:1b480fbb-2b65-4fc9-9b54-f3897a7ef852" + }, + "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" + } + } + } + ], + "Variables": { + "RandomSeed": "1461806316", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestTryGetAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestTryGetAsync.json new file mode 100644 index 0000000000000..20f28eb68119e --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestTryGetAsync.json @@ -0,0 +1,99 @@ +{ + "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.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b33e35ce74e3b1c760b80cd0d9940e66", + "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, 25 Jun 2021 19:24:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bedff3c7-f9a3-4a37-ad05-3763caad9304", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "bedff3c7-f9a3-4a37-ad05-3763caad9304", + "x-ms-routing-request-id": "WESTUS2:20210625T192458Z:bedff3c7-f9a3-4a37-ad05-3763caad9304" + }, + "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?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-452f5adf305e1c46b06645e6fdc0f9dd-4f74ce331e10cd42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210625.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a1d291533ed76e150bd5ddd99181492d", + "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, 25 Jun 2021 19:24:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "95edcaee-1fa9-4e76-8fd7-da0027ca898c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "95edcaee-1fa9-4e76-8fd7-da0027ca898c", + "x-ms-routing-request-id": "WESTUS2:20210625T192458Z:95edcaee-1fa9-4e76-8fd7-da0027ca898c" + }, + "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" + } + } + } + ], + "Variables": { + "RandomSeed": "1461806316", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs index 5629b8d4e1580..605a8cabb0fb2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs @@ -58,6 +58,7 @@ public void InvalidRPIds(string invalidID) [TestCase(ResourceGroupResourceId)] [TestCase(LocationResourceId)] [TestCase(SubscriptionResourceId)] + [TestCase("/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.insights")] public void ImplicitConstructor(string resourceProviderID) { string x = resourceProviderID; @@ -329,6 +330,21 @@ public void TryGetPropertiesForSubscriptionResource() Assert.IsTrue(expectedId.Equals(parentId)); } + [Test] + public void TryGetPropertiesForSubscriptionProvider() + { + SubscriptionResourceIdentifier id1 = "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute"; + string subscription; + Assert.AreEqual(true, id1.TryGetSubscriptionId(out subscription)); + Assert.AreEqual("db1ab6f0-4769-4b27-930e-01e2ef9c123c", subscription); + Assert.AreEqual(false, id1.TryGetLocation(out _)); + Assert.AreEqual(false, id1.TryGetResourceGroupName(out _)); + ResourceIdentifier expectedId = "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c"; + ResourceIdentifier parentId; + Assert.AreEqual(true, id1.TryGetParent(out parentId)); + Assert.IsTrue(expectedId.Equals(parentId)); + } + [Test] public void TryGetPropertiesForLocationResource() { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SubscriptionProviderIdentifierTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SubscriptionProviderIdentifierTests.cs index d94dd5984f232..2a535e6129d83 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SubscriptionProviderIdentifierTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SubscriptionProviderIdentifierTests.cs @@ -15,7 +15,7 @@ public void ImplicitConstructorWithProvider(string resourceProviderID) y = z; Assert.AreEqual("Microsoft.Insights", z.Provider); - Assert.IsNull(z.ResourceType); + Assert.AreEqual("Microsoft.Resources/providers", z.ResourceType.ToString()); Assert.AreEqual("Microsoft.Resources/subscriptions", z.Parent.ResourceType.ToString()); Assert.AreEqual("db1ab6f0-4769-4b27-930e-01e2ef9c123c", z.Parent.Name); @@ -40,12 +40,13 @@ public void ImplicitConstructorWithSubnet(string resourceProviderID) y = z; Assert.AreEqual("Microsoft.Insights", z.Provider); + Assert.AreEqual("Microsoft.Network/virtualNetworks/subnets", z.ResourceType.ToString()); Assert.AreEqual("Microsoft.Insights", (z.Parent as SubscriptionProviderIdentifier).Provider); Assert.AreEqual("Microsoft.Insights", (z.Parent.Parent as SubscriptionProviderIdentifier).Provider); Assert.AreEqual("Microsoft.Network/virtualNetworks/subnets", z.ResourceType.ToString()); Assert.AreEqual("Microsoft.Network/virtualNetworks", z.Parent.ResourceType.ToString()); Assert.AreEqual("testvnet", z.Parent.Name); - Assert.IsNull(z.Parent.Parent.ResourceType); + Assert.AreEqual("Microsoft.Resources/providers", z.Parent.Parent.ResourceType.ToString()); Assert.AreEqual("Microsoft.Resources/subscriptions", z.Parent.Parent.Parent.ResourceType.ToString()); Assert.AreEqual("db1ab6f0-4769-4b27-930e-01e2ef9c123c", z.Parent.Parent.Parent.Name); @@ -70,11 +71,12 @@ public void ImplicitConstructorWithVNet(string resourceProviderID) y = z; Assert.AreEqual("Microsoft.Insights", z.Provider); + Assert.AreEqual("Microsoft.Network/virtualNetworks", z.ResourceType.ToString()); Assert.AreEqual("Microsoft.Insights", (z.Parent as SubscriptionProviderIdentifier).Provider); Assert.AreEqual("Microsoft.Network/virtualNetworks", z.ResourceType.ToString()); Assert.AreEqual("testvnet", z.Name); Assert.AreEqual("Microsoft.Insights", (z.Parent as SubscriptionProviderIdentifier).Provider); - Assert.IsNull(z.Parent.ResourceType); + Assert.AreEqual("Microsoft.Resources/providers", z.Parent.ResourceType.ToString()); Assert.IsNull(z.Parent.Name); Assert.AreEqual("Microsoft.Resources/subscriptions", z.Parent.Parent.ResourceType.ToString()); Assert.AreEqual("db1ab6f0-4769-4b27-930e-01e2ef9c123c", z.Parent.Parent.Name); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TenantProviderIdentifierTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TenantProviderIdentifierTests.cs index 590f1c3898563..cbae0b92b6c46 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TenantProviderIdentifierTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TenantProviderIdentifierTests.cs @@ -15,6 +15,7 @@ public void ImplicitConstructorProviderOnly(string resourceProviderID) Assert.IsNotNull(z.Parent); Assert.AreEqual("Microsoft.Insights", z.Provider); + Assert.AreEqual("Microsoft.Resources/providers", z.ResourceType.ToString()); Assert.IsNull(z.Parent.Name); if (resourceProviderID is null) @@ -41,7 +42,7 @@ public void ImplicitConstructorVirtualMachine(string resourceProviderID) Assert.AreEqual("Microsoft.Compute/virtualMachines", z.ResourceType.ToString()); Assert.AreEqual("Microsoft.Insights" ,z.Provider); Assert.AreEqual("Microsoft.Insights", (z.Parent as TenantProviderIdentifier).Provider); - Assert.IsNull((z.Parent as TenantProviderIdentifier).ResourceType); + Assert.AreEqual("Microsoft.Resources/providers", z.Parent.ResourceType.ToString()); if (resourceProviderID is null) { @@ -71,6 +72,7 @@ public void ImplicitConstructorSubnet(string resourceProviderID) Assert.AreEqual("testvnet", z.Parent.Name); Assert.AreEqual("Microsoft.Network/virtualNetworks", z.Parent.ResourceType.ToString()); Assert.IsNull(z.Parent.Parent.Name); + Assert.AreEqual("Microsoft.Resources/providers", z.Parent.Parent.ResourceType.ToString()); if (resourceProviderID is null) {