diff --git a/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs b/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs index ae5433947794..9c07ef1c9f1f 100644 --- a/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs +++ b/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs @@ -63,7 +63,7 @@ protected AzureResourceManagerClient GetArmClient() } [SetUp] - protected void Setup() + protected void CreateCleanupClient() { _cleanupClient ??= GetCleanupClient(); } @@ -75,7 +75,14 @@ protected void CleanupResourceGroups() { Parallel.ForEach(CleanupPolicy.ResourceGroupsCreated, resourceGroup => { - _cleanupClient.GetResourceGroupOperations(TestEnvironment.SubscriptionId, resourceGroup).StartDelete(); + try + { + _cleanupClient.GetResourceGroupOperations(TestEnvironment.SubscriptionId, resourceGroup).StartDelete(); + } + catch (RequestFailedException e) when (e.Status == 404) + { + //we assume the test case cleaned up it up if it no longer exists. + } }); } } @@ -136,7 +143,7 @@ private bool HasOneTimeSetup() var methods = GetType().GetMethods().Where(m => types.Contains(m.DeclaringType)); foreach (var method in methods) { - foreach(var attr in method.GetCustomAttributes(false)) + foreach (var attr in method.GetCustomAttributes(false)) { if (attr is OneTimeSetUpAttribute) return true; diff --git a/sdk/core/Azure.Core.TestFramework/src/AsyncPageableInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/AsyncPageableInterceptor.cs new file mode 100644 index 000000000000..7d1a97af01a4 --- /dev/null +++ b/sdk/core/Azure.Core.TestFramework/src/AsyncPageableInterceptor.cs @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using System.Threading.Tasks; +using Castle.DynamicProxy; + +namespace Azure.Core.TestFramework +{ + public class AsyncPageableInterceptor : IAsyncEnumerator + where T : class + { + private ClientTestBase _testBase; + private IAsyncEnumerator _inner; + + public AsyncPageableInterceptor(ClientTestBase testBase, IAsyncEnumerator inner) + { + _testBase = testBase; + _inner = inner; + } + + public T Current => _testBase.InstrumentClient(typeof(T), _inner.Current, new IInterceptor[] { new ManagementInterceptor(_testBase) }) as T; + + public ValueTask MoveNextAsync() + { + return _inner.MoveNextAsync(); + } + + public ValueTask DisposeAsync() + { + return _inner.DisposeAsync(); + } + } +} diff --git a/sdk/core/Azure.Core.TestFramework/src/DiagnosticScopeValidatingInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/DiagnosticScopeValidatingInterceptor.cs index 1b76bac89438..76452fa48159 100644 --- a/sdk/core/Azure.Core.TestFramework/src/DiagnosticScopeValidatingInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/DiagnosticScopeValidatingInterceptor.cs @@ -33,7 +33,9 @@ public void Intercept(IInvocation invocation) invocation.Proceed(); invocation.ReturnValue = Activator.CreateInstance(typeof(DiagnosticScopeValidatingAsyncEnumerable<>).MakeGenericType(genericType.GenericTypeArguments[0]), invocation.ReturnValue, expectedName, methodName, strict); } - else if (methodName.EndsWith("Async") && !invocation.Method.ReturnType.Name.Contains("IAsyncEnumerable")) + else if (methodName.EndsWith("Async") && + !invocation.Method.ReturnType.Name.Contains("IAsyncEnumerable") && + !invocation.Method.Name.Contains("WaitForCompletionAsync")) { Type genericArgument = typeof(object); Type awaitableType = invocation.Method.ReturnType; diff --git a/sdk/core/Azure.Core.TestFramework/src/InstrumentClientInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/InstrumentClientInterceptor.cs index 805d4cc2aa21..ee75cf85b524 100644 --- a/sdk/core/Azure.Core.TestFramework/src/InstrumentClientInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/InstrumentClientInterceptor.cs @@ -26,14 +26,24 @@ public void Intercept(IInvocation invocation) } var type = result.GetType(); - // We don't want to instrument generated rest clients. - if ((type.Name.EndsWith("Client") && !type.Name.EndsWith("RestClient")) || + + if ( + // We don't want to instrument generated rest clients. + type.Name.EndsWith("Client") && !type.Name.EndsWith("RestClient")) + { + invocation.ReturnValue = _testBase.InstrumentClient(type, result, Array.Empty()); + return; + } + + if ( // Generated ARM clients will have a property containing the sub-client that ends with Operations. (invocation.Method.Name.StartsWith("get_") && type.Name.EndsWith("Operations")) || - // Instrument the subscription client that hangs off of the new AzureResouceManagementClient - (type.Name.EndsWith("DefaultSubscription"))) + // Instrument the container construction methods inside Operations objects + (invocation.Method.Name.StartsWith("Get") && type.Name.EndsWith("Container")) || + // Instrument the operations construction methods inside Operations objects + (invocation.Method.Name.StartsWith("Get") && type.Name.EndsWith("Operations"))) { - invocation.ReturnValue = _testBase.InstrumentClient(type, result, Array.Empty()); + invocation.ReturnValue = _testBase.InstrumentClient(type, result, new IInterceptor[] { new ManagementInterceptor(_testBase) }); } } } diff --git a/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs new file mode 100644 index 000000000000..ae64a83e4302 --- /dev/null +++ b/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs @@ -0,0 +1,63 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Reflection; +using System.Threading.Tasks; +using Castle.DynamicProxy; + +namespace Azure.Core.TestFramework +{ + internal class ManagementInterceptor : IInterceptor + { + private readonly ClientTestBase _testBase; + private static readonly ProxyGenerator s_proxyGenerator = new ProxyGenerator(); + + public ManagementInterceptor(ClientTestBase testBase) + { + _testBase = testBase; + } + + public void Intercept(IInvocation invocation) + { + invocation.Proceed(); + + var result = invocation.ReturnValue; + if (result == null) + { + return; + } + + var type = result.GetType(); + + if (type.Name.StartsWith("Task")) + { + var taskResultType = type.GetGenericArguments()[0]; + if (taskResultType.Name.StartsWith("ArmResponse") || taskResultType.Name.StartsWith("ArmOperation")) + { + var taskResult = result.GetType().GetProperty("Result").GetValue(result); + var instrumentedResult = _testBase.InstrumentClient(taskResultType, taskResult, new IInterceptor[] { new ManagementInterceptor(_testBase) }); + var method = typeof(Task).GetMethod("FromResult", BindingFlags.Public | BindingFlags.Static); + var genericType = taskResultType.Name.StartsWith("Ph") ? taskResultType.BaseType : taskResultType; //TODO: remove after 5279 and 5284 + var genericMethod = method.MakeGenericMethod(genericType); + invocation.ReturnValue = genericMethod.Invoke(null, new object[] { instrumentedResult }); + } + } + else if (invocation.Method.Name.EndsWith("Value") && type.BaseType.Name.EndsWith("Operations")) + { + invocation.ReturnValue = _testBase.InstrumentClient(type, result, new IInterceptor[] { new ManagementInterceptor(_testBase) }); + } + else if (type.BaseType.Name.StartsWith("AsyncPageable")) + { + invocation.ReturnValue = s_proxyGenerator.CreateClassProxyWithTarget(type, result, new IInterceptor[] { new ManagementInterceptor(_testBase) }); + } + else if (invocation.Method.Name.StartsWith("Get") && invocation.Method.Name.EndsWith("Enumerator")) + { + var wrapperType = typeof(AsyncPageableInterceptor<>); + var genericType = wrapperType.MakeGenericType(type.GetGenericArguments()[0]); + var ctor = genericType.GetConstructor(new Type[] { typeof(ClientTestBase), result.GetType() }); + invocation.ReturnValue = ctor.Invoke(new object[] { _testBase, result }); + } + } + } +} diff --git a/sdk/core/Azure.Core.TestFramework/src/UseSyncMethodsInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/UseSyncMethodsInterceptor.cs index 4b1cfa609269..d9da59270c0f 100644 --- a/sdk/core/Azure.Core.TestFramework/src/UseSyncMethodsInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/UseSyncMethodsInterceptor.cs @@ -247,10 +247,14 @@ MethodInfo GetMethodSlow() private static bool IsInternal(MethodBase method) => method.IsAssembly || method.IsFamilyAndAssembly && !method.IsFamilyOrAssembly; - private class SyncPageableWrapper : AsyncPageable + public class SyncPageableWrapper : AsyncPageable { private readonly Pageable _enumerable; + protected SyncPageableWrapper() + { + } + public SyncPageableWrapper(Pageable enumerable) { _enumerable = enumerable; diff --git a/sdk/core/Azure.Core/Azure.Core.sln b/sdk/core/Azure.Core/Azure.Core.sln index 8421c5a8ea8a..c042fe3f0ce1 100644 --- a/sdk/core/Azure.Core/Azure.Core.sln +++ b/sdk/core/Azure.Core/Azure.Core.sln @@ -21,11 +21,15 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Core.Spatia EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Core.Spatial.NewtonsoftJson.Tests", "..\Microsoft.Azure.Core.Spatial.NewtonsoftJson\tests\Microsoft.Azure.Core.Spatial.NewtonsoftJson.Tests.csproj", "{622772C8-A2CB-4F8B-82EB-2A46BCC21DAE}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Azure.Core.Spatial", "..\Microsoft.Azure.Core.Spatial\src\Microsoft.Azure.Core.Spatial.csproj", "{25A7E209-D5D2-41F1-AFE9-E860D6294EF5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Core.Spatial", "..\Microsoft.Azure.Core.Spatial\src\Microsoft.Azure.Core.Spatial.csproj", "{25A7E209-D5D2-41F1-AFE9-E860D6294EF5}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Azure.Core.Spatial.Tests", "..\Microsoft.Azure.Core.Spatial\tests\Microsoft.Azure.Core.Spatial.Tests.csproj", "{36FF59A9-D6C9-4226-A0FE-47C879F3EB94}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Core.Spatial.Tests", "..\Microsoft.Azure.Core.Spatial\tests\Microsoft.Azure.Core.Spatial.Tests.csproj", "{36FF59A9-D6C9-4226-A0FE-47C879F3EB94}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Core.Perf", "perf\Azure.Core.Perf.csproj", "{B6D7909F-4DE6-4895-BF39-EF892BA64BA3}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.Perf", "perf\Azure.Core.Perf.csproj", "{B6D7909F-4DE6-4895-BF39-EF892BA64BA3}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Test.Perf", "..\..\..\common\Perf\Azure.Test.Perf\Azure.Test.Perf.csproj", "{96E9F605-9C38-4D77-96F4-679EF8B9390F}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Core", "..\..\resourcemanager\Azure.ResourceManager.Core\src\Azure.ResourceManager.Core.csproj", "{8E60A748-3973-471A-B103-EC9406BB3313}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -81,6 +85,14 @@ Global {B6D7909F-4DE6-4895-BF39-EF892BA64BA3}.Debug|Any CPU.Build.0 = Debug|Any CPU {B6D7909F-4DE6-4895-BF39-EF892BA64BA3}.Release|Any CPU.ActiveCfg = Release|Any CPU {B6D7909F-4DE6-4895-BF39-EF892BA64BA3}.Release|Any CPU.Build.0 = Release|Any CPU + {96E9F605-9C38-4D77-96F4-679EF8B9390F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {96E9F605-9C38-4D77-96F4-679EF8B9390F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {96E9F605-9C38-4D77-96F4-679EF8B9390F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {96E9F605-9C38-4D77-96F4-679EF8B9390F}.Release|Any CPU.Build.0 = Release|Any CPU + {8E60A748-3973-471A-B103-EC9406BB3313}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8E60A748-3973-471A-B103-EC9406BB3313}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8E60A748-3973-471A-B103-EC9406BB3313}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8E60A748-3973-471A-B103-EC9406BB3313}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/sdk/core/Azure.Core/tests/Azure.Core.Tests.csproj b/sdk/core/Azure.Core/tests/Azure.Core.Tests.csproj index 3bd38cb3a6b3..ef9975b67d5e 100644 --- a/sdk/core/Azure.Core/tests/Azure.Core.Tests.csproj +++ b/sdk/core/Azure.Core/tests/Azure.Core.Tests.csproj @@ -16,6 +16,7 @@ + @@ -39,5 +40,6 @@ + diff --git a/sdk/core/Azure.Core/tests/ClientTestBaseTests.cs b/sdk/core/Azure.Core/tests/ClientTestBaseTests.cs index c19ec208c209..b55545eeadb6 100644 --- a/sdk/core/Azure.Core/tests/ClientTestBaseTests.cs +++ b/sdk/core/Azure.Core/tests/ClientTestBaseTests.cs @@ -160,7 +160,7 @@ public async Task SubClientPropertyCallsAreAutoInstrumented() { TestClient client = InstrumentClient(new TestClient()); - Operations subClient = client.SubProperty; + TestClientOperations subClient = client.SubProperty; var result = await subClient.MethodAsync(123); Assert.AreEqual(IsAsync ? "Async 123 False" : "Sync 123 False", result); @@ -191,145 +191,5 @@ public async Task TasksValidateOwnScopes() }); await Task.WhenAll(t1, t2); } - - public class TestClient - { - private readonly ClientDiagnostics _diagnostics; - - public TestClient() : this(null) - { - } - - public TestClient(TestClientOptions options) - { - options ??= new TestClientOptions(); - _diagnostics = new ClientDiagnostics(options); - } - - public virtual Task MethodAsync(int i, CancellationToken cancellationToken = default) - { - return Task.FromResult("Async " + i + " " + cancellationToken.CanBeCanceled); - } - - public virtual Task MethodGenericAsync(T i, CancellationToken cancellationToken = default) - { - return Task.FromResult($"Async {i} {cancellationToken.CanBeCanceled}"); - } - - public virtual string MethodGeneric(T i, CancellationToken cancellationToken = default) - { - return $"Sync {i} {cancellationToken.CanBeCanceled}"; - } - - public virtual Task NoAlternativeAsync(int i, CancellationToken cancellationToken = default) - { - return Task.FromResult("I don't have sync alternative"); - } - - public virtual string Method(int i, CancellationToken cancellationToken = default) - { - return "Sync " + i + " " + cancellationToken.CanBeCanceled; - } - - public virtual string Method2() - { - return "Hello"; - } - - // These four follow the new pattern for custom users schemas - public virtual Task> GetDataAsync() => - Task.FromResult(Response.FromValue(default(T), new MockResponse(200, "async - static"))); - public virtual Response GetData(T arg) => - Response.FromValue(default(T), new MockResponse(200, $"sync - static {arg}")); - public virtual Task> GetDataAsync(T arg) => - Task.FromResult(Response.FromValue(default(T), new MockResponse(200, $"async - static {arg}"))); - public virtual Response GetData() => - Response.FromValue(default(T), new MockResponse(200, "sync - static")); - public virtual Task> GetDataAsync() => - Task.FromResult(Response.FromValue((object)null, new MockResponse(200, "async - dynamic"))); - public virtual Response GetData() => - Response.FromValue((object)null, new MockResponse(200, "sync - dynamic")); - - // These four follow the new pattern for custom users schemas and - // throw exceptions - public virtual Task> GetFailureAsync() => - throw new InvalidOperationException("async - static"); - public virtual Response GetFailure() => - throw new InvalidOperationException("sync - static"); - public virtual Task> GetFailureAsync() => - throw new InvalidOperationException("async - dynamic"); - public virtual Response GetFailure() => - throw new InvalidOperationException("sync - dynamic"); - - public virtual TestClient GetAnotherTestClient() - { - return new TestClient(); - } - public virtual Operations SubProperty => new Operations(); - - public virtual string MethodA() - { - using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(TestClient)}.{nameof(MethodA)}"); - scope.Start(); - - return nameof(MethodA); - } - - public virtual async Task MethodAAsync() - { - using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(TestClient)}.{nameof(MethodA)}"); - scope.Start(); - - await Task.Yield(); - return nameof(MethodAAsync); - } - - public virtual string MethodB() - { - using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(TestClient)}.{nameof(MethodB)}"); - scope.Start(); - - return nameof(MethodB); - } - - public virtual async Task MethodBAsync() - { - using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(TestClient)}.{nameof(MethodB)}"); - scope.Start(); - - await Task.Yield(); - return nameof(MethodAAsync); - } - } - - public class TestClientOptions : ClientOptions - { - } - - public class Operations - { - public virtual Task MethodAsync(int i, CancellationToken cancellationToken = default) - { - return Task.FromResult("Async " + i + " " + cancellationToken.CanBeCanceled); - } - - public virtual string Method(int i, CancellationToken cancellationToken = default) - { - return "Sync " + i + " " + cancellationToken.CanBeCanceled; - } - } - - public class InvalidTestClient - { - public Task MethodAsync(int i) - { - return Task.FromResult("Async " + i); - } - - public virtual string Method(int i) - { - return "Sync " + i; - } - } } } diff --git a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs new file mode 100644 index 000000000000..beb6f4743556 --- /dev/null +++ b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs @@ -0,0 +1,124 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using Azure.ResourceManager.TestFramework; +using NUnit.Framework; + +namespace Azure.Core.Tests.Management +{ + internal class ManagementRecordedTestBaseTests : ManagementRecordedTestBase + { + public ManagementRecordedTestBaseTests(bool isAsync) + : base(isAsync) + { + TestDiagnostics = false; + } + + [Test] + [SyncOnly] + public void ValidateInstrumentTopLevelClient() + { + ManagementTestClient client = InstrumentClient(new ManagementTestClient()); + var result = client.Method(); + + Assert.AreEqual("ManagementTestClientProxy", client.GetType().Name); + Assert.AreEqual("success", result); + } + + [Test] + [SyncOnly] + public void ValidateInstrumentDefaultSubscription() + { + ManagementTestClient client = InstrumentClient(new ManagementTestClient()); + var sub = client.DefaultSubscription; + var result = sub.Method(); + + Assert.AreEqual("TestResourceOperationsProxy", sub.GetType().Name); + Assert.AreEqual("success", result); + } + + [Test] + public async Task ValidateInstrumentArmOperation() + { + ManagementTestClient client = InstrumentClient(new ManagementTestClient()); + var sub = client.DefaultSubscription; + var operation = (await sub.GetArmOperationAsync()).Value; + var result = operation.Method(); + + Assert.AreEqual("TestResourceOperationsProxy", operation.GetType().Name); + Assert.AreEqual("success", result); + } + + [Test] + public async Task ValidateInstrumentArmResponse() + { + ManagementTestClient client = InstrumentClient(new ManagementTestClient()); + var sub = client.DefaultSubscription; + var response = (await sub.GetArmOperationAsync()).Value; + var result = response.Method(); + + Assert.AreEqual("TestResourceOperationsProxy", response.GetType().Name); + Assert.AreEqual("success", result); + } + + [Test] + public async Task ValidateInstrumentPhArmOperation() + { + ManagementTestClient client = InstrumentClient(new ManagementTestClient()); + var sub = client.DefaultSubscription; + var operation = (await sub.GetPhArmOperationAsync()).Value; + var result = operation.Method(); + + Assert.AreEqual("TestResourceOperationsProxy", operation.GetType().Name); + Assert.AreEqual("success", result); + } + + [Test] + public async Task ValidateInstrumentPhArmResponse() + { + ManagementTestClient client = InstrumentClient(new ManagementTestClient()); + var sub = client.DefaultSubscription; + var response = (await sub.GetPhArmOperationAsync()).Value; + var result = response.Method(); + + Assert.AreEqual("TestResourceOperationsProxy", response.GetType().Name); + Assert.AreEqual("success", result); + } + + [Test] + [SyncOnly] + public void ValidateInstrumentGetContainer() + { + ManagementTestClient client = InstrumentClient(new ManagementTestClient()); + var testResources = client.GetTestResourceContainer(); + + Assert.AreEqual("TestResourceContainerProxy", testResources.GetType().Name); + Assert.AreEqual("success", testResources.Method()); + } + + [Test] + [SyncOnly] + public void ValidateInstrumentGetOperations() + { + ManagementTestClient client = InstrumentClient(new ManagementTestClient()); + var testResource = client.GetTestResourceOperations(); + + Assert.AreEqual("TestResourceOperationsProxy", testResource.GetType().Name); + Assert.AreEqual("success", testResource.Method()); + } + + [Test] + public async Task ValidateInstrumentPhPageable() + { + ManagementTestClient client = InstrumentClient(new ManagementTestClient()); + var testResources = client.GetTestResourceContainer(); + await foreach (var item in testResources.ListAsync()) + { + Assert.AreEqual("TestResourceProxy", item.GetType().Name); + Assert.AreEqual("success", item.Method()); + } + } + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs b/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs new file mode 100644 index 000000000000..438462984c8d --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Azure.Core.Tests +{ + public class ArmOperationTest + { + protected ArmOperationTest() + { + } + + public ArmOperationTest(T value) + { + Value = value; + } + + public virtual T Value { get; private set; } + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/ArmResponseTest.cs b/sdk/core/Azure.Core/tests/TestClients/ArmResponseTest.cs new file mode 100644 index 000000000000..7d915f9307f2 --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/ArmResponseTest.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Azure.Core.Tests +{ + public class ArmResponseTest + { + protected ArmResponseTest() + { + } + + public ArmResponseTest(T value) + { + Value = value; + } + + public virtual T Value { get; private set; } + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/InvalidTestClient.cs b/sdk/core/Azure.Core/tests/TestClients/InvalidTestClient.cs new file mode 100644 index 000000000000..55c38c793058 --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/InvalidTestClient.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Threading.Tasks; + +namespace Azure.Core.Tests +{ + public class InvalidTestClient + { + public Task MethodAsync(int i) + { + return Task.FromResult("Async " + i); + } + + public virtual string Method(int i) + { + return "Sync " + i; + } + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs b/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs new file mode 100644 index 000000000000..282516920017 --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core.Pipeline; + +namespace Azure.Core.Tests +{ + public class ManagementTestClient + { + private readonly ClientDiagnostics _diagnostics; + + public ManagementTestClient() : this(null) + { + } + + public ManagementTestClient(TestClientOptions options) + { + options ??= new TestClientOptions(); + _diagnostics = new ClientDiagnostics(options); + } + + public virtual TestResourceOperations GetTestResourceOperations() + { + return new TestResourceOperations(); + } + + public virtual TestResourceContainer GetTestResourceContainer() + { + return new TestResourceContainer(); + } + + public virtual TestResourceOperations DefaultSubscription => new TestResourceOperations(); + + public virtual string Method() + { + return "success"; + } + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/PhArmOperationTest.cs b/sdk/core/Azure.Core/tests/TestClients/PhArmOperationTest.cs new file mode 100644 index 000000000000..59e6c1d72a5d --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/PhArmOperationTest.cs @@ -0,0 +1,16 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Azure.Core.Tests +{ + public class PhArmOperationTest : ArmOperationTest + { + protected PhArmOperationTest() + { + } + + public PhArmOperationTest(T value) : base(value) + { + } + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/PhArmResponseTest.cs b/sdk/core/Azure.Core/tests/TestClients/PhArmResponseTest.cs new file mode 100644 index 000000000000..04c6b1760ae3 --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/PhArmResponseTest.cs @@ -0,0 +1,16 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Azure.Core.Tests +{ + public class PhArmResponseTest : ArmResponseTest + { + protected PhArmResponseTest() + { + } + + public PhArmResponseTest(T value) : base(value) + { + } + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/TestClient.cs b/sdk/core/Azure.Core/tests/TestClients/TestClient.cs new file mode 100644 index 000000000000..eae536405afd --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/TestClient.cs @@ -0,0 +1,121 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core.Pipeline; +using Azure.Core.TestFramework; + +namespace Azure.Core.Tests +{ + public class TestClient + { + private readonly ClientDiagnostics _diagnostics; + + public TestClient() : this(null) + { + } + + public TestClient(TestClientOptions options) + { + options ??= new TestClientOptions(); + _diagnostics = new ClientDiagnostics(options); + } + + public virtual Task MethodAsync(int i, CancellationToken cancellationToken = default) + { + return Task.FromResult("Async " + i + " " + cancellationToken.CanBeCanceled); + } + + public virtual Task MethodGenericAsync(T i, CancellationToken cancellationToken = default) + { + return Task.FromResult($"Async {i} {cancellationToken.CanBeCanceled}"); + } + + public virtual string MethodGeneric(T i, CancellationToken cancellationToken = default) + { + return $"Sync {i} {cancellationToken.CanBeCanceled}"; + } + + public virtual Task NoAlternativeAsync(int i, CancellationToken cancellationToken = default) + { + return Task.FromResult("I don't have sync alternative"); + } + + public virtual string Method(int i, CancellationToken cancellationToken = default) + { + return "Sync " + i + " " + cancellationToken.CanBeCanceled; + } + + public virtual string Method2() + { + return "Hello"; + } + + // These four follow the new pattern for custom users schemas + public virtual Task> GetDataAsync() => + Task.FromResult(Response.FromValue(default(T), new MockResponse(200, "async - static"))); + public virtual Response GetData(T arg) => + Response.FromValue(default(T), new MockResponse(200, $"sync - static {arg}")); + public virtual Task> GetDataAsync(T arg) => + Task.FromResult(Response.FromValue(default(T), new MockResponse(200, $"async - static {arg}"))); + public virtual Response GetData() => + Response.FromValue(default(T), new MockResponse(200, "sync - static")); + public virtual Task> GetDataAsync() => + Task.FromResult(Response.FromValue((object)null, new MockResponse(200, "async - dynamic"))); + public virtual Response GetData() => + Response.FromValue((object)null, new MockResponse(200, "sync - dynamic")); + + // These four follow the new pattern for custom users schemas and + // throw exceptions + public virtual Task> GetFailureAsync() => + throw new InvalidOperationException("async - static"); + public virtual Response GetFailure() => + throw new InvalidOperationException("sync - static"); + public virtual Task> GetFailureAsync() => + throw new InvalidOperationException("async - dynamic"); + public virtual Response GetFailure() => + throw new InvalidOperationException("sync - dynamic"); + + public virtual TestClient GetAnotherTestClient() + { + return new TestClient(); + } + public virtual TestClientOperations SubProperty => new TestClientOperations(); + + public virtual string MethodA() + { + using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(TestClient)}.{nameof(MethodA)}"); + scope.Start(); + + return nameof(MethodA); + } + + public virtual async Task MethodAAsync() + { + using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(TestClient)}.{nameof(MethodA)}"); + scope.Start(); + + await Task.Yield(); + return nameof(MethodAAsync); + } + + public virtual string MethodB() + { + using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(TestClient)}.{nameof(MethodB)}"); + scope.Start(); + + return nameof(MethodB); + } + + public virtual async Task MethodBAsync() + { + using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(TestClient)}.{nameof(MethodB)}"); + scope.Start(); + + await Task.Yield(); + return nameof(MethodAAsync); + } + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/TestClientOperations.cs b/sdk/core/Azure.Core/tests/TestClients/TestClientOperations.cs new file mode 100644 index 000000000000..592e00955f9f --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/TestClientOperations.cs @@ -0,0 +1,21 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Threading; +using System.Threading.Tasks; + +namespace Azure.Core.Tests +{ + public class TestClientOperations + { + public virtual Task MethodAsync(int i, CancellationToken cancellationToken = default) + { + return Task.FromResult("Async " + i + " " + cancellationToken.CanBeCanceled); + } + + public virtual string Method(int i, CancellationToken cancellationToken = default) + { + return "Sync " + i + " " + cancellationToken.CanBeCanceled; + } + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/TestClientOptions.cs b/sdk/core/Azure.Core/tests/TestClients/TestClientOptions.cs new file mode 100644 index 000000000000..e15855ab595b --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/TestClientOptions.cs @@ -0,0 +1,9 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Azure.Core.Tests +{ + public class TestClientOptions : ClientOptions + { + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/TestResource.cs b/sdk/core/Azure.Core/tests/TestClients/TestResource.cs new file mode 100644 index 000000000000..f7ad212e8fe9 --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/TestResource.cs @@ -0,0 +1,9 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Azure.Core.Tests +{ + public class TestResource : TestResourceOperations + { + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs b/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs new file mode 100644 index 000000000000..36cbae68a4a8 --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs @@ -0,0 +1,49 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Threading; +using System.Threading.Tasks; +using Azure.ResourceManager.Core; +using static Azure.Core.PageResponseEnumerator; + +namespace Azure.Core.Tests +{ + public class TestResourceContainer + { + public virtual Pageable List(int pages = 1, CancellationToken cancellation = default) + { + FuncPageable results = GetSyncResults(pages); + return new PhWrappingPageable(results, o => new TestResource()); + } + + private FuncPageable GetSyncResults(int pages) + { + Page pageFunc(int? pageSizeHint) + { + return Page.FromValues(new object[] { new object(), new object() }, null, null); + } + return new FuncPageable((cToken, pageSize) => pageFunc(pageSize)); + } + + public virtual AsyncPageable ListAsync(int pages = 1, CancellationToken cancellation = default) + { + FuncAsyncPageable results = GetAsyncResults(pages); + return new PhWrappingAsyncPageable(results, o => new TestResource()); + } + + private FuncAsyncPageable GetAsyncResults(int pages) + { + async Task> pageFunc(int? pageSizeHint) + { + await Task.Delay(10); + return Page.FromValues(new object[] { new object(), new object() }, null, null); + } + return new FuncAsyncPageable((cToken, pageSize) => pageFunc(pageSize)); + } + + public virtual string Method() + { + return "success"; + } + } +} diff --git a/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs b/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs new file mode 100644 index 000000000000..959e6052cc62 --- /dev/null +++ b/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Threading; +using System.Threading.Tasks; + +namespace Azure.Core.Tests +{ + public class TestResourceOperations + { + public virtual TestResourceOperations GetAnotherOperations() + { + return new TestResourceOperations(); + } + + public virtual ArmOperationTest GetArmOperation(CancellationToken cancellationToken = default) + { + return new ArmOperationTest(new TestResourceOperations()); + } + + public virtual Task> GetArmOperationAsync(CancellationToken cancellationToken = default) + { + return Task.FromResult(new ArmOperationTest(new TestResourceOperations())); + } + + public virtual ArmResponseTest GetArmResponse(CancellationToken cancellationToken = default) + { + return new ArmResponseTest(new TestResourceOperations()); + } + + public virtual Task> GetArmResponseAsync(CancellationToken cancellationToken = default) + { + return Task.FromResult(new ArmResponseTest(new TestResourceOperations())); + } + + public virtual ArmOperationTest GetPhArmOperation(CancellationToken cancellationToken = default) + { + return new PhArmOperationTest(new TestResourceOperations()); + } + + public virtual Task> GetPhArmOperationAsync(CancellationToken cancellationToken = default) + { + return Task.FromResult>(new PhArmOperationTest(new TestResourceOperations())); + } + + public virtual ArmResponseTest GetPhArmResponse(CancellationToken cancellationToken = default) + { + return new PhArmResponseTest(new TestResourceOperations()); + } + + public virtual Task> GetPhArmResponseAsync(CancellationToken cancellationToken = default) + { + return Task.FromResult>(new PhArmResponseTest(new TestResourceOperations())); + } + + public virtual string Method() + { + return "success"; + } + } +} diff --git a/sdk/core/Azure.Core/tests/TestEnvironmentTests.cs b/sdk/core/Azure.Core/tests/TestEnvironmentTests.cs index e0cbc8bc06f1..2ce69eb8dc55 100644 --- a/sdk/core/Azure.Core/tests/TestEnvironmentTests.cs +++ b/sdk/core/Azure.Core/tests/TestEnvironmentTests.cs @@ -211,7 +211,7 @@ public SampleTestClass() public string Value { get; } } - private class MockTestEnvironment : TestEnvironment + internal class MockTestEnvironment : TestEnvironment { public static MockTestEnvironment Instance { get; } = new MockTestEnvironment(); public string RecordedValue => GetRecordedVariable("RECORDED"); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/PhArmResponse.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/PhArmResponse.cs index c764cedd3366..c8628e37c4da 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/PhArmResponse.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/PhArmResponse.cs @@ -18,6 +18,13 @@ public class PhArmResponse : ArmResponse private readonly Func _converter; private readonly Response _wrapped; + /// + /// Initializes a new instance of the class for mocking. + /// + protected PhArmResponse() + { + } + /// /// Initializes a new instance of the class. /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/PhWrappingAsyncPageable.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/PhWrappingAsyncPageable.cs index a15098cf7eee..43a76a766317 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/PhWrappingAsyncPageable.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/PhWrappingAsyncPageable.cs @@ -21,6 +21,13 @@ public class PhWrappingAsyncPageable : AsyncPageable _converter; private readonly IEnumerable> _wrapped; + /// + /// Initializes a new instance of the class for mocking. + /// + protected PhWrappingAsyncPageable() + { + } + /// /// Initializes a new instance of the class. /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmBuilder.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmBuilder.cs index 7a1f39ac9152..6660dbe67684 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmBuilder.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmBuilder.cs @@ -60,9 +60,10 @@ public TResource Build() /// The operation to create or update a resource. Please note some properties can be set only during creation. /// /// The name of the new resource to create. + /// A token to allow the caller to cancel the call to the service. The default value is . /// A response with the operation for this resource. /// Name cannot be null or a whitespace. - public ArmResponse CreateOrUpdate(string name) + public ArmResponse CreateOrUpdate(string name, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(name)) throw new ArgumentException("Name cannot be null or whitespace.", nameof(name)); @@ -70,7 +71,7 @@ public ArmResponse CreateOrUpdate(string name) ResourceName = name; Resource = Build(); - return UnTypedContainer.CreateOrUpdate(name, Resource); + return UnTypedContainer.CreateOrUpdate(name, Resource, cancellationToken); } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmOperation.cs index 18caabd837a3..dcd49e489a6c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmOperation.cs @@ -1,6 +1,11 @@ // 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 { /// @@ -9,6 +14,13 @@ namespace Azure.ResourceManager.Core /// The to return representing the result of the ArmOperation. public abstract class ArmOperation : Operation { + /// + /// Initializes a new instance of the class for mocking. + /// + protected ArmOperation() + { + } + /// /// Initializes a new instance of the class. /// @@ -28,5 +40,42 @@ protected ArmOperation(TOperations syncValue) /// Gets the representing the result of the ArmOperation. /// protected TOperations SyncValue { get; } + + /// + /// Waits for the completion of the long running operations. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// A response with the operation for this resource. + /// + /// Details on long running operation object. + /// + public ArmResponse WaitForCompletion(CancellationToken cancellationToken = default) + { + return WaitForCompletion(ArmOperationHelpers.DefaultPollingInterval.Seconds, cancellationToken); + } + + /// + /// Waits for the completion of the long running operations. + /// + /// The polling interval in seconds to check for status. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// A response with the operation for this resource. + /// + /// Details on long running operation object. + /// + public ArmResponse WaitForCompletion(int pollingInterval, CancellationToken cancellationToken = default) + { + var polling = TimeSpan.FromSeconds(pollingInterval); + while (true) + { + UpdateStatus(cancellationToken); + if (HasCompleted) + { + return Response.FromValue(Value, GetRawResponse()) as ArmResponse; + } + + Task.Delay(pollingInterval, cancellationToken).Wait(cancellationToken); + } + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj index 0309ec812fdc..0850e68ca8b0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj @@ -18,4 +18,8 @@ + + + + diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs index 41d0972f2e9f..8b47506d8497 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs @@ -27,7 +27,9 @@ public class AzureResourceManagerClient /// /// Get the tenant operations class. /// - public TenantOperations Tenant => _tenant ??= new TenantOperations(ClientOptions, _credentials, _baseUri); + public TenantOperations Tenant => _tenant ??= new TenantOperations(_clientOptions, _credentials, _baseUri); + + private readonly AzureResourceManagerClientOptions _clientOptions; /// /// Initializes a new instance of the class for mocking. @@ -95,7 +97,7 @@ private AzureResourceManagerClient( _credentials = credential; _baseUri = baseUri; - ClientOptions = options ?? new AzureResourceManagerClientOptions(); + _clientOptions = options ?? new AzureResourceManagerClientOptions(); DefaultSubscription = string.IsNullOrWhiteSpace(defaultSubscriptionId) ? GetDefaultSubscription() @@ -107,18 +109,13 @@ private AzureResourceManagerClient( /// public virtual Subscription DefaultSubscription { get; private set; } - /// - /// Gets the Azure resource manager client options. - /// - internal virtual AzureResourceManagerClientOptions ClientOptions { get; } - /// /// Gets the Azure subscription operations. /// /// The guid of the subscription. /// Subscription operations. - public SubscriptionOperations GetSubscriptionOperations(string subscriptionGuid) => new SubscriptionOperations( - ClientOptions, + public virtual SubscriptionOperations GetSubscriptionOperations(string subscriptionGuid) => new SubscriptionOperations( + _clientOptions, subscriptionGuid, _credentials, _baseUri); @@ -127,9 +124,9 @@ private AzureResourceManagerClient( /// Gets the Azure subscriptions. /// /// Subscription container. - public SubscriptionContainer GetSubscriptionContainer() + public virtual SubscriptionContainer GetSubscriptionContainer() { - return new SubscriptionContainer(ClientOptions, _credentials, _baseUri); + return new SubscriptionContainer(_clientOptions, _credentials, _baseUri); } /// @@ -138,7 +135,7 @@ public SubscriptionContainer GetSubscriptionContainer() /// The id of the Azure subscription. /// The resource group name. /// Resource group operations. - public ResourceGroupOperations GetResourceGroupOperations(string subscriptionGuid, string resourceGroupName) + public virtual ResourceGroupOperations GetResourceGroupOperations(string subscriptionGuid, string resourceGroupName) { return GetSubscriptionOperations(subscriptionGuid).GetResourceGroupOperations(resourceGroupName); } @@ -148,7 +145,7 @@ public ResourceGroupOperations GetResourceGroupOperations(string subscriptionGui /// /// The resource identifier of the resource group. /// Resource group operations. - public ResourceGroupOperations GetResourceGroupOperations(ResourceIdentifier resourceGroupId) + public virtual ResourceGroupOperations GetResourceGroupOperations(ResourceIdentifier resourceGroupId) { return GetSubscriptionOperations(resourceGroupId.Subscription).GetResourceGroupOperations(resourceGroupId.ResourceGroup); } @@ -161,7 +158,7 @@ public ResourceGroupOperations GetResourceGroupOperations(ResourceIdentifier res /// The resource group name. /// The resource type name. /// Resource operations of the resource. - public T GetResourceOperations(string subscription, string resourceGroup, string name) + public virtual T GetResourceOperations(string subscription, string resourceGroup, string name) where T : OperationsBase { var rgOp = GetSubscriptionOperations(subscription).GetResourceGroupOperations(resourceGroup); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs index c9c104eff063..7195b18f3fda 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs @@ -16,6 +16,13 @@ namespace Azure.ResourceManager.Core public abstract class ContainerBase : OperationsBase where TOperations : ResourceOperationsBase { + /// + /// Initializes a new instance of the class for mocking. + /// + protected ContainerBase() + { + } + /// /// Initializes a new instance of the class. /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs index ca83225f60b3..6b5f3cc8ba1a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs @@ -61,8 +61,9 @@ protected ExtensionResourceOperationsBase(OperationsBase genericOperations, Reso /// /// Get details and operations for this extension resource. This call will block the thread until details are returned from the service. /// + /// A token allowing cancellation of the Http call in the task. /// An Http Response containing details and operations for the extension resource. - public abstract ArmResponse Get(); + public abstract ArmResponse Get(CancellationToken cancellationToken = default); /// /// Get details and operations for this extension resource. This call returns a Task that completes when the details are returned from the service. @@ -84,10 +85,11 @@ protected virtual TOperations GetResource() /// /// Get details for this resource from the service or can be overriden to provide a cached instance. /// + /// A token allowing cancellation of the Http call in the task. /// A that on completion returns a operation for this resource. - protected virtual async Task GetResourceAsync() + protected virtual async Task GetResourceAsync(CancellationToken cancellationToken = default) { - return (await GetAsync().ConfigureAwait(false)).Value; + return (await GetAsync(cancellationToken).ConfigureAwait(false)).Value; } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResource.cs index 9a18087929a6..7117ee929f58 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResource.cs @@ -2,6 +2,7 @@ // Licensed under the MIT License. using System; +using System.Threading; using System.Threading.Tasks; using Azure.Core; @@ -27,7 +28,7 @@ internal GenericResource(ResourceOperationsBase operations, GenericResourceData /// /// Gets the data representing this generic azure resource. /// - public GenericResourceData Data { get; } + public virtual GenericResourceData Data { get; } /// protected override GenericResource GetResource() @@ -36,7 +37,7 @@ protected override GenericResource GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellationToken = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs index ba5051ee88db..733cab70e87f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs @@ -39,10 +39,11 @@ internal GenericResourceOperations(ResourceOperationsBase operations, ResourceId /// /// Delete the resource. /// + /// A token allowing immediate cancellation of any blocking call performed during the deletion. /// The status of the delete operation. - public ArmResponse Delete() + public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDeleteById(Id, _apiVersion).WaitForCompletionAsync().EnsureCompleted()); + return new ArmResponse(Operations.StartDeleteById(Id, _apiVersion, cancellationToken).WaitForCompletion(cancellationToken)); } /// @@ -89,21 +90,21 @@ public async Task> StartDeleteAsync(CancellationToken can } /// - public ArmResponse AddTag(string key, string value) + public ArmResponse AddTag(string key, string value, CancellationToken cancellationToken = default) { GenericResource resource = GetResource(); // Potential optimization on tags set, remove NOOP to bypass the call. resource.Data.Tags[key] = value; return new PhArmResponse( - Operations.StartUpdateById(Id, _apiVersion, resource.Data).WaitForCompletionAsync().EnsureCompleted(), + Operations.StartUpdateById(Id, _apiVersion, resource.Data, cancellationToken).WaitForCompletionAsync(cancellationToken).EnsureCompleted(), v => new GenericResource(this, new GenericResourceData(v))); } /// public async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - GenericResource resource = GetResource(); + GenericResource resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); resource.Data.Tags[key] = value; var op = await Operations.StartUpdateByIdAsync(Id, _apiVersion, resource.Data, cancellationToken).ConfigureAwait(false); return new PhArmResponse( @@ -112,19 +113,19 @@ await op.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), } /// - public ArmOperation StartAddTag(string key, string value) + public ArmOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) { GenericResource resource = GetResource(); resource.Data.Tags[key] = value; return new PhArmOperation( - Operations.StartUpdateById(Id, _apiVersion, resource.Data).WaitForCompletionAsync().EnsureCompleted(), + Operations.StartUpdateById(Id, _apiVersion, resource.Data, cancellationToken).WaitForCompletionAsync(cancellationToken).EnsureCompleted(), v => new GenericResource(this, new GenericResourceData(v))); } /// public async Task> StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - GenericResource resource = GetResource(); + GenericResource resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); resource.Data.Tags[key] = value; var op = await Operations.StartUpdateByIdAsync(Id, _apiVersion, resource.Data, cancellationToken).ConfigureAwait(false); return new PhArmOperation( @@ -133,10 +134,10 @@ await op.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), } /// - public override ArmResponse Get() + public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.GetById(Id, _apiVersion), + Operations.GetById(Id, _apiVersion, cancellationToken), v => new GenericResource(this, new GenericResourceData(v))); } @@ -159,19 +160,19 @@ protected override void Validate(ResourceIdentifier identifier) } /// - public ArmResponse SetTags(IDictionary tags) + public ArmResponse SetTags(IDictionary tags, CancellationToken cancellationToken = default) { GenericResource resource = GetResource(); resource.Data.Tags.ReplaceWith(tags); return new PhArmResponse( - Operations.StartUpdateById(Id, _apiVersion, resource.Data).WaitForCompletionAsync().EnsureCompleted(), + Operations.StartUpdateById(Id, _apiVersion, resource.Data, cancellationToken).WaitForCompletionAsync(cancellationToken).EnsureCompleted(), v => new GenericResource(this, new GenericResourceData(v))); } /// public async Task> SetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) { - GenericResource resource = GetResource(); + GenericResource resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); resource.Data.Tags.ReplaceWith(tags); var op = await Operations.StartUpdateByIdAsync(Id, _apiVersion, resource.Data, cancellationToken).ConfigureAwait(false); return new PhArmResponse( @@ -180,19 +181,19 @@ await op.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), } /// - public ArmOperation StartSetTags(IDictionary tags) + public ArmOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) { GenericResource resource = GetResource(); resource.Data.Tags.ReplaceWith(tags); return new PhArmOperation( - Operations.StartUpdateById(Id, _apiVersion, resource.Data).WaitForCompletionAsync().EnsureCompleted(), + Operations.StartUpdateById(Id, _apiVersion, resource.Data, cancellationToken).WaitForCompletionAsync(cancellationToken).EnsureCompleted(), v => new GenericResource(this, new GenericResourceData(v))); } /// public async Task> StartSetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) { - GenericResource resource = GetResource(); + GenericResource resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); resource.Data.Tags.ReplaceWith(tags); var op = await Operations.StartUpdateByIdAsync(Id, _apiVersion, resource.Data, cancellationToken).ConfigureAwait(false); return new PhArmOperation( @@ -201,19 +202,19 @@ await op.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), } /// - public ArmResponse RemoveTag(string key) + public ArmResponse RemoveTag(string key, CancellationToken cancellationToken = default) { GenericResource resource = GetResource(); resource.Data.Tags.Remove(key); return new PhArmResponse( - Operations.StartUpdateById(Id, _apiVersion, resource.Data).WaitForCompletionAsync().EnsureCompleted(), + Operations.StartUpdateById(Id, _apiVersion, resource.Data, cancellationToken).WaitForCompletionAsync(cancellationToken).EnsureCompleted(), v => new GenericResource(this, new GenericResourceData(v))); } /// public async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) { - GenericResource resource = GetResource(); + GenericResource resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); resource.Data.Tags.Remove(key); var op = await Operations.StartUpdateByIdAsync(Id, _apiVersion, resource.Data, cancellationToken).ConfigureAwait(false); return new PhArmResponse( @@ -222,19 +223,19 @@ await op.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), } /// - public ArmOperation StartRemoveTag(string key) + public ArmOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) { GenericResource resource = GetResource(); resource.Data.Tags.Remove(key); return new PhArmOperation( - Operations.StartUpdateById(Id, _apiVersion, resource.Data).WaitForCompletionAsync().EnsureCompleted(), + Operations.StartUpdateById(Id, _apiVersion, resource.Data, cancellationToken).WaitForCompletionAsync(cancellationToken).EnsureCompleted(), v => new GenericResource(this, new GenericResourceData(v))); } /// public async Task> StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) { - GenericResource resource = GetResource(); + GenericResource resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); resource.Data.Tags.Remove(key); var op = await Operations.StartUpdateByIdAsync(Id, _apiVersion, resource.Data, cancellationToken).ConfigureAwait(false); return new PhArmOperation( diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/IDeletableResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/IDeletableResource.cs index 19b65bfbc691..782049e856f9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/IDeletableResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/IDeletableResource.cs @@ -14,8 +14,9 @@ public interface IDeletableResource /// /// Delete the resource. /// + /// A token allowing immediate cancellation of any blocking call performed during the deletion. /// The status of the delete operation. - ArmResponse Delete(); + ArmResponse Delete(CancellationToken cancellationToken = default); /// /// Delete the resource. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs index 5008ecd50eef..812d8f072704 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs @@ -19,8 +19,13 @@ public interface ITaggableResource /// /// The tag key. /// The tag value. + /// A token to allow the caller to cancel the call to the service. + /// The default value is . /// An that allows the user to control polling and waiting for Tag completion. - ArmResponse AddTag(string key, string value); + ArmResponse AddTag( + string key, + string value, + CancellationToken cancellationToken = default); /// /// Add a tag to the resource. @@ -42,8 +47,13 @@ Task> AddTagAsync( /// /// The tag key. /// The tag value. + /// A token to allow the caller to cancel the call to the service. + /// The default value is . /// An that allows the user to control polling and waiting for Tag completion. - ArmOperation StartAddTag(string key, string value); + ArmOperation StartAddTag( + string key, + string value, + CancellationToken cancellationToken = default); /// /// Add a tag to the resource. @@ -64,8 +74,11 @@ Task> StartAddTagAsync( /// Set the resource tags. /// /// The resource tags. + /// A token allowing immediate cancellation of any blocking call performed during the deletion. /// The status of the delete operation. - ArmResponse SetTags(IDictionary tags); + ArmResponse SetTags( + IDictionary tags, + CancellationToken cancellationToken = default); /// /// Set the resource tags. @@ -81,8 +94,12 @@ Task> SetTagsAsync( /// Set the resource tags. /// /// The resource tags. + /// A token to allow the caller to cancel the call to the service. + /// The default value is . /// An that allows the user to control polling and waiting for Tag completion. - ArmOperation StartSetTags(IDictionary tags); + ArmOperation StartSetTags( + IDictionary tags, + CancellationToken cancellationToken = default); /// /// Set the resource tags. @@ -101,8 +118,11 @@ Task> StartSetTagsAsync( /// Remove the resource tag. /// /// The tag key. + /// A token allowing immediate cancellation of any blocking call performed during the deletion. /// The status of the delete operation. - ArmResponse RemoveTag(string key); + ArmResponse RemoveTag( + string key, + CancellationToken cancellationToken = default); /// /// Remove the resource tag. @@ -118,8 +138,12 @@ Task> RemoveTagAsync( /// Remove the resource tag. /// /// The tag key. + /// A token to allow the caller to cancel the call to the service. + /// The default value is . /// An that allows the user to control polling and waiting for Tag completion. - ArmOperation StartRemoveTag(string key); + ArmOperation StartRemoveTag( + string key, + CancellationToken cancellationToken = default); /// /// Remove the resource tag. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs index 4786be3aa564..d0f3198b58a6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs @@ -3,6 +3,7 @@ using System; using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Resources; namespace Azure.ResourceManager.Core @@ -12,6 +13,13 @@ namespace Azure.ResourceManager.Core /// public abstract class OperationsBase { + /// + /// Initializes a new instance of the class for mocking. + /// + protected OperationsBase() + { + } + /// /// Initializes a new instance of the class. /// @@ -25,10 +33,12 @@ protected OperationsBase(AzureResourceManagerClientOptions options, ResourceIden Id = id; Credential = credential; BaseUri = baseUri; - + Diagnostics = new ClientDiagnostics(options); Validate(id); } + internal ClientDiagnostics Diagnostics { get; } + /// /// Gets the resource identifier. /// @@ -37,7 +47,7 @@ protected OperationsBase(AzureResourceManagerClientOptions options, ResourceIden /// /// Gets the Azure Resource Manager client options. /// - public virtual AzureResourceManagerClientOptions ClientOptions { get; } + public AzureResourceManagerClientOptions ClientOptions { get; } /// /// Gets the Azure credential. @@ -58,7 +68,11 @@ protected OperationsBase(AzureResourceManagerClientOptions options, ResourceIden /// /// Gets the resource client. /// - protected ResourcesManagementClient ResourcesClient => new ResourcesManagementClient(BaseUri, Id.Subscription, Credential); + protected ResourcesManagementClient ResourcesClient => new ResourcesManagementClient( + BaseUri, + Id.Subscription, + Credential, + ClientOptions.Convert()); /// /// Validate the resource identifier against current operations. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/PhArmOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/PhArmOperation.cs index 2a90185a6554..9f293c1d5364 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/PhArmOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/PhArmOperation.cs @@ -20,6 +20,13 @@ public class PhArmOperation : ArmOperation private readonly Response _syncWrapped; private readonly Operation _wrapped; + /// + /// Initializes a new instance of the class for mocking. + /// + protected PhArmOperation() + { + } + /// /// Initializes a new instance of the class. /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Properties/AssemblyInfo.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Properties/AssemblyInfo.cs index 9b296c5a8dbe..aded30ec4a7b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Properties/AssemblyInfo.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Properties/AssemblyInfo.cs @@ -3,4 +3,6 @@ using System.Runtime.CompilerServices; +[assembly: Azure.Core.AzureResourceProviderNamespace("Microsoft.Resources")] + [assembly: InternalsVisibleTo("Azure.ResourceManager.Core.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100d15ddcb29688295338af4b7686603fe614abd555e09efba8fb88ee09e1f7b1ccaeed2e8f823fa9eef3fdd60217fc012ea67d2479751a0b8c087a4185541b851bd8b16f8d91b840e51b1cb0ba6fe647997e57429265e85ef62d565db50a69ae1647d54d7bd855e4db3d8a91510e5bcbd0edfbbecaa20a7bd9ae74593daa7b11b4")] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs index 5327523908a2..ec896f0f26b4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs @@ -19,6 +19,13 @@ public abstract class ResourceContainerBase : ContainerB private static readonly object _parentLock = new object(); private object _parentResource; + /// + /// Initializes a new instance of the class for mocking. + /// + protected ResourceContainerBase() + { + } + /// /// Initializes a new instance of the class. /// @@ -44,12 +51,14 @@ protected override void Validate(ResourceIdentifier identifier) /// /// The name of the resource. /// The desired resource configuration. + /// A token to allow the caller to cancel the call to the service. The default value is . /// A response with the operation for this resource. /// Name of the resource cannot be null or a whitespace. /// resourceDetails cannot be null. public abstract ArmResponse CreateOrUpdate( string name, - TResource resourceDetails); + TResource resourceDetails, + CancellationToken cancellationToken = default); /// /// The operation to create or update a resource. Please note some properties can be set only during creation. @@ -131,9 +140,10 @@ protected TParent GetParentResource() /// Gets details for this resource from the service. /// /// The name of the resource to get. + /// A token to allow the caller to cancel the call to the service. The default value is . /// A response with the operation for this resource. /// resourceName cannot be null or a whitespace. - public abstract ArmResponse Get(string resourceName); + public abstract ArmResponse Get(string resourceName, CancellationToken cancellationToken = default); /// /// Gets details for this resource from the service. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroup.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroup.cs index 805ca60f1b27..96ffbc4f8ce0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroup.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroup.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System.Threading; using System.Threading.Tasks; namespace Azure.ResourceManager.Core @@ -10,6 +11,13 @@ namespace Azure.ResourceManager.Core /// public class ResourceGroup : ResourceGroupOperations { + /// + /// Initializes a new instance of the class for mocking. + /// + protected ResourceGroup() + { + } + /// /// Initializes a new instance of the class. /// @@ -24,7 +32,7 @@ internal ResourceGroup(ResourceOperationsBase operations, ResourceGroupData reso /// /// Gets the data representing this ResourceGroup. /// - public ResourceGroupData Data { get; } + public virtual ResourceGroupData Data { get; } /// protected override ResourceGroup GetResource() @@ -33,7 +41,7 @@ protected override ResourceGroup GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellationToken = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs index 8e12072abc83..4f4441eb1bdb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs @@ -5,6 +5,7 @@ using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; +using Azure.Core; using Azure.ResourceManager.Resources; namespace Azure.ResourceManager.Core @@ -14,6 +15,13 @@ namespace Azure.ResourceManager.Core /// public class ResourceGroupContainer : ResourceContainerBase { + /// + /// Initializes a new instance of the class for mocking. + /// + protected ResourceGroupContainer() + { + } + /// /// Initializes a new instance of the class. /// @@ -53,17 +61,28 @@ public ArmBuilder Construct(LocationData locat } /// - public override ArmResponse CreateOrUpdate(string name, ResourceGroupData resourceDetails) + public override ArmResponse CreateOrUpdate(string name, ResourceGroupData resourceDetails, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(name)) throw new ArgumentException("name cannot be null or a whitespace.", nameof(name)); if (resourceDetails is null) throw new ArgumentNullException(nameof(resourceDetails)); - var response = Operations.CreateOrUpdate(name, resourceDetails); - return new PhArmResponse( - response, - g => new ResourceGroup(Parent, new ResourceGroupData(g))); + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.CreateOrUpdate"); + scope.Start(); + + try + { + var response = Operations.CreateOrUpdate(name, resourceDetails, cancellationToken); + return new PhArmResponse( + response, + g => new ResourceGroup(Parent, new ResourceGroupData(g))); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -74,10 +93,21 @@ public override async Task> CreateOrUpdateAsync(strin if (resourceDetails is null) throw new ArgumentNullException(nameof(resourceDetails)); - var response = await Operations.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false); - return new PhArmResponse( - response, - g => new ResourceGroup(Parent, new ResourceGroupData(g))); + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.CreateOrUpdate"); + scope.Start(); + + try + { + var response = await Operations.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false); + return new PhArmResponse( + response, + g => new ResourceGroup(Parent, new ResourceGroupData(g))); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -88,9 +118,20 @@ public override ArmOperation StartCreateOrUpdate(string name, Res if (resourceDetails is null) throw new ArgumentNullException(nameof(resourceDetails)); - return new PhArmOperation( + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.StartCreateOrUpdate"); + scope.Start(); + + try + { + return new PhArmOperation( Operations.CreateOrUpdate(name, resourceDetails, cancellationToken), g => new ResourceGroup(Parent, new ResourceGroupData(g))); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -101,9 +142,20 @@ public override async Task> StartCreateOrUpdateAsync if (resourceDetails is null) throw new ArgumentNullException(nameof(resourceDetails)); - return new PhArmOperation( + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.StartCreateOrUpdate"); + scope.Start(); + + try + { + return new PhArmOperation( await Operations.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false), g => new ResourceGroup(Parent, new ResourceGroupData(g))); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -111,11 +163,24 @@ await Operations.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).C /// /// A token to allow the caller to cancel the call to the service. The default value is . /// A collection of resource operations that may take multiple service requests to iterate over. - public Pageable List(CancellationToken cancellationToken = default) + [ForwardsClientCalls] + public virtual Pageable List(CancellationToken cancellationToken = default) { - return new PhWrappingPageable( - Operations.List(null, null, cancellationToken), + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.List"); + scope.Start(); + + try + { + var results = Operations.List(null, null, cancellationToken); + return new PhWrappingPageable( + results, s => new ResourceGroup(Parent, new ResourceGroupData(s))); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -123,23 +188,46 @@ public Pageable List(CancellationToken cancellationToken = defaul /// /// A token to allow the caller to cancel the call to the service. The default value is . /// An async collection of resource operations that may take multiple service requests to iterate over. - public AsyncPageable ListAsync(CancellationToken cancellationToken = default) + [ForwardsClientCalls] + public virtual AsyncPageable ListAsync(CancellationToken cancellationToken = default) { - return new PhWrappingAsyncPageable( + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.List"); + scope.Start(); + + try + { + return new PhWrappingAsyncPageable( Operations.ListAsync(null, null, cancellationToken), s => new ResourceGroup(Parent, new ResourceGroupData(s))); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// - public override ArmResponse Get(string resourceGroupName) + public override ArmResponse Get(string resourceGroupName, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(resourceGroupName)) throw new ArgumentException("resourceGroupName cannot be null or a whitespace.", nameof(resourceGroupName)); - return new PhArmResponse(Operations.Get(resourceGroupName), g => + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.Get"); + scope.Start(); + + try + { + return new PhArmResponse(Operations.Get(resourceGroupName, cancellationToken), g => + { + return new ResourceGroup(Parent, new ResourceGroupData(g)); + }); + } + catch (Exception e) { - return new ResourceGroup(Parent, new ResourceGroupData(g)); - }); + scope.Failed(e); + throw; + } } /// @@ -148,12 +236,23 @@ public override async Task> GetAsync(string resourceG if (string.IsNullOrWhiteSpace(resourceGroupName)) throw new ArgumentException("resourceGroupName cannot be null or a whitespace.", nameof(resourceGroupName)); - return new PhArmResponse( + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.Get"); + scope.Start(); + + try + { + return new PhArmResponse( await Operations.GetAsync(resourceGroupName, cancellationToken).ConfigureAwait(false), g => { return new ResourceGroup(Parent, new ResourceGroupData(g)); }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs index 0f7ddf4e539b..d5057ad8fa90 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs @@ -23,6 +23,13 @@ public class ResourceGroupOperations : ResourceOperationsBase, /// public static readonly ResourceType ResourceType = "Microsoft.Resources/resourceGroups"; + /// + /// Initializes a new instance of the class for mocking. + /// + protected ResourceGroupOperations() + { + } + /// /// Initializes a new instance of the class. /// @@ -62,10 +69,22 @@ protected ResourceGroupOperations(ResourceOperationsBase options, ResourceIdenti /// /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. /// + /// A token to allow the caller to cancel the call to the service. The default value is . /// A response with the operation for this resource. - public ArmResponse Delete() + public virtual ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.Name).WaitForCompletionAsync().EnsureCompleted()); + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Delete"); + scope.Start(); + + try + { + return new ArmResponse(Operations.StartDelete(Id.Name, cancellationToken).WaitForCompletion(cancellationToken)); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -73,9 +92,20 @@ public ArmResponse Delete() /// /// A token to allow the caller to cancel the call to the service. The default value is . /// A that on completion returns a response with the operation for this resource. - public async Task> DeleteAsync(CancellationToken cancellationToken = default) + public virtual async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse(await Operations.StartDelete(Id.Name, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false)); + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Delete"); + scope.Start(); + + try + { + return new ArmResponse(await Operations.StartDelete(Id.Name, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false)); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -86,9 +116,20 @@ public async Task> DeleteAsync(CancellationToken cancellat /// /// Details on long running operation object. /// - public ArmOperation StartDelete(CancellationToken cancellationToken = default) + public virtual ArmOperation StartDelete(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.StartDelete(Id.Name, cancellationToken)); + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartDelete"); + scope.Start(); + + try + { + return new ArmVoidOperation(Operations.StartDelete(Id.Name, cancellationToken)); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -99,132 +140,173 @@ public ArmOperation StartDelete(CancellationToken cancellationToken = /// /// Details on long running operation object. /// - public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) + public virtual async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false)); + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartDelete"); + scope.Start(); + + try + { + return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false)); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// - public override ArmResponse Get() + public override ArmResponse Get(CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.Name), g => + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Get"); + scope.Start(); + + try + { + return new PhArmResponse(Operations.Get(Id.Name, cancellationToken), g => + { + return new ResourceGroup(this, new ResourceGroupData(g)); + }); + } + catch (Exception e) { - return new ResourceGroup(this, new ResourceGroupData(g)); - }); + scope.Failed(e); + throw; + } } /// public override async Task> GetAsync(CancellationToken cancellationToken = default) { - return new PhArmResponse( + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Get"); + scope.Start(); + + try + { + return new PhArmResponse( await Operations.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false), g => { return new ResourceGroup(this, new ResourceGroupData(g)); }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } - /// - /// Add a tag to a ResourceGroup. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A response with the operation for this resource. - /// Key cannot be null or a whitespace. - public ArmResponse AddTag(string key, string value) + /// + public virtual ArmResponse AddTag(string key, string value, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags[key] = value; - return new PhArmResponse(Operations.Update(Id.Name, patch), g => + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.AddTag"); + scope.Start(); + + try { - return new ResourceGroup(this, new ResourceGroupData(g)); - }); + var resource = GetResource(); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(resource.Data.Tags); + patch.Tags[key] = value; + return new PhArmResponse(Operations.Update(Id.Name, patch, cancellationToken), g => + { + return new ResourceGroup(this, new ResourceGroupData(g)); + }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } - /// - /// Add a tag to a ResourceGroup. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns a response with the operation for this resource. - /// Key cannot be null or a whitespace. - public async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) + /// + public virtual async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags[key] = value; - return new PhArmResponse( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), g => + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.AddTag"); + scope.Start(); + + try { - return new ResourceGroup(this, new ResourceGroupData(g)); - }); + ResourceGroup resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(resource.Data.Tags); + patch.Tags[key] = value; + return new PhArmResponse( + await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), g => + { + return new ResourceGroup(this, new ResourceGroupData(g)); + }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } - /// - /// Add a tag to a ResourceGroup. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A response with the operation for this resource. - /// - /// Details on long running operation object. - /// - /// Key cannot be null or a whitespace. - public ArmOperation StartAddTag(string key, string value) + /// + public virtual ArmOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags[key] = value; - return new PhArmOperation(Operations.Update(Id.Name, patch), g => + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartAddTag"); + scope.Start(); + + try + { + var resource = GetResource(); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(resource.Data.Tags); + patch.Tags[key] = value; + return new PhArmOperation(Operations.Update(Id.Name, patch, cancellationToken), g => + { + return new ResourceGroup(this, new ResourceGroupData(g)); + }); + } + catch (Exception e) { - return new ResourceGroup(this, new ResourceGroupData(g)); - }); + scope.Failed(e); + throw; + } } - /// - /// Add a tag to a ResourceGroup. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// /// A that on completion returns a response with the operation for this resource. - /// - /// Details on long running operation object. - /// - /// Key cannot be null or a whitespace. - public async Task> StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) + /// + public virtual async Task> StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags[key] = value; - return new PhArmOperation( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), - g => - { - return new ResourceGroup(this, new ResourceGroupData(g)); - }); + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartAddTag"); + scope.Start(); + + try + { + ResourceGroup resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(resource.Data.Tags); + patch.Tags[key] = value; + return new PhArmOperation( + await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), + g => + { + return new ResourceGroup(this, new ResourceGroupData(g)); + }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -238,7 +320,7 @@ await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(f /// Returns a response with the operation for this resource. /// Name cannot be null or a whitespace. /// Model cannot be null. - public ArmResponse CreateResource(string name, TResource model) + public virtual ArmResponse CreateResource(string name, TResource model) where TResource : TrackedResource where TOperations : ResourceOperationsBase where TContainer : ResourceContainerBase @@ -266,7 +348,7 @@ public ArmResponse CreateResource A that on completion returns a response with the operation for this resource. /// Name cannot be null or a whitespace. /// Model cannot be null. - public Task> CreateResourceAsync(string name, TResource model, CancellationToken cancellationToken = default) + public virtual Task> CreateResourceAsync(string name, TResource model, CancellationToken cancellationToken = default) where TResource : TrackedResource where TOperations : ResourceOperationsBase where TContainer : ResourceContainerBase @@ -284,144 +366,244 @@ public Task> CreateResourceAsync - public ArmResponse SetTags(IDictionary tags) + public virtual ArmResponse SetTags(IDictionary tags, CancellationToken cancellationToken = default) { if (tags == null) throw new ArgumentNullException(nameof(tags)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(tags); - return new PhArmResponse(Operations.Update(Id.Name, patch), g => - { - return new ResourceGroup(this, new ResourceGroupData(g)); - }); - } + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.SetTags"); + scope.Start(); - /// - public async Task> SetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) - { - if (tags == null) - throw new ArgumentNullException(nameof(tags)); - - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(tags); - return new PhArmResponse( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), - g => + try + { + var resource = GetResource(); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(tags); + return new PhArmResponse(Operations.Update(Id.Name, patch, cancellationToken), g => { return new ResourceGroup(this, new ResourceGroupData(g)); }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// - public ArmOperation StartSetTags(IDictionary tags) + public virtual async Task> SetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) { if (tags == null) throw new ArgumentNullException(nameof(tags)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(tags); - return new PhArmOperation(Operations.Update(Id.Name, patch), g => + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.SetTags"); + scope.Start(); + + try + { + ResourceGroup resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(tags); + return new PhArmResponse( + await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), + g => + { + return new ResourceGroup(this, new ResourceGroupData(g)); + }); + } + catch (Exception e) { - return new ResourceGroup(this, new ResourceGroupData(g)); - }); + scope.Failed(e); + throw; + } } /// - public async Task> StartSetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) + public virtual ArmOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) { if (tags == null) throw new ArgumentNullException(nameof(tags)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(tags); - return new PhArmOperation( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), - g => + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartSetTags"); + scope.Start(); + + try + { + var resource = GetResource(); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(tags); + return new PhArmOperation(Operations.Update(Id.Name, patch, cancellationToken), g => { return new ResourceGroup(this, new ResourceGroupData(g)); }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// - public ArmResponse RemoveTag(string key) + public virtual async Task> StartSetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) { - if (string.IsNullOrWhiteSpace(key)) - throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); + if (tags == null) + throw new ArgumentNullException(nameof(tags)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags.Remove(key); - return new PhArmResponse(Operations.Update(Id.Name, patch), g => + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartSetTags"); + scope.Start(); + + try + { + ResourceGroup resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(tags); + return new PhArmOperation( + await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), + g => + { + return new ResourceGroup(this, new ResourceGroupData(g)); + }); + } + catch (Exception e) { - return new ResourceGroup(this, new ResourceGroupData(g)); - }); + scope.Failed(e); + throw; + } } /// - public async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) + public virtual ArmResponse RemoveTag(string key, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags.Remove(key); - return new PhArmResponse( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), - g => + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.RemoveTag"); + scope.Start(); + + try + { + var resource = GetResource(); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(resource.Data.Tags); + patch.Tags.Remove(key); + return new PhArmResponse(Operations.Update(Id.Name, patch, cancellationToken), g => { return new ResourceGroup(this, new ResourceGroupData(g)); }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// - public ArmOperation StartRemoveTag(string key) + public virtual async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags.Remove(key); - return new PhArmOperation(Operations.Update(Id.Name, patch), g => + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.RemoveTag"); + scope.Start(); + + try + { + ResourceGroup resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(resource.Data.Tags); + patch.Tags.Remove(key); + return new PhArmResponse( + await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), + g => + { + return new ResourceGroup(this, new ResourceGroupData(g)); + }); + } + catch (Exception e) { - return new ResourceGroup(this, new ResourceGroupData(g)); - }); + scope.Failed(e); + throw; + } } /// - public async Task> StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) + public virtual ArmOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - var resource = GetResource(); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags.Remove(key); - return new PhArmOperation( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), - g => + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartRemoveTag"); + scope.Start(); + + try + { + var resource = GetResource(); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(resource.Data.Tags); + patch.Tags.Remove(key); + return new PhArmOperation(Operations.Update(Id.Name, patch, cancellationToken), g => { return new ResourceGroup(this, new ResourceGroupData(g)); }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + public virtual async Task> StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) + { + if (string.IsNullOrWhiteSpace(key)) + throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); + + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartRemoveTag"); + scope.Start(); + + try + { + var resource = GetResource(); + var patch = new ResourceGroupPatchable(); + patch.Tags.ReplaceWith(resource.Data.Tags); + patch.Tags.Remove(key); + return new PhArmOperation( + await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), + g => + { + return new ResourceGroup(this, new ResourceGroupData(g)); + }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// /// Lists all available geo-locations. /// + /// A token to allow the caller to cancel the call to the service. The default value is . /// A collection of location that may take multiple service requests to iterate over. - public IEnumerable ListAvailableLocations() + public virtual IEnumerable ListAvailableLocations(CancellationToken cancellationToken = default) { - return ListAvailableLocations(ResourceType); + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.ListAvailableLocations"); + scope.Start(); + + try + { + return ListAvailableLocations(ResourceType, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -430,9 +612,20 @@ public IEnumerable ListAvailableLocations() /// A token to allow the caller to cancel the call to the service. The default value is . /// An async collection of location that may take multiple service requests to iterate over. /// The default subscription id is null. - public async Task> ListAvailableLocationsAsync(CancellationToken cancellationToken = default) + public virtual async Task> ListAvailableLocationsAsync(CancellationToken cancellationToken = default) { - return await ListAvailableLocationsAsync(ResourceType, cancellationToken).ConfigureAwait(false); + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.ListAvailableLocations"); + scope.Start(); + + try + { + return await ListAvailableLocationsAsync(ResourceType, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs index 2f0e7c1792b6..b7f628c27e68 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs @@ -15,6 +15,13 @@ namespace Azure.ResourceManager.Core /// public abstract class ResourceOperationsBase : OperationsBase { + /// + /// Initializes a new instance of the class for mocking. + /// + protected ResourceOperationsBase() + { + } + /// /// Initializes a new instance of the class. /// @@ -55,6 +62,13 @@ protected ResourceOperationsBase(AzureResourceManagerClientOptions options, Reso public abstract class ResourceOperationsBase : ResourceOperationsBase where TOperations : ResourceOperationsBase { + /// + /// Initializes a new instance of the class for mocking. + /// + protected ResourceOperationsBase() + { + } + /// /// Initializes a new instance of the class. /// @@ -89,8 +103,9 @@ protected ResourceOperationsBase(AzureResourceManagerClientOptions options, Reso /// /// Gets details for this resource from the service. /// + /// A token to allow the caller to cancel the call to the service. The default value is . /// A response with the operation for this resource. - public abstract ArmResponse Get(); + public abstract ArmResponse Get(CancellationToken cancellationToken = default); /// /// Gets details for this resource from the service. @@ -111,20 +126,22 @@ protected virtual TOperations GetResource() /// /// Get details for this resource from the service or can be overriden to provide a cached instance. /// + /// A token to allow the caller to cancel the call to the service. The default value is . /// A that on completion returns a operation for this resource. - protected virtual async Task GetResourceAsync() + protected virtual async Task GetResourceAsync(CancellationToken cancellationToken = default) { - return (await GetAsync().ConfigureAwait(false)).Value; + return (await GetAsync(cancellationToken).ConfigureAwait(false)).Value; } /// /// Lists all available geo-locations. /// /// The instance to use for the list. + /// A token to allow the caller to cancel the call to the service. The default value is . /// A collection of location that may take multiple service requests to iterate over. - protected IEnumerable ListAvailableLocations(ResourceType resourceType) + protected IEnumerable ListAvailableLocations(ResourceType resourceType, CancellationToken cancellationToken = default) { - var pageableProvider = ResourcesClient.Providers.List(expand: "metadata"); + var pageableProvider = ResourcesClient.Providers.List(expand: "metadata", cancellationToken: cancellationToken); var resourcePageableProvider = pageableProvider.FirstOrDefault(p => string.Equals(p.Namespace, resourceType?.Namespace, StringComparison.InvariantCultureIgnoreCase)); if (resourcePageableProvider is null) throw new InvalidOperationException($"{resourceType.Type} not found for {resourceType.Namespace}"); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Subscription.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Subscription.cs index c980886409c9..3b7711b6279d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Subscription.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Subscription.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System.Threading; using System.Threading.Tasks; namespace Azure.ResourceManager.Core @@ -10,6 +11,13 @@ namespace Azure.ResourceManager.Core /// public class Subscription : SubscriptionOperations { + /// + /// Initializes a new instance of the class for mocking. + /// + protected Subscription() + { + } + /// /// Initializes a new instance of the class. /// @@ -24,7 +32,7 @@ internal Subscription(SubscriptionOperations subscription, SubscriptionData subs /// /// Gets the subscription data model. /// - public SubscriptionData Data { get; } + public virtual SubscriptionData Data { get; } /// protected override Subscription GetResource() @@ -33,7 +41,7 @@ protected override Subscription GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellationToken = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs index 58d527f3c6f4..e9dd7bfb220d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs @@ -2,7 +2,6 @@ // Licensed under the MIT License. using System; -using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; using Azure.Core; @@ -20,6 +19,13 @@ public class SubscriptionOperations : ResourceOperationsBase /// public static readonly ResourceType ResourceType = "Microsoft.Resources/subscriptions"; + /// + /// Initializes a new instance of the class for mocking. + /// + protected SubscriptionOperations() + { + } + /// /// Initializes a new instance of the class. /// @@ -60,7 +66,7 @@ protected SubscriptionOperations(SubscriptionOperations subscription, ResourceId /// The resource group operations. /// resourceGroupName must be at least one character long and cannot be longer than 90 characters. /// The name of the resource group can include alphanumeric, underscore, parentheses, hyphen, period (except at end), and Unicode characters that match the allowed characters. - public ResourceGroupOperations GetResourceGroupOperations(string resourceGroupName) + public virtual ResourceGroupOperations GetResourceGroupOperations(string resourceGroupName) { return new ResourceGroupOperations(this, resourceGroupName); } @@ -69,7 +75,7 @@ public ResourceGroupOperations GetResourceGroupOperations(string resourceGroupNa /// Gets the resource group container under this subscription /// /// The resource group container. - public ResourceGroupContainer GetResourceGroupContainer() + public virtual ResourceGroupContainer GetResourceGroupContainer() { return new ResourceGroupContainer(this); } @@ -78,28 +84,28 @@ public ResourceGroupContainer GetResourceGroupContainer() /// Gets the location group container under this subscription /// /// The resource group container. - public LocationContainer GetLocationContainer() + public virtual LocationContainer GetLocationContainer() { return new LocationContainer(this); } /// - public override ArmResponse Get() + public override ArmResponse Get(CancellationToken cancellationToken = default) { - return new PhArmResponse( - SubscriptionsClient.Get(Id.Name), + return new PhArmResponse( + SubscriptionsClient.Get(Id.Name, cancellationToken), Converter()); } /// public override async Task> GetAsync(CancellationToken cancellationToken = default) { - return new PhArmResponse( + return new PhArmResponse( await SubscriptionsClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false), Converter()); } - private Func Converter() + private Func Converter() { return s => new Subscription(this, new SubscriptionData(s)); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Utils/UtilityExtensions.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Utils/UtilityExtensions.cs index 6da86bd8fd7d..975018e3666b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Utils/UtilityExtensions.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Utils/UtilityExtensions.cs @@ -2,6 +2,9 @@ // Licensed under the MIT License. using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core; namespace Azure.ResourceManager.Core { @@ -27,5 +30,30 @@ public static IDictionary ReplaceWith(this IDictionary + /// Waits for the completion of the long running operations. + /// + /// The instance this method acts on. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// A response with the operation for this resource. + /// + /// Details on long running operation object. + /// + public static Response WaitForCompletion(this Operation operation, CancellationToken cancellationToken = default) + { + //TODO: Remove after ADO 5665 is closed + var pollingInterval = ArmOperationHelpers.DefaultPollingInterval; + while (true) + { + operation.UpdateStatus(cancellationToken); + if (operation.HasCompleted) + { + return Response.FromValue(operation.Value, operation.GetRawResponse()); + } + + Task.Delay(pollingInterval, cancellationToken).Wait(cancellationToken); + } + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj index 9616364574de..5e1d3898ff05 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj @@ -27,5 +27,8 @@ Always + + + diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs new file mode 100644 index 000000000000..d71f3b7ac21f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.ResourceManager.Core.Tests +{ + public class ResourceGroupContainerTests : ResourceManagerTestBase + { + public ResourceGroupContainerTests(bool isAsync) + : base(isAsync)//, RecordedTestMode.Record) + { + } + + [TestCase] + [RecordedTest] + public async Task List() + { + _ = await Client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testRg-")); + _ = await Client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testRg-")); + int count = 0; + await foreach(var rg in Client.DefaultSubscription.GetResourceGroupContainer().ListAsync()) + { + count++; + } + Assert.Greater(count, 2); + } + + [TestCase] + [RecordedTest] + public async Task Create() + { + string rgName = Recording.GenerateAssetName("testRg-"); + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + Assert.AreEqual(rgName, rg.Data.Name); + } + + [TestCase] + [RecordedTest] + public async Task StartCreate() + { + string rgName = Recording.GenerateAssetName("testRg-"); + var rgOp = await Client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(rgName); + ResourceGroup rg = await rgOp.WaitForCompletionAsync(); + Assert.AreEqual(rgName, rg.Data.Name); + } + + [TestCase] + [RecordedTest] + public async Task Get() + { + string rgName = Recording.GenerateAssetName("testRg-"); + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + ResourceGroup rg2 = await Client.DefaultSubscription.GetResourceGroupContainer().GetAsync(rgName); + Assert.AreEqual(rg.Data.Name, rg2.Data.Name); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs new file mode 100644 index 000000000000..ab93a2e95525 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs @@ -0,0 +1,71 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.ResourceManager.Core.Tests +{ + public class ResourceGroupOperationsTests : ResourceManagerTestBase + { + public ResourceGroupOperationsTests(bool isAsync) + : base(isAsync)//, RecordedTestMode.Record) + { + } + + [TestCase] + [RecordedTest] + public async Task DeleteRg() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + await rg.DeleteAsync(); + } + + [TestCase] + [RecordedTest] + public async Task StartDeleteRg() + { + var rgOp = await Client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await rgOp.WaitForCompletionAsync(); + var deleteOp = await rg.StartDeleteAsync(); + await deleteOp.WaitForCompletionAsync(); + } + + [TestCase] + [RecordedTest] + public async Task Get() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + await rg.GetAsync(); + } + + [TestCase] + [RecordedTest] + public async Task ListAvailableLocations() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + var locations = await rg.ListAvailableLocationsAsync(); + int count = 0; + foreach(var location in locations) + { + count++; + } + Assert.GreaterOrEqual(count, 1); + } + + [TestCase] + [Ignore("4622 needs complete with a Mocked example to fill in this test")] + public void CreateResourceFromModel() + { + //public ArmResponse CreateResource(string name, TResource model, azure_proto_core.Location location = default) + } + + [TestCase] + [Ignore("4622 needs complete with a Mocked example to fill in this test")] + public void CreateResourceFromModelAsync() + { + //public ArmResponse CreateResource(string name, TResource model, azure_proto_core.Location location = default) + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceManagerTestBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceManagerTestBase.cs index 3d2867fc944f..a07189ec30a7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceManagerTestBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceManagerTestBase.cs @@ -3,11 +3,15 @@ using Azure.Core.TestFramework; using Azure.ResourceManager.TestFramework; +using NUnit.Framework; namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ResourceManagerTestBase : ManagementRecordedTestBase { + protected AzureResourceManagerClient Client { get; private set; } + protected ResourceManagerTestBase(bool isAsync, RecordedTestMode mode) : base(isAsync, mode) { @@ -17,5 +21,11 @@ protected ResourceManagerTestBase(bool isAsync) : base(isAsync) { } + + [SetUp] + public void CreateCommonClient() + { + Client = GetArmClient(); + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs index de40d23de3b5..0a22285167d9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs @@ -10,17 +10,18 @@ namespace Azure.ResourceManager.Core.Tests { public class SubscriptionOperationsTests : ResourceManagerTestBase { - private AzureResourceManagerClient _client; - public SubscriptionOperationsTests(bool isAsync) : base(isAsync)//, RecordedTestMode.Record) { } - [SetUp] - public void SetUp() + [TestCase] + [SyncOnly] + [RecordedTest] + public void GetSubscriptionOperation() { - _client = GetArmClient(); + var sub = Client.GetSubscriptionOperations(TestEnvironment.SubscriptionId); + Assert.AreEqual(sub.Id.Subscription, TestEnvironment.SubscriptionId); } [TestCase(null)] @@ -29,7 +30,7 @@ public void SetUp() [RecordedTest] public void TestGetResourceGroupOpsArgNullException(string resourceGroupName) { - var subOps = _client.DefaultSubscription; + var subOps = Client.DefaultSubscription; Assert.Throws(delegate { subOps.GetResourceGroupOperations(resourceGroupName); }); } @@ -42,7 +43,7 @@ public void TestGetResourceGroupOpsArgNullException(string resourceGroupName) [RecordedTest] public void TestGetResourceGroupOpsArgException(string resourceGroupName) { - var subOps = _client.DefaultSubscription; + var subOps = Client.DefaultSubscription; Assert.Throws(delegate { subOps.GetResourceGroupOperations(resourceGroupName); }); } @@ -52,7 +53,7 @@ public void TestGetResourceGroupOpsArgException(string resourceGroupName) public void TestGetResourceGroupOpsOutOfRangeArgException(int length) { var resourceGroupName = GetLongString(length); - var subOps = _client.DefaultSubscription; + var subOps = Client.DefaultSubscription; Assert.Throws(delegate { subOps.GetResourceGroupOperations(resourceGroupName); }); } @@ -63,7 +64,7 @@ public void TestGetResourceGroupOpsOutOfRangeArgException(int length) [RecordedTest] public void TestGetResourceGroupOpsValid(string resourceGroupName) { - var subOps = _client.DefaultSubscription; + var subOps = Client.DefaultSubscription; Assert.DoesNotThrow(delegate { subOps.GetResourceGroupOperations(resourceGroupName); }); } @@ -74,7 +75,7 @@ public void TestGetResourceGroupOpsValid(string resourceGroupName) public void TestGetResourceGroupOpsLong(int length) { var resourceGroupName = GetLongString(length); - var subOps = _client.DefaultSubscription; + var subOps = Client.DefaultSubscription; Assert.DoesNotThrow(delegate { subOps.GetResourceGroupOperations(resourceGroupName); }); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/TaggableResourceTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/TaggableResourceTests.cs index 26404671be87..d23e081e5ef7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/TaggableResourceTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/TaggableResourceTests.cs @@ -25,11 +25,9 @@ public TaggableResourceTests(bool isAsync) [SetUp] public async Task SetUpAsync() { - var client = GetArmClient(); - - _rg = await client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName(_rgPrefix)); - _rg = _rg.AddTag("key1", "value1"); - _rg = _rg.AddTag("key2", "value2"); + _rg = await Client.DefaultSubscription.GetResourceGroupContainer().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName(_rgPrefix)); + _rg = await _rg.AddTagAsync("key1", "value1"); + _rg = await _rg.AddTagAsync("key2", "value2"); } [Test] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %).json index dd8a92cd6286..c7234eb0d3db 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %).json @@ -16,15 +16,56 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 00:52:50 GMT", + "Date": "Wed, 10 Mar 2021 06:27:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a776376e-36aa-42c5-879a-87c7bbff8c16", + "x-ms-correlation-request-id": "dc189cae-f92e-4c1d-8502-f0b125cd4794", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "a776376e-36aa-42c5-879a-87c7bbff8c16", - "x-ms-routing-request-id": "WESTUS2:20210305T005251Z:a776376e-36aa-42c5-879a-87c7bbff8c16" + "x-ms-request-id": "dc189cae-f92e-4c1d-8502-f0b125cd4794", + "x-ms-routing-request-id": "WESTUS2:20210310T062750Z:dc189cae-f92e-4c1d-8502-f0b125cd4794" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "238e3fa29ed93fe5b22e9cf4c0cb5037", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:27:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7eadc227-c556-4f5f-847b-d6ae1382bd95", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "7eadc227-c556-4f5f-847b-d6ae1382bd95", + "x-ms-routing-request-id": "WESTUS2:20210310T062750Z:7eadc227-c556-4f5f-847b-d6ae1382bd95" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %)Async.json index a3168288be3a..1e4aa5a715b2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %)Async.json @@ -16,15 +16,56 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 00:52:53 GMT", + "Date": "Wed, 10 Mar 2021 06:27:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "392c204d-aba9-4502-9479-72a6c3a33837", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "392c204d-aba9-4502-9479-72a6c3a33837", - "x-ms-routing-request-id": "WESTUS2:20210305T005254Z:392c204d-aba9-4502-9479-72a6c3a33837" + "x-ms-correlation-request-id": "f61369c5-d6d0-421a-a576-839b7223cd23", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "f61369c5-d6d0-421a-a576-839b7223cd23", + "x-ms-routing-request-id": "WESTUS2:20210310T062752Z:f61369c5-d6d0-421a-a576-839b7223cd23" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "40feff21e75d52f09d3f9bf3f2815533", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:27:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d24f5440-2585-4cfa-a209-a6a27c273c97", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "d24f5440-2585-4cfa-a209-a6a27c273c97", + "x-ms-routing-request-id": "WESTUS2:20210310T062752Z:d24f5440-2585-4cfa-a209-a6a27c273c97" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null).json index 5e19b80ef2bb..f143cdc16119 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null).json @@ -16,15 +16,56 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 00:52:49 GMT", + "Date": "Wed, 10 Mar 2021 06:27:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ce02395-dd77-47fc-b5b7-dd726ac7a3f0", + "x-ms-correlation-request-id": "bd3ea3b1-3c67-4ee0-9db8-ba4f6de05c6e", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "bd3ea3b1-3c67-4ee0-9db8-ba4f6de05c6e", + "x-ms-routing-request-id": "WESTUS2:20210310T062749Z:bd3ea3b1-3c67-4ee0-9db8-ba4f6de05c6e" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "767f7da0b6289747e3128dd60c865934", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:27:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0ae62c7b-b88d-4de2-bd9b-0fcad9b0eb7e", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "4ce02395-dd77-47fc-b5b7-dd726ac7a3f0", - "x-ms-routing-request-id": "WESTUS2:20210305T005250Z:4ce02395-dd77-47fc-b5b7-dd726ac7a3f0" + "x-ms-request-id": "0ae62c7b-b88d-4de2-bd9b-0fcad9b0eb7e", + "x-ms-routing-request-id": "WESTUS2:20210310T062749Z:0ae62c7b-b88d-4de2-bd9b-0fcad9b0eb7e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null)Async.json index bace041ab9f8..60ca9d904e1d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null)Async.json @@ -16,15 +16,56 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 00:52:52 GMT", + "Date": "Wed, 10 Mar 2021 06:27:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f33365a4-168a-43ac-ac4f-91e843fa481d", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "f33365a4-168a-43ac-ac4f-91e843fa481d", - "x-ms-routing-request-id": "WESTUS2:20210305T005253Z:f33365a4-168a-43ac-ac4f-91e843fa481d" + "x-ms-correlation-request-id": "491a1a4b-bd52-475f-a16f-a2cd46d32f46", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "491a1a4b-bd52-475f-a16f-a2cd46d32f46", + "x-ms-routing-request-id": "WESTUS2:20210310T062752Z:491a1a4b-bd52-475f-a16f-a2cd46d32f46" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3929ee8f1656fa8ec3ad3062ced16fd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:27:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e601d99e-3a49-4feb-ad20-6c377c4988b3", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "e601d99e-3a49-4feb-ad20-6c377c4988b3", + "x-ms-routing-request-id": "WESTUS2:20210310T062752Z:e601d99e-3a49-4feb-ad20-6c377c4988b3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %).json index dea52c422924..646918fcec6a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %).json @@ -16,15 +16,56 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 00:52:51 GMT", + "Date": "Wed, 10 Mar 2021 06:27:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06a130c8-630f-454c-b0e3-8949d4c03ebb", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "06a130c8-630f-454c-b0e3-8949d4c03ebb", - "x-ms-routing-request-id": "WESTUS2:20210305T005252Z:06a130c8-630f-454c-b0e3-8949d4c03ebb" + "x-ms-correlation-request-id": "6ac11f74-3e0f-4ed5-ac85-9d89c03fcc57", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "6ac11f74-3e0f-4ed5-ac85-9d89c03fcc57", + "x-ms-routing-request-id": "WESTUS2:20210310T062751Z:6ac11f74-3e0f-4ed5-ac85-9d89c03fcc57" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5f3f5179e1d40d9991ce2c9b70978433", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:27:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a60c7734-7280-4833-87ee-8063d339b211", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "a60c7734-7280-4833-87ee-8063d339b211", + "x-ms-routing-request-id": "WESTUS2:20210310T062751Z:a60c7734-7280-4833-87ee-8063d339b211" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %)Async.json index 51283627007a..1984c7f2da22 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %)Async.json @@ -16,15 +16,56 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 00:52:54 GMT", + "Date": "Wed, 10 Mar 2021 06:27:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a04b2f83-2f86-4496-b126-4d5268e6bbe3", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "a04b2f83-2f86-4496-b126-4d5268e6bbe3", - "x-ms-routing-request-id": "WESTUS2:20210305T005255Z:a04b2f83-2f86-4496-b126-4d5268e6bbe3" + "x-ms-correlation-request-id": "2039d02a-78d4-4a01-abce-2b3539055e12", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "2039d02a-78d4-4a01-abce-2b3539055e12", + "x-ms-routing-request-id": "WESTUS2:20210310T062754Z:2039d02a-78d4-4a01-abce-2b3539055e12" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d57e0bb36a51cad12845b436cbdee54c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:27:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6c9831ce-72cf-480a-9c1f-6b6b14712e67", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "6c9831ce-72cf-480a-9c1f-6b6b14712e67", + "x-ms-routing-request-id": "WESTUS2:20210310T062754Z:6c9831ce-72cf-480a-9c1f-6b6b14712e67" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null).json index ced944cea42e..df53fc1fd4ed 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null).json @@ -16,15 +16,56 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 00:52:50 GMT", + "Date": "Wed, 10 Mar 2021 06:27:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b82752f1-04bc-4ea1-8bfa-ba166c52af5b", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "b82752f1-04bc-4ea1-8bfa-ba166c52af5b", - "x-ms-routing-request-id": "WESTUS2:20210305T005251Z:b82752f1-04bc-4ea1-8bfa-ba166c52af5b" + "x-ms-correlation-request-id": "cbb90a4b-e4db-4f5e-bd68-aa3ea49ed194", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "cbb90a4b-e4db-4f5e-bd68-aa3ea49ed194", + "x-ms-routing-request-id": "WESTUS2:20210310T062751Z:cbb90a4b-e4db-4f5e-bd68-aa3ea49ed194" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3c9a7d9f870cbdcc2444a953ea8d6b7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:27:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7bdd8961-8c80-4a42-8a12-d5cc0f6f6e2e", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "7bdd8961-8c80-4a42-8a12-d5cc0f6f6e2e", + "x-ms-routing-request-id": "WESTUS2:20210310T062751Z:7bdd8961-8c80-4a42-8a12-d5cc0f6f6e2e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null)Async.json index f8fada6cb4de..1fe1f4e7f6fe 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null)Async.json @@ -16,15 +16,56 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 00:52:53 GMT", + "Date": "Wed, 10 Mar 2021 06:27:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5269e206-3e2b-4123-b9b6-7ec61fc5f013", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "5269e206-3e2b-4123-b9b6-7ec61fc5f013", - "x-ms-routing-request-id": "WESTUS2:20210305T005254Z:5269e206-3e2b-4123-b9b6-7ec61fc5f013" + "x-ms-correlation-request-id": "8c41b57d-f323-4634-a086-3474c13fc589", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "8c41b57d-f323-4634-a086-3474c13fc589", + "x-ms-routing-request-id": "WESTUS2:20210310T062753Z:8c41b57d-f323-4634-a086-3474c13fc589" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bc72cdb6821e4cebb62ea6d7a11cca06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:27:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0bb167fa-ec3a-481a-9cea-1dbfef358558", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "0bb167fa-ec3a-481a-9cea-1dbfef358558", + "x-ms-routing-request-id": "WESTUS2:20210310T062753Z:0bb167fa-ec3a-481a-9cea-1dbfef358558" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json index fa84ebc974a6..ade10e0342c6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json @@ -1,38 +1,38 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "e474f748b1211fd65efcc9cee7ca4406", + "x-ms-client-request-id": "74f748eb21e4d6b11f5efcc9cee7ca44", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:32 GMT", + "Date": "Tue, 16 Mar 2021 00:50:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6f0759e-923c-457a-831d-d0bfd9013729", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "b6f0759e-923c-457a-831d-d0bfd9013729", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084333Z:b6f0759e-923c-457a-831d-d0bfd9013729" + "x-ms-correlation-request-id": "0c6ffdbb-977e-4b2b-98b3-e69bbf9c03d5", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "0c6ffdbb-977e-4b2b-98b3-e69bbf9c03d5", + "x-ms-routing-request-id": "WESTUS2:20210316T005057Z:0c6ffdbb-977e-4b2b-98b3-e69bbf9c03d5" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": "Azure SDK sandbox", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -42,7 +42,48 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg1175?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "19c2bf17089d38649f10b0584c32c669", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 16 Mar 2021 00:50:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "14aff16a-8c46-4933-9fac-aa346d01aa80", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "14aff16a-8c46-4933-9fac-aa346d01aa80", + "x-ms-routing-request-id": "WESTUS2:20210316T005057Z:14aff16a-8c46-4933-9fac-aa346d01aa80" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg5658?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -50,7 +91,7 @@ "Content-Length": "34", "Content-Type": "application/json", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "19c2bf17089d38649f10b0584c32c669", + "x-ms-client-request-id": "2f02d6d8e3d8fd54fe196873a757e858", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -62,19 +103,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:36 GMT", + "Date": "Tue, 16 Mar 2021 00:50:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a45740e1-3f1b-4f75-b533-76bce716d9a4", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "a45740e1-3f1b-4f75-b533-76bce716d9a4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084336Z:a45740e1-3f1b-4f75-b533-76bce716d9a4" + "x-ms-correlation-request-id": "1051bb5e-2dc6-4ed3-9c0b-0d7965773508", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "1051bb5e-2dc6-4ed3-9c0b-0d7965773508", + "x-ms-routing-request-id": "WESTUS2:20210316T005058Z:1051bb5e-2dc6-4ed3-9c0b-0d7965773508" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg1175", - "name": "CoreRg1175", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5658", + "name": "CoreRg5658", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -84,13 +125,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg1175?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg5658?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "2f02d6d8e3d8fd54fe196873a757e858", + "x-ms-client-request-id": "ccbe1c59735c3f4d933c4510017ed32c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -99,19 +140,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:36 GMT", + "Date": "Tue, 16 Mar 2021 00:50:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64c8b311-3f2f-484d-9834-36089bff54c7", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "64c8b311-3f2f-484d-9834-36089bff54c7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084336Z:64c8b311-3f2f-484d-9834-36089bff54c7" + "x-ms-correlation-request-id": "9e20d78f-7096-4483-b691-e7b75464fd10", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "9e20d78f-7096-4483-b691-e7b75464fd10", + "x-ms-routing-request-id": "WESTUS2:20210316T005058Z:9e20d78f-7096-4483-b691-e7b75464fd10" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg1175", - "name": "CoreRg1175", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5658", + "name": "CoreRg5658", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -121,13 +162,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/FakeName?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/FakeName?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "ccbe1c59735c3f4d933c4510017ed32c", + "x-ms-client-request-id": "11f6603514c7342d6bc41b84a0f19148", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -136,16 +177,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:36 GMT", + "Date": "Tue, 16 Mar 2021 00:50:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0b7113e-2087-4a97-8308-b1f876991be6", + "x-ms-correlation-request-id": "01cefdce-ae3f-41d5-be6d-985b47d81269", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "c0b7113e-2087-4a97-8308-b1f876991be6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084336Z:c0b7113e-2087-4a97-8308-b1f876991be6" + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "01cefdce-ae3f-41d5-be6d-985b47d81269", + "x-ms-routing-request-id": "WESTUS2:20210316T005058Z:01cefdce-ae3f-41d5-be6d-985b47d81269" }, "ResponseBody": { "error": { @@ -157,6 +198,6 @@ ], "Variables": { "RandomSeed": "718120926", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json index 597f24655252..82e062cdde37 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json @@ -1,38 +1,38 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "0fbe578ef97518e5dcdd8a5df490b84a", + "x-ms-client-request-id": "be578ec0750fe5f918dcdd8a5df490b8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:12 GMT", + "Date": "Tue, 16 Mar 2021 00:51:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1fe5a98a-d25f-46f9-b2cd-ff08b9d784a0", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "1fe5a98a-d25f-46f9-b2cd-ff08b9d784a0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084413Z:1fe5a98a-d25f-46f9-b2cd-ff08b9d784a0" + "x-ms-correlation-request-id": "ce48c9fa-b9d3-4a20-98f2-a374c728a6ae", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "ce48c9fa-b9d3-4a20-98f2-a374c728a6ae", + "x-ms-routing-request-id": "WESTUS2:20210316T005124Z:ce48c9fa-b9d3-4a20-98f2-a374c728a6ae" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": "Azure SDK sandbox", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -42,7 +42,48 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg1178?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "70352749c0857f2987693d9368751c51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 16 Mar 2021 00:51:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "33647981-2a05-4b21-a9de-db3d73db1af6", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "33647981-2a05-4b21-a9de-db3d73db1af6", + "x-ms-routing-request-id": "WESTUS2:20210316T005125Z:33647981-2a05-4b21-a9de-db3d73db1af6" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg4338?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -50,7 +91,7 @@ "Content-Length": "34", "Content-Type": "application/json", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "70352749c0857f2987693d9368751c51", + "x-ms-client-request-id": "adb38169ab78bf4921c73827e08c45e8", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -62,19 +103,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:14 GMT", + "Date": "Tue, 16 Mar 2021 00:51:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e515fb71-7d8a-4081-9601-3a30d1a62a2d", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "e515fb71-7d8a-4081-9601-3a30d1a62a2d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084414Z:e515fb71-7d8a-4081-9601-3a30d1a62a2d" + "x-ms-correlation-request-id": "c7a2cbc8-9c8f-46fc-b3fa-e7b870855ab9", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "c7a2cbc8-9c8f-46fc-b3fa-e7b870855ab9", + "x-ms-routing-request-id": "WESTUS2:20210316T005125Z:c7a2cbc8-9c8f-46fc-b3fa-e7b870855ab9" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg1178", - "name": "CoreRg1178", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg4338", + "name": "CoreRg4338", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -84,13 +125,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg1178?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg4338?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "adb38169ab78bf4921c73827e08c45e8", + "x-ms-client-request-id": "54e300809f2ccd3a2d3f870bbc52af66", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -99,19 +140,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:14 GMT", + "Date": "Tue, 16 Mar 2021 00:51:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01e57633-8fc9-4be1-8550-b7a4e099ab96", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "01e57633-8fc9-4be1-8550-b7a4e099ab96", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084414Z:01e57633-8fc9-4be1-8550-b7a4e099ab96" + "x-ms-correlation-request-id": "7f5a58b4-cce7-4ced-a15f-ab9aa9b3d982", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "7f5a58b4-cce7-4ced-a15f-ab9aa9b3d982", + "x-ms-routing-request-id": "WESTUS2:20210316T005125Z:7f5a58b4-cce7-4ced-a15f-ab9aa9b3d982" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg1178", - "name": "CoreRg1178", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg4338", + "name": "CoreRg4338", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -121,13 +162,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/FakeName?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/FakeName?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "54e300809f2ccd3a2d3f870bbc52af66", + "x-ms-client-request-id": "73f438c10adc9ed2de754ebd87029efb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -136,16 +177,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:14 GMT", + "Date": "Tue, 16 Mar 2021 00:51:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3291c4ac-c0ef-4c75-949d-823255fa2e36", + "x-ms-correlation-request-id": "36786c25-727b-4938-89af-aa9a225a7442", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "3291c4ac-c0ef-4c75-949d-823255fa2e36", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084414Z:3291c4ac-c0ef-4c75-949d-823255fa2e36" + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "36786c25-727b-4938-89af-aa9a225a7442", + "x-ms-routing-request-id": "WESTUS2:20210316T005125Z:36786c25-727b-4938-89af-aa9a225a7442" }, "ResponseBody": { "error": { @@ -157,6 +198,6 @@ ], "Variables": { "RandomSeed": "1615539813", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest().json index 7935e6d50549..17c416199c87 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest().json @@ -1,38 +1,38 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "d68d6ad027b2ec67d973dad31c57dbb6", + "x-ms-client-request-id": "8d6ad085b2d66727ecd973dad31c57db", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:51 GMT", + "Date": "Tue, 16 Mar 2021 00:50:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6743807a-7e87-4c24-988d-ed30f369c7e9", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "6743807a-7e87-4c24-988d-ed30f369c7e9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084352Z:6743807a-7e87-4c24-988d-ed30f369c7e9" + "x-ms-correlation-request-id": "805aab7a-5c6a-4be8-9377-c2bba6991d5e", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "805aab7a-5c6a-4be8-9377-c2bba6991d5e", + "x-ms-routing-request-id": "WESTUS2:20210316T005059Z:805aab7a-5c6a-4be8-9377-c2bba6991d5e" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": "Azure SDK sandbox", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -42,7 +42,48 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg354?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d8da6527efc33cf0c724b8c7c04f6f87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 16 Mar 2021 00:50:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "328c7eaa-27b6-43f0-85c5-2b9059e9e144", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "328c7eaa-27b6-43f0-85c5-2b9059e9e144", + "x-ms-routing-request-id": "WESTUS2:20210316T005059Z:328c7eaa-27b6-43f0-85c5-2b9059e9e144" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg1793?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -50,7 +91,7 @@ "Content-Length": "34", "Content-Type": "application/json", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "d8da6527efc33cf0c724b8c7c04f6f87", + "x-ms-client-request-id": "62ed47aa747f3a9d042d8a7e1c4be7ea", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -60,21 +101,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "226", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:54 GMT", + "Date": "Tue, 16 Mar 2021 00:50:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcf8e26a-2b2c-4935-a865-43decea34ac3", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "fcf8e26a-2b2c-4935-a865-43decea34ac3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084355Z:fcf8e26a-2b2c-4935-a865-43decea34ac3" + "x-ms-correlation-request-id": "a86156c1-9086-4b4b-bbd7-b917e18bd4f4", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "a86156c1-9086-4b4b-bbd7-b917e18bd4f4", + "x-ms-routing-request-id": "WESTUS2:20210316T005100Z:a86156c1-9086-4b4b-bbd7-b917e18bd4f4" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg354", - "name": "CoreRg354", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg1793", + "name": "CoreRg1793", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -84,34 +125,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg354?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg1793?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "62ed47aa747f3a9d042d8a7e1c4be7ea", + "x-ms-client-request-id": "e9b37889c698e0c179500e8e6ea02c8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "226", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:54 GMT", + "Date": "Tue, 16 Mar 2021 00:50:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b69b91e-f43a-4d75-94dd-e7ac3b6af48a", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "8b69b91e-f43a-4d75-94dd-e7ac3b6af48a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084355Z:8b69b91e-f43a-4d75-94dd-e7ac3b6af48a" + "x-ms-correlation-request-id": "b2920b57-ece3-410e-bc3e-47bbdd24071f", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "b2920b57-ece3-410e-bc3e-47bbdd24071f", + "x-ms-routing-request-id": "WESTUS2:20210316T005100Z:b2920b57-ece3-410e-bc3e-47bbdd24071f" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg354", - "name": "CoreRg354", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg1793", + "name": "CoreRg1793", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -121,13 +162,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/FakeName?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/FakeName?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "e9b37889c698e0c179500e8e6ea02c8a", + "x-ms-client-request-id": "d52852037969b236c8a0d3966572207b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -136,16 +177,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:54 GMT", + "Date": "Tue, 16 Mar 2021 00:50:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d86c122b-03b1-4b10-ab94-5fa2431df1f4", + "x-ms-correlation-request-id": "43c5090e-03d9-4bc3-8c8b-d71e4239a854", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "d86c122b-03b1-4b10-ab94-5fa2431df1f4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084355Z:d86c122b-03b1-4b10-ab94-5fa2431df1f4" + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "43c5090e-03d9-4bc3-8c8b-d71e4239a854", + "x-ms-routing-request-id": "WESTUS2:20210316T005100Z:43c5090e-03d9-4bc3-8c8b-d71e4239a854" }, "ResponseBody": { "error": { @@ -157,6 +198,6 @@ ], "Variables": { "RandomSeed": "2022059398", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest()Async.json index 031474d1b3da..dd2da538ec0d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest()Async.json @@ -1,38 +1,38 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f7eaea60c33398558d80352c9d7a1c6f", + "x-ms-client-request-id": "eaea601333f755c3988d80352c9d7a1c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:16 GMT", + "Date": "Tue, 16 Mar 2021 00:51:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1eef3f56-117e-4031-bbe8-742c7649eb1a", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "1eef3f56-117e-4031-bbe8-742c7649eb1a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084416Z:1eef3f56-117e-4031-bbe8-742c7649eb1a" + "x-ms-correlation-request-id": "45bf4925-2d8e-42e9-8dc2-45958b563a86", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "45bf4925-2d8e-42e9-8dc2-45958b563a86", + "x-ms-routing-request-id": "WESTUS2:20210316T005127Z:45bf4925-2d8e-42e9-8dc2-45958b563a86" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": "Azure SDK sandbox", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -42,7 +42,48 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg9777?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c8587753375eb275534db8cc8768f10f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 16 Mar 2021 00:51:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5542e100-a1d3-4c35-8e3f-fa86fa431bd2", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "5542e100-a1d3-4c35-8e3f-fa86fa431bd2", + "x-ms-routing-request-id": "WESTUS2:20210316T005127Z:5542e100-a1d3-4c35-8e3f-fa86fa431bd2" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg1093?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -50,7 +91,7 @@ "Content-Length": "34", "Content-Type": "application/json", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "c8587753375eb275534db8cc8768f10f", + "x-ms-client-request-id": "96ec58e62e621f1609f5dd93533fe038", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -62,19 +103,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:17 GMT", + "Date": "Tue, 16 Mar 2021 00:51:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc69312a-1c67-4f9c-a1dd-d4351447c565", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "dc69312a-1c67-4f9c-a1dd-d4351447c565", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084417Z:dc69312a-1c67-4f9c-a1dd-d4351447c565" + "x-ms-correlation-request-id": "ea4310af-fba1-47fa-b5c8-83f667b6ce3a", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "ea4310af-fba1-47fa-b5c8-83f667b6ce3a", + "x-ms-routing-request-id": "WESTUS2:20210316T005128Z:ea4310af-fba1-47fa-b5c8-83f667b6ce3a" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg9777", - "name": "CoreRg9777", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg1093", + "name": "CoreRg1093", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -84,13 +125,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg9777?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg1093?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "96ec58e62e621f1609f5dd93533fe038", + "x-ms-client-request-id": "1d2cd91c8b8528b57438a3e60a891025", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -99,19 +140,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:17 GMT", + "Date": "Tue, 16 Mar 2021 00:51:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "677b8456-73fa-4b7b-a02a-591aeeb6cac2", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "677b8456-73fa-4b7b-a02a-591aeeb6cac2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084417Z:677b8456-73fa-4b7b-a02a-591aeeb6cac2" + "x-ms-correlation-request-id": "29b9eae8-fa0e-4a63-b9a3-23693ea6e031", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "29b9eae8-fa0e-4a63-b9a3-23693ea6e031", + "x-ms-routing-request-id": "WESTUS2:20210316T005128Z:29b9eae8-fa0e-4a63-b9a3-23693ea6e031" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg9777", - "name": "CoreRg9777", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg1093", + "name": "CoreRg1093", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -121,13 +162,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/FakeName?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/FakeName?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "1d2cd91c8b8528b57438a3e60a891025", + "x-ms-client-request-id": "4445268f858e240c6038be6859e25e13", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -136,16 +177,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:17 GMT", + "Date": "Tue, 16 Mar 2021 00:51:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "102a58e9-17da-47b2-ad30-d5648a1f4fe5", + "x-ms-correlation-request-id": "55735a4c-e41e-4f56-89df-b425ccbd407f", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "102a58e9-17da-47b2-ad30-d5648a1f4fe5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084417Z:102a58e9-17da-47b2-ad30-d5648a1f4fe5" + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "55735a4c-e41e-4f56-89df-b425ccbd407f", + "x-ms-routing-request-id": "WESTUS2:20210316T005128Z:55735a4c-e41e-4f56-89df-b425ccbd407f" }, "ResponseBody": { "error": { @@ -157,6 +198,6 @@ ], "Variables": { "RandomSeed": "1161888214", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json index 2a153e38e555..5ec864b47423 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json @@ -1,38 +1,38 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "bf298d917c4a9c21e3841a8d26025e53", + "x-ms-client-request-id": "298d91fa4abf217c9ce3841a8d26025e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:57 GMT", + "Date": "Tue, 16 Mar 2021 00:51:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b4917d1-1a04-45ec-acad-563b6ab7ad85", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "0b4917d1-1a04-45ec-acad-563b6ab7ad85", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084358Z:0b4917d1-1a04-45ec-acad-563b6ab7ad85" + "x-ms-correlation-request-id": "f0efb3a5-2ad0-451a-9359-0740014bb102", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "f0efb3a5-2ad0-451a-9359-0740014bb102", + "x-ms-routing-request-id": "WESTUS2:20210316T005101Z:f0efb3a5-2ad0-451a-9359-0740014bb102" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": "Azure SDK sandbox", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -42,7 +42,48 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg9464?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e8934346dc3ec3265a3d1d3b4581c6bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 16 Mar 2021 00:51:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bc91e236-4449-4c68-80d9-9c3837b733f7", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "bc91e236-4449-4c68-80d9-9c3837b733f7", + "x-ms-routing-request-id": "WESTUS2:20210316T005101Z:bc91e236-4449-4c68-80d9-9c3837b733f7" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg7386?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -50,7 +91,7 @@ "Content-Length": "34", "Content-Type": "application/json", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "e8934346dc3ec3265a3d1d3b4581c6bb", + "x-ms-client-request-id": "c4c34c1fe8db5ae289cd72ccc48f3ddb", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -62,19 +103,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:59 GMT", + "Date": "Tue, 16 Mar 2021 00:51:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abb4dd8f-0870-414f-9a1b-8dcd08c77f72", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "abb4dd8f-0870-414f-9a1b-8dcd08c77f72", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084400Z:abb4dd8f-0870-414f-9a1b-8dcd08c77f72" + "x-ms-correlation-request-id": "37228567-5a9f-49e5-b7ff-d53be37efd9a", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "37228567-5a9f-49e5-b7ff-d53be37efd9a", + "x-ms-routing-request-id": "WESTUS2:20210316T005101Z:37228567-5a9f-49e5-b7ff-d53be37efd9a" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg9464", - "name": "CoreRg9464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg7386", + "name": "CoreRg7386", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -84,13 +125,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg9464?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg7386?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "c4c34c1fe8db5ae289cd72ccc48f3ddb", + "x-ms-client-request-id": "6573ff6ff659b5bc6765650c5fe55762", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -99,19 +140,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:59 GMT", + "Date": "Tue, 16 Mar 2021 00:51:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb487da5-d4f8-47d2-b656-030005a50cdb", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "eb487da5-d4f8-47d2-b656-030005a50cdb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084400Z:eb487da5-d4f8-47d2-b656-030005a50cdb" + "x-ms-correlation-request-id": "ef14316c-ccd1-429f-8faa-cdca4637606f", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "ef14316c-ccd1-429f-8faa-cdca4637606f", + "x-ms-routing-request-id": "WESTUS2:20210316T005102Z:ef14316c-ccd1-429f-8faa-cdca4637606f" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg9464", - "name": "CoreRg9464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg7386", + "name": "CoreRg7386", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -121,13 +162,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/FakeName?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/FakeName?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "6573ff6ff659b5bc6765650c5fe55762", + "x-ms-client-request-id": "d96e5ebe993f5d7861385f706a5affca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -136,16 +177,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:43:59 GMT", + "Date": "Tue, 16 Mar 2021 00:51:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1549eea9-60d8-4637-b302-c6eedef071fb", + "x-ms-correlation-request-id": "8dca8b8b-8501-4824-995f-63d68331bba2", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "1549eea9-60d8-4637-b302-c6eedef071fb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084400Z:1549eea9-60d8-4637-b302-c6eedef071fb" + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "8dca8b8b-8501-4824-995f-63d68331bba2", + "x-ms-routing-request-id": "WESTUS2:20210316T005102Z:8dca8b8b-8501-4824-995f-63d68331bba2" }, "ResponseBody": { "error": { @@ -157,6 +198,6 @@ ], "Variables": { "RandomSeed": "357280712", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json index e031cf4a0de1..a00a601af054 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json @@ -1,38 +1,38 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "bbe327fcba17c6783c96daaf95147090", + "x-ms-client-request-id": "e327fc4517bb78bac63c96daaf951470", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:22 GMT", + "Date": "Tue, 16 Mar 2021 00:51:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60643137-916c-41a0-beaf-3925f492dc5c", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "60643137-916c-41a0-beaf-3925f492dc5c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084422Z:60643137-916c-41a0-beaf-3925f492dc5c" + "x-ms-correlation-request-id": "dbcd4056-02ae-4172-b872-466c9892c2df", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "dbcd4056-02ae-4172-b872-466c9892c2df", + "x-ms-routing-request-id": "WESTUS2:20210316T005129Z:dbcd4056-02ae-4172-b872-466c9892c2df" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": "Azure SDK sandbox", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -42,7 +42,48 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg8072?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "eb748011e5124bc6ca16570b21b9ba36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 16 Mar 2021 00:51:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "286d25ac-da10-419e-a70a-e1cdc571d6bd", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "286d25ac-da10-419e-a70a-e1cdc571d6bd", + "x-ms-routing-request-id": "WESTUS2:20210316T005129Z:286d25ac-da10-419e-a70a-e1cdc571d6bd" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg3672?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -50,7 +91,7 @@ "Content-Length": "34", "Content-Type": "application/json", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "eb748011e5124bc6ca16570b21b9ba36", + "x-ms-client-request-id": "f3e34ec6763156a7bab6bf06b080a975", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -62,19 +103,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:23 GMT", + "Date": "Tue, 16 Mar 2021 00:51:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c624c8ff-ff48-4290-89db-c9e563f8d3a0", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "c624c8ff-ff48-4290-89db-c9e563f8d3a0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084423Z:c624c8ff-ff48-4290-89db-c9e563f8d3a0" + "x-ms-correlation-request-id": "10404d75-5490-49c5-aa96-b171b9aeb366", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "10404d75-5490-49c5-aa96-b171b9aeb366", + "x-ms-routing-request-id": "WESTUS2:20210316T005129Z:10404d75-5490-49c5-aa96-b171b9aeb366" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg8072", - "name": "CoreRg8072", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg3672", + "name": "CoreRg3672", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -84,13 +125,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/CoreRg8072?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg3672?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f3e34ec6763156a7bab6bf06b080a975", + "x-ms-client-request-id": "b4037b2d729116336198f001626ca483", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -99,19 +140,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:23 GMT", + "Date": "Tue, 16 Mar 2021 00:51:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b76c90a2-fbbf-4725-9df4-8b507fc63702", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "b76c90a2-fbbf-4725-9df4-8b507fc63702", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084423Z:b76c90a2-fbbf-4725-9df4-8b507fc63702" + "x-ms-correlation-request-id": "0d044b1c-f242-44dd-b3cb-ef68bc5f8f1f", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "0d044b1c-f242-44dd-b3cb-ef68bc5f8f1f", + "x-ms-routing-request-id": "WESTUS2:20210316T005130Z:0d044b1c-f242-44dd-b3cb-ef68bc5f8f1f" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourceGroups/CoreRg8072", - "name": "CoreRg8072", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg3672", + "name": "CoreRg3672", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -121,13 +162,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/resourcegroups/FakeName?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/FakeName?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "b4037b2d729116336198f001626ca483", + "x-ms-client-request-id": "46e8a4db7c319a5ed81e305b25c09a4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -136,16 +177,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 12 Mar 2021 08:44:23 GMT", + "Date": "Tue, 16 Mar 2021 00:51:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34d1f1b6-a4ef-4407-a3df-5e9cc74b3b90", + "x-ms-correlation-request-id": "fcdfe158-c3d7-415d-8251-5e86e49939fa", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "34d1f1b6-a4ef-4407-a3df-5e9cc74b3b90", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210312T084423Z:34d1f1b6-a4ef-4407-a3df-5e9cc74b3b90" + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "fcdfe158-c3d7-415d-8251-5e86e49939fa", + "x-ms-routing-request-id": "WESTUS2:20210316T005130Z:fcdfe158-c3d7-415d-8251-5e86e49939fa" }, "ResponseBody": { "error": { @@ -157,6 +198,6 @@ ], "Variables": { "RandomSeed": "10635373", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json new file mode 100644 index 000000000000..7cafe89b4502 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json @@ -0,0 +1,92 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fbf5ae5d9d0e4ef6d820c67cd78a6b7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "972ec4b1-ff25-46c1-b10e-f49527fbeed8", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "972ec4b1-ff25-46c1-b10e-f49527fbeed8", + "x-ms-routing-request-id": "WESTUS2:20210310T051520Z:972ec4b1-ff25-46c1-b10e-f49527fbeed8" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-9476?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-de005d4107504346b77f3f2209db456c-3b8600e5d9e2884e-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4f9b1cb0c615a755df66b08668e1e5c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "90427e78-9d8b-42d1-9652-1eee29473860", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "90427e78-9d8b-42d1-9652-1eee29473860", + "x-ms-routing-request-id": "WESTUS2:20210310T051521Z:90427e78-9d8b-42d1-9652-1eee29473860" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", + "name": "testRg-9476", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "899326195", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json new file mode 100644 index 000000000000..0bc3d6678fd3 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json @@ -0,0 +1,92 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fbf5ae5d9d0e4ef6d820c67cd78a6b7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "59f27370-5c39-49b5-9f52-0d212751eef3", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "59f27370-5c39-49b5-9f52-0d212751eef3", + "x-ms-routing-request-id": "WESTUS2:20210310T051520Z:59f27370-5c39-49b5-9f52-0d212751eef3" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-9476?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-ce40bf9d0427a54a9e5b0ec049bd4473-361e0abe2fb5d445-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4f9b1cb0c615a755df66b08668e1e5c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "628880e0-c079-48cb-a8b1-6f8f24acd509", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "628880e0-c079-48cb-a8b1-6f8f24acd509", + "x-ms-routing-request-id": "WESTUS2:20210310T051521Z:628880e0-c079-48cb-a8b1-6f8f24acd509" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", + "name": "testRg-9476", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "899326195", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json new file mode 100644 index 000000000000..dab56db1c845 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json @@ -0,0 +1,130 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "947ed80a888c329c78682d2e8a26a844", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:18:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d8490e1c-7d96-43f7-b5f4-19cb401dcadc", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "d8490e1c-7d96-43f7-b5f4-19cb401dcadc", + "x-ms-routing-request-id": "WESTUS:20210310T051808Z:d8490e1c-7d96-43f7-b5f4-19cb401dcadc" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2388?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-8d586b10a435ee40aad9e1d6d5281229-b8c0fd44274d5043-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6e214c3fac952f6afda406451eb6e501", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:18:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cf9cfc6c-23df-49a8-9c3b-580d0f735ce1", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "cf9cfc6c-23df-49a8-9c3b-580d0f735ce1", + "x-ms-routing-request-id": "WESTUS:20210310T051809Z:cf9cfc6c-23df-49a8-9c3b-580d0f735ce1" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", + "name": "testRg-2388", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2388?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-dd89f88eeead664e841d951608cb23d3-169ce5980f43e74e-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9730847ff5de83c556d82af59a97e08a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:18:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "813ecb1b-3fe7-42be-92eb-d4436d10f5fb", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "813ecb1b-3fe7-42be-92eb-d4436d10f5fb", + "x-ms-routing-request-id": "WESTUS:20210310T051810Z:813ecb1b-3fe7-42be-92eb-d4436d10f5fb" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", + "name": "testRg-2388", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "218219415", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json new file mode 100644 index 000000000000..c9041db9bf36 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json @@ -0,0 +1,130 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bf56a65b1b3503a53e85268135c4c103", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f797c1dc-d279-4c3d-8689-97b003c9ed83", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "f797c1dc-d279-4c3d-8689-97b003c9ed83", + "x-ms-routing-request-id": "WESTUS2:20210310T051522Z:f797c1dc-d279-4c3d-8689-97b003c9ed83" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6439?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-78cc233f15a95346bedb2c2ab4478b64-3fd8355585821742-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b569d83722f70f6203999b272959e7c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "64d6d2b6-d403-4211-a024-192a494babb0", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "64d6d2b6-d403-4211-a024-192a494babb0", + "x-ms-routing-request-id": "WESTUS2:20210310T051523Z:64d6d2b6-d403-4211-a024-192a494babb0" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", + "name": "testRg-6439", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6439?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-6f08995bc596184d8c534efaf15a72c2-d24ac8f13a413e44-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1e0f8777a432c9cce195e5f9f9edde36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2eda456a-2c96-4175-8690-aa2896eeb1f9", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "2eda456a-2c96-4175-8690-aa2896eeb1f9", + "x-ms-routing-request-id": "WESTUS2:20210310T051523Z:2eda456a-2c96-4175-8690-aa2896eeb1f9" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", + "name": "testRg-6439", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "2387839", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json new file mode 100644 index 000000000000..58d15d260f2c --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json @@ -0,0 +1,332 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "32314624bfbe8662a7fea2c55ef4175d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0ecf0ca7-e60b-40ab-a957-e628559bfefd", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "0ecf0ca7-e60b-40ab-a957-e628559bfefd", + "x-ms-routing-request-id": "WESTUS2:20210310T062504Z:0ecf0ca7-e60b-40ab-a957-e628559bfefd" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6350?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-b2b6e8e2eaace845813249360a910e74-07d30f4b16990549-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4d506cbd48c3a8c934b1e57276165c60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "62074c1f-e848-4b4c-a717-1158f11dbdda", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "62074c1f-e848-4b4c-a717-1158f11dbdda", + "x-ms-routing-request-id": "WESTUS2:20210310T062505Z:62074c1f-e848-4b4c-a717-1158f11dbdda" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", + "name": "testRg-6350", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6091?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-49a3327804017b4c90519e478041799f-92a50af83b091047-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "997a583a7a13a661eb9ff26126efcbab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "37653f5a-92ed-468d-807a-b7bca0bf0b29", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "37653f5a-92ed-468d-807a-b7bca0bf0b29", + "x-ms-routing-request-id": "WESTUS2:20210310T062506Z:37653f5a-92ed-468d-807a-b7bca0bf0b29" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", + "name": "testRg-6091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a28128415086dc429e2de05ff896de98-91079d230d1d6a4b-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "db5e9666609168fe8a8a0e7c1330e845", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "3978", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4c75bb25-9302-4b8a-9242-9c943b69b61c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "4c75bb25-9302-4b8a-9242-9c943b69b61c", + "x-ms-routing-request-id": "WESTUS2:20210310T062506Z:4c75bb25-9302-4b8a-9242-9c943b69b61c" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9714", + "name": "testRg-9714", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-4091", + "name": "testRg-4091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-3536", + "name": "testRg-3536", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7291", + "name": "testRg-7291", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5007", + "name": "testRg-5007", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-557", + "name": "testRg-557", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7976", + "name": "testRg-7976", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8051", + "name": "testRg-8051", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9131", + "name": "testRg-9131", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5858", + "name": "testRg-5858", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", + "name": "testRg-6350", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", + "name": "testRg-6091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2", + "name": "AutoRestResources2", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", + "name": "Default-Storage-EastAsia", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastasia", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", + "name": "Default-Storage-EastUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", + "name": "Default-Storage-WestUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + } + ] + } + } + ], + "Variables": { + "RandomSeed": "1884863518", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json new file mode 100644 index 000000000000..0f3df558a8c3 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json @@ -0,0 +1,352 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fc4e15b5fbbb5705603d2b33fb5b2337", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3f80fd14-dd45-4451-84ed-812c18b27e15", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "3f80fd14-dd45-4451-84ed-812c18b27e15", + "x-ms-routing-request-id": "WESTUS2:20210310T062529Z:3f80fd14-dd45-4451-84ed-812c18b27e15" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-9522?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-805fdc079074e34a93a3733a6095241e-3b3894355803df41-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9c1867024544a4ce2fd808a6a8f416fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e1a483e9-8e20-47d3-804a-e1242604cd8d", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "e1a483e9-8e20-47d3-804a-e1242604cd8d", + "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:e1a483e9-8e20-47d3-804a-e1242604cd8d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", + "name": "testRg-9522", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2283?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-70155e612b4cbb45a86b4e1bf9311095-b588d522b5823c47-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f77522cdaf69f33f8f0ffba77bde90a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b6c3013d-c726-43b6-8654-c37ae885405c", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "b6c3013d-c726-43b6-8654-c37ae885405c", + "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:b6c3013d-c726-43b6-8654-c37ae885405c" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", + "name": "testRg-2283", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b02852abdb9797459ffe52b9697415a8-27aa7a1d092f0248-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1e6fd11270f580cf588b22fcb1b74814", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "4438", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5ca1d1e5-e0b0-4411-9066-fa927b2e6000", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "5ca1d1e5-e0b0-4411-9066-fa927b2e6000", + "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:5ca1d1e5-e0b0-4411-9066-fa927b2e6000" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9714", + "name": "testRg-9714", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-4091", + "name": "testRg-4091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-3536", + "name": "testRg-3536", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7291", + "name": "testRg-7291", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5007", + "name": "testRg-5007", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-557", + "name": "testRg-557", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7976", + "name": "testRg-7976", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8051", + "name": "testRg-8051", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9131", + "name": "testRg-9131", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5858", + "name": "testRg-5858", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", + "name": "testRg-6350", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", + "name": "testRg-6091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", + "name": "testRg-9522", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", + "name": "testRg-2283", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2", + "name": "AutoRestResources2", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", + "name": "Default-Storage-EastAsia", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastasia", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", + "name": "Default-Storage-EastUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", + "name": "Default-Storage-WestUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + } + ] + } + } + ], + "Variables": { + "RandomSeed": "1410275346", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json new file mode 100644 index 000000000000..8f8eb382cbb2 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json @@ -0,0 +1,92 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "884af3a7695b086bb37b82d98938cb3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dda3da96-f995-4243-80f3-0939b8dfff96", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "dda3da96-f995-4243-80f3-0939b8dfff96", + "x-ms-routing-request-id": "WESTUS2:20210310T051527Z:dda3da96-f995-4243-80f3-0939b8dfff96" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-5251?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-55d8c590e1aed44992195675bf597999-94a38f8af5eebe4d-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8b2b066fc48fef0717970e149205230a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2709a0bb-d0b2-4e71-b33d-5d2e0d72538b", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "2709a0bb-d0b2-4e71-b33d-5d2e0d72538b", + "x-ms-routing-request-id": "WESTUS2:20210310T051528Z:2709a0bb-d0b2-4e71-b33d-5d2e0d72538b" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5251", + "name": "testRg-5251", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "1890127810", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json new file mode 100644 index 000000000000..692982fb0bd4 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json @@ -0,0 +1,92 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "41d0d7715fb7e09d06eff6e127b77d79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "88603c52-4188-4a51-aa9c-cbb91ac391a5", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "88603c52-4188-4a51-aa9c-cbb91ac391a5", + "x-ms-routing-request-id": "WESTUS2:20210310T051527Z:88603c52-4188-4a51-aa9c-cbb91ac391a5" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-1105?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-be7d46ca04c9344396f1cab03ad3c784-6ffcbe3dbe970041-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a3b69c81f3028db1851038e65627d650", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 05:15:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ddb161e3-3281-41e5-a101-a10f9d25c726", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "ddb161e3-3281-41e5-a101-a10f9d25c726", + "x-ms-routing-request-id": "WESTUS2:20210310T051528Z:ddb161e3-3281-41e5-a101-a10f9d25c726" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-1105", + "name": "testRg-1105", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "1965002889", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json new file mode 100644 index 000000000000..64ea4455853c --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json @@ -0,0 +1,1019 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "36ca397932140e126372a7087188334f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 18:55:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1baeb551-a957-4e9a-b016-6fba3e7898da", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "1baeb551-a957-4e9a-b016-6fba3e7898da", + "x-ms-routing-request-id": "WESTUS:20210310T185558Z:1baeb551-a957-4e9a-b016-6fba3e7898da" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3087?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-9e66757a8a980d4e908a54dd02c69781-6eac1ad0af72ff45-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a2fa65b3af59b8c04d4be3d77f82d2af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 18:55:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "191510b2-a611-47c1-b77c-87e284830dd6", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "191510b2-a611-47c1-b77c-87e284830dd6", + "x-ms-routing-request-id": "WESTUS:20210310T185600Z:191510b2-a611-47c1-b77c-87e284830dd6" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", + "name": "testrg3087", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3087?api-version=2019-10-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-f71e262abc027a49-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d80061beada5eb9763bfaae39996fb94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "21782b45-ef92-4516-96cb-09fbfbed6dc1", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "21782b45-ef92-4516-96cb-09fbfbed6dc1", + "x-ms-routing-request-id": "WESTUS:20210310T185601Z:21782b45-ef92-4516-96cb-09fbfbed6dc1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-2f4e61744d7c7c40-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "26b359d576330684ce0e3f9a04dd1fb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a6d7bfe0-f1bf-4087-a852-b63c6a413339", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "a6d7bfe0-f1bf-4087-a852-b63c6a413339", + "x-ms-routing-request-id": "WESTUS:20210310T185601Z:a6d7bfe0-f1bf-4087-a852-b63c6a413339" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-f84d374f0505b948-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6fbf4f507676b1854276ce27e6afbc2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "18c5e45a-5226-4e14-9a19-13278c282288", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "18c5e45a-5226-4e14-9a19-13278c282288", + "x-ms-routing-request-id": "WESTUS:20210310T185602Z:18c5e45a-5226-4e14-9a19-13278c282288" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-d9c89534133d8240-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3f0dbadbd5e3a1618a058d1acd85842c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "71a6f9a5-95a4-4b6b-80ec-8bcbb484e128", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "71a6f9a5-95a4-4b6b-80ec-8bcbb484e128", + "x-ms-routing-request-id": "WESTUS:20210310T185603Z:71a6f9a5-95a4-4b6b-80ec-8bcbb484e128" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-2d643e5ae238e645-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "df96105e73775f79d301e3bca75c201e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "444df045-9446-4eb5-bfe7-d193856d7f7f", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "444df045-9446-4eb5-bfe7-d193856d7f7f", + "x-ms-routing-request-id": "WESTUS:20210310T185604Z:444df045-9446-4eb5-bfe7-d193856d7f7f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-b9c49252ea00824e-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "49be1351e0d07bd3ed1ee570e96ae4bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3ae0b15f-fab8-459f-a3ff-5b7e12ccb280", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "3ae0b15f-fab8-459f-a3ff-5b7e12ccb280", + "x-ms-routing-request-id": "WESTUS:20210310T185605Z:3ae0b15f-fab8-459f-a3ff-5b7e12ccb280" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-1805521f250dae44-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d5c9a1f1dd1967b441ad6be1f1a4f92d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d44bb94d-424c-49c0-9da3-ce2360275e99", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "d44bb94d-424c-49c0-9da3-ce2360275e99", + "x-ms-routing-request-id": "WESTUS:20210310T185606Z:d44bb94d-424c-49c0-9da3-ce2360275e99" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-86b8e34ef4e25946-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bac96fe53ac77d5c3c1af1588e097668", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e0adf71a-d7dd-41ad-b42b-779196eaaa90", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "e0adf71a-d7dd-41ad-b42b-779196eaaa90", + "x-ms-routing-request-id": "WESTUS:20210310T185607Z:e0adf71a-d7dd-41ad-b42b-779196eaaa90" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-01a25a1a8fbcdb4d-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "05cb261d4a9374045e56082274f28a49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1097b01c-eaef-4cb9-a472-4c964a170f1e", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "1097b01c-eaef-4cb9-a472-4c964a170f1e", + "x-ms-routing-request-id": "WESTUS:20210310T185609Z:1097b01c-eaef-4cb9-a472-4c964a170f1e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-c654ee75f7b4f241-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7a8ab7252aa1b6f6454b98feeb5bd837", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "823b40c9-af90-461b-91b7-2662f7b2e8d5", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "823b40c9-af90-461b-91b7-2662f7b2e8d5", + "x-ms-routing-request-id": "WESTUS:20210310T185610Z:823b40c9-af90-461b-91b7-2662f7b2e8d5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-339954dbcd9e484d-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "cac40237f3d89a9a6a545b70323a094a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c650ebfe-95ba-4cd3-bff9-07dc5f477f6b", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "c650ebfe-95ba-4cd3-bff9-07dc5f477f6b", + "x-ms-routing-request-id": "WESTUS:20210310T185611Z:c650ebfe-95ba-4cd3-bff9-07dc5f477f6b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-8d61e36d856ab84e-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d733a890fc7ef3c73015c047b1068902", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c4a687ad-07ff-41d5-9257-52add2de36f1", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "c4a687ad-07ff-41d5-9257-52add2de36f1", + "x-ms-routing-request-id": "WESTUS:20210310T185612Z:c4a687ad-07ff-41d5-9257-52add2de36f1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-b97f5209c57cf146-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "71ead07dbf2e32701cf00f4cce85840a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "25e701d9-cba1-468a-a9b9-f02cf0ef41e5", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "25e701d9-cba1-468a-a9b9-f02cf0ef41e5", + "x-ms-routing-request-id": "WESTUS:20210310T185613Z:25e701d9-cba1-468a-a9b9-f02cf0ef41e5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-af09e6166ec93744-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "426d4e4201283bb83bd09ac33253e863", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c03a9df5-071c-4746-bec8-05b2da700b26", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "c03a9df5-071c-4746-bec8-05b2da700b26", + "x-ms-routing-request-id": "WESTUS:20210310T185614Z:c03a9df5-071c-4746-bec8-05b2da700b26" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-b878bdb7f469a84e-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "61f258cb974fd11c3701ba8eec7a24aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "411ba3e5-e67c-4dc9-90d4-0d960d3cd847", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "411ba3e5-e67c-4dc9-90d4-0d960d3cd847", + "x-ms-routing-request-id": "WESTUS:20210310T185615Z:411ba3e5-e67c-4dc9-90d4-0d960d3cd847" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-a195a60933c88a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6304b59146987cda18ae355d24acffc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6c6583a1-eafc-4881-8565-8ba554c1f66b", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "6c6583a1-eafc-4881-8565-8ba554c1f66b", + "x-ms-routing-request-id": "WESTUS:20210310T185616Z:6c6583a1-eafc-4881-8565-8ba554c1f66b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-b58e70b74e4aef45-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7581ac072292aabb319c0a2646294fc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "80a57c67-774e-49c1-8713-1fbacdd3135c", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "80a57c67-774e-49c1-8713-1fbacdd3135c", + "x-ms-routing-request-id": "WESTUS:20210310T185617Z:80a57c67-774e-49c1-8713-1fbacdd3135c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-b4117c10e8e4eb49-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7d32efac854f84cb7d7649a062bfac8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:18 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fe560207-2374-44c5-be75-40f1a2fb517f", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "fe560207-2374-44c5-be75-40f1a2fb517f", + "x-ms-routing-request-id": "WESTUS:20210310T185618Z:fe560207-2374-44c5-be75-40f1a2fb517f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-dae0eed71d62da4f-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4087f202aef86e17fa5a31fb3bb435ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c23935b7-e7a4-43ee-854a-a52dabcb2f86", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "c23935b7-e7a4-43ee-854a-a52dabcb2f86", + "x-ms-routing-request-id": "WESTUS:20210310T185620Z:c23935b7-e7a4-43ee-854a-a52dabcb2f86" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-a33be6934cc78a4d-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "34b0745f82798279e0fcf71cd91a4872", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "74f97b4e-955a-4edd-97f6-c704dfe3d1d8", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "74f97b4e-955a-4edd-97f6-c704dfe3d1d8", + "x-ms-routing-request-id": "WESTUS:20210310T185621Z:74f97b4e-955a-4edd-97f6-c704dfe3d1d8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-f10d85668c444d46-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "54247ff00fa2fdc8d8c482f553cf49c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "97b3f30c-47f3-4f9e-b9dd-f8d5d246a32b", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "97b3f30c-47f3-4f9e-b9dd-f8d5d246a32b", + "x-ms-routing-request-id": "WESTUS:20210310T185622Z:97b3f30c-47f3-4f9e-b9dd-f8d5d246a32b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-adbf8fed636b6446-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ed415b41770e801178055ffcb6fb94e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "39044684-9f85-4197-a2d6-d015db6300dc", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "39044684-9f85-4197-a2d6-d015db6300dc", + "x-ms-routing-request-id": "WESTUS:20210310T185623Z:39044684-9f85-4197-a2d6-d015db6300dc" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-4cb6aa9c95127548-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bc0bbf11e190504bacb35cb5ff842e10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e7550b8d-5ce5-4a88-9b2e-8c25089c5166", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "e7550b8d-5ce5-4a88-9b2e-8c25089c5166", + "x-ms-routing-request-id": "WESTUS:20210310T185624Z:e7550b8d-5ce5-4a88-9b2e-8c25089c5166" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-863fac120eb0c544-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7edb2eb35ad878646ea4db9dafcc46dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:24 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "99cd3d3a-cb68-42f4-93a3-ba51f0308480", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "99cd3d3a-cb68-42f4-93a3-ba51f0308480", + "x-ms-routing-request-id": "WESTUS:20210310T185625Z:99cd3d3a-cb68-42f4-93a3-ba51f0308480" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-13bc61da8e0a184d-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "94e3a12f8cc45f390ff0415b1a5b80f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a6095b21-0a0b-4a00-9ee9-fe65fed2ec10", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "a6095b21-0a0b-4a00-9ee9-fe65fed2ec10", + "x-ms-routing-request-id": "WESTUS:20210310T185626Z:a6095b21-0a0b-4a00-9ee9-fe65fed2ec10" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-4d9c87c5750bcf4a-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "88484ed61620b7075b924deb06aea0df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "de86bca5-e6a4-4760-a948-25f154cf101e", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "de86bca5-e6a4-4760-a948-25f154cf101e", + "x-ms-routing-request-id": "WESTUS:20210310T185627Z:de86bca5-e6a4-4760-a948-25f154cf101e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-c99365c61935094d-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5d867f6c9aa1264cf47b6fe818085e12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "255cfcba-b4d1-4452-b0e2-564c5a519d36", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "255cfcba-b4d1-4452-b0e2-564c5a519d36", + "x-ms-routing-request-id": "WESTUS:20210310T185628Z:255cfcba-b4d1-4452-b0e2-564c5a519d36" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-2fffe64276b78a4b-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "60c7e624bd8319bc9a2b39313f4d5961", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "55cb7694-02df-4822-9718-6a9a1b78ebd0", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "55cb7694-02df-4822-9718-6a9a1b78ebd0", + "x-ms-routing-request-id": "WESTUS:20210310T185629Z:55cb7694-02df-4822-9718-6a9a1b78ebd0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-3ef648719e384d45-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9aee614f22d53b53022294a4a71f9e52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "687a7a8b-bc25-43ce-aec3-761f05b91619", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "687a7a8b-bc25-43ce-aec3-761f05b91619", + "x-ms-routing-request-id": "WESTUS:20210310T185631Z:687a7a8b-bc25-43ce-aec3-761f05b91619" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-edb1173d1a3cbd4e-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1fc73a3440e6ae5cc36dc375611ae7a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "315ef4a1-f519-47f4-9b03-f268298d2d80", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "315ef4a1-f519-47f4-9b03-f268298d2d80", + "x-ms-routing-request-id": "WESTUS:20210310T185632Z:315ef4a1-f519-47f4-9b03-f268298d2d80" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-500b706f845b2a48-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b7980d21c31a013d938b5d612918717b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "639ce428-72c0-4b83-a51b-711828447fc0", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "639ce428-72c0-4b83-a51b-711828447fc0", + "x-ms-routing-request-id": "WESTUS:20210310T185633Z:639ce428-72c0-4b83-a51b-711828447fc0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-343a0096c58040428ca57608f94e1daf-9f4fc400b719bc40-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "04fde68d3a860f7a053fd7685eded9e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0be3a7c1-4aaa-4e9b-b4b7-265afd0e2481", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "0be3a7c1-4aaa-4e9b-b4b7-265afd0e2481", + "x-ms-routing-request-id": "WESTUS:20210310T185634Z:0be3a7c1-4aaa-4e9b-b4b7-265afd0e2481" + }, + "ResponseBody": [] + } + ], + "Variables": { + "RandomSeed": "1104769623", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json new file mode 100644 index 000000000000..72328f3c3571 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json @@ -0,0 +1,990 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "36ca397932140e126372a7087188334f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 18:55:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e2716997-a51d-4e30-a356-e917d915bbef", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "e2716997-a51d-4e30-a356-e917d915bbef", + "x-ms-routing-request-id": "WESTUS:20210310T185558Z:e2716997-a51d-4e30-a356-e917d915bbef" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3087?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-7461963773664043b59c236cdbd84160-a91d1e1f578a2342-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a2fa65b3af59b8c04d4be3d77f82d2af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 18:56:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7ff98943-3296-41a8-b20b-8d6eebb548aa", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "7ff98943-3296-41a8-b20b-8d6eebb548aa", + "x-ms-routing-request-id": "WESTUS:20210310T185601Z:7ff98943-3296-41a8-b20b-8d6eebb548aa" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", + "name": "testrg3087", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3087?api-version=2019-10-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-32f08a562f575640-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d80061beada5eb9763bfaae39996fb94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1e3eaae7-7073-4bed-b12c-4203690212fa", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "1e3eaae7-7073-4bed-b12c-4203690212fa", + "x-ms-routing-request-id": "WESTUS:20210310T185601Z:1e3eaae7-7073-4bed-b12c-4203690212fa" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-091a0f517861ba48-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "26b359d576330684ce0e3f9a04dd1fb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ad8afa23-eddf-4720-81aa-481ffab2b01a", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "ad8afa23-eddf-4720-81aa-481ffab2b01a", + "x-ms-routing-request-id": "WESTUS:20210310T185602Z:ad8afa23-eddf-4720-81aa-481ffab2b01a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-dec974a6436f1649-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6fbf4f507676b1854276ce27e6afbc2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "419ad510-59be-45e5-9c07-243e8b7bec5a", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "419ad510-59be-45e5-9c07-243e8b7bec5a", + "x-ms-routing-request-id": "WESTUS:20210310T185603Z:419ad510-59be-45e5-9c07-243e8b7bec5a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-ae14cd43345c934e-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3f0dbadbd5e3a1618a058d1acd85842c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f0eadf96-2e3d-4486-a235-af776a4c473f", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "f0eadf96-2e3d-4486-a235-af776a4c473f", + "x-ms-routing-request-id": "WESTUS:20210310T185604Z:f0eadf96-2e3d-4486-a235-af776a4c473f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-ae75b94370c59e48-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "df96105e73775f79d301e3bca75c201e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "27cd31c6-4f0d-428e-a64f-39ff043f7679", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "27cd31c6-4f0d-428e-a64f-39ff043f7679", + "x-ms-routing-request-id": "WESTUS:20210310T185605Z:27cd31c6-4f0d-428e-a64f-39ff043f7679" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-81b8787f04753c47-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "49be1351e0d07bd3ed1ee570e96ae4bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6e1d8036-29a7-4c29-9f80-45eccab885e9", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "6e1d8036-29a7-4c29-9f80-45eccab885e9", + "x-ms-routing-request-id": "WESTUS:20210310T185606Z:6e1d8036-29a7-4c29-9f80-45eccab885e9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-d0f9b4d672ecfb41-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d5c9a1f1dd1967b441ad6be1f1a4f92d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "006b93b9-a0e3-4e17-a5d7-4dbc564223a0", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "006b93b9-a0e3-4e17-a5d7-4dbc564223a0", + "x-ms-routing-request-id": "WESTUS:20210310T185607Z:006b93b9-a0e3-4e17-a5d7-4dbc564223a0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-c6dba9ded4e74249-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bac96fe53ac77d5c3c1af1588e097668", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a869ea22-9a1e-444a-baf2-3a0fad5eb923", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "a869ea22-9a1e-444a-baf2-3a0fad5eb923", + "x-ms-routing-request-id": "WESTUS:20210310T185608Z:a869ea22-9a1e-444a-baf2-3a0fad5eb923" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-205d55367503ed4a-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "05cb261d4a9374045e56082274f28a49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "55d4ffc7-8551-4cd5-993e-ee85abef9085", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "55d4ffc7-8551-4cd5-993e-ee85abef9085", + "x-ms-routing-request-id": "WESTUS:20210310T185609Z:55d4ffc7-8551-4cd5-993e-ee85abef9085" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-adc94a2c92c2a249-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7a8ab7252aa1b6f6454b98feeb5bd837", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3424ba02-ecb7-4bb2-bb8e-ee170332d2fc", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "3424ba02-ecb7-4bb2-bb8e-ee170332d2fc", + "x-ms-routing-request-id": "WESTUS:20210310T185610Z:3424ba02-ecb7-4bb2-bb8e-ee170332d2fc" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-6ef319a92bc05f42-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "cac40237f3d89a9a6a545b70323a094a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b29bc6d3-aabd-4a42-b545-d28ae1244821", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "b29bc6d3-aabd-4a42-b545-d28ae1244821", + "x-ms-routing-request-id": "WESTUS:20210310T185611Z:b29bc6d3-aabd-4a42-b545-d28ae1244821" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-413f31c01e5ea946-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d733a890fc7ef3c73015c047b1068902", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d5487674-e097-45f6-ba96-3ff4c81ce1c6", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "d5487674-e097-45f6-ba96-3ff4c81ce1c6", + "x-ms-routing-request-id": "WESTUS:20210310T185613Z:d5487674-e097-45f6-ba96-3ff4c81ce1c6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-c2eb1c96b78a7143-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "71ead07dbf2e32701cf00f4cce85840a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f281bd16-698d-41eb-8fe2-2f278c0fe033", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "f281bd16-698d-41eb-8fe2-2f278c0fe033", + "x-ms-routing-request-id": "WESTUS:20210310T185614Z:f281bd16-698d-41eb-8fe2-2f278c0fe033" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-86e394f678d8d046-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "426d4e4201283bb83bd09ac33253e863", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:14 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d16403fe-66c3-4467-8df5-49a36b5b0cfb", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "d16403fe-66c3-4467-8df5-49a36b5b0cfb", + "x-ms-routing-request-id": "WESTUS:20210310T185615Z:d16403fe-66c3-4467-8df5-49a36b5b0cfb" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-5803ba1965602942-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "61f258cb974fd11c3701ba8eec7a24aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a58b46a9-94b8-42e2-97d9-40dc893c5d25", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "a58b46a9-94b8-42e2-97d9-40dc893c5d25", + "x-ms-routing-request-id": "WESTUS:20210310T185616Z:a58b46a9-94b8-42e2-97d9-40dc893c5d25" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-e4feb524435bd84f-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6304b59146987cda18ae355d24acffc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a4856fab-3ddd-4f82-ad61-eeea47d35d8e", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "a4856fab-3ddd-4f82-ad61-eeea47d35d8e", + "x-ms-routing-request-id": "WESTUS:20210310T185617Z:a4856fab-3ddd-4f82-ad61-eeea47d35d8e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-201b327cca58b64d-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7581ac072292aabb319c0a2646294fc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8faab7c3-d4ab-4446-b9be-6b3e15757de7", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "8faab7c3-d4ab-4446-b9be-6b3e15757de7", + "x-ms-routing-request-id": "WESTUS:20210310T185618Z:8faab7c3-d4ab-4446-b9be-6b3e15757de7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-450a6516413c8e4d-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7d32efac854f84cb7d7649a062bfac8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bdfa902d-9cbb-4541-9365-c7eef099ec3f", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "bdfa902d-9cbb-4541-9365-c7eef099ec3f", + "x-ms-routing-request-id": "WESTUS:20210310T185619Z:bdfa902d-9cbb-4541-9365-c7eef099ec3f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-d3f13d8234c6be4d-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4087f202aef86e17fa5a31fb3bb435ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3bbdbc4d-5bc4-4cde-9c9e-fc9ba319d7bd", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "3bbdbc4d-5bc4-4cde-9c9e-fc9ba319d7bd", + "x-ms-routing-request-id": "WESTUS:20210310T185620Z:3bbdbc4d-5bc4-4cde-9c9e-fc9ba319d7bd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-0816e2812c1e5348-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "34b0745f82798279e0fcf71cd91a4872", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5498e48a-91fe-40ac-b66d-e8fcde742649", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "5498e48a-91fe-40ac-b66d-e8fcde742649", + "x-ms-routing-request-id": "WESTUS:20210310T185621Z:5498e48a-91fe-40ac-b66d-e8fcde742649" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-cc7680ae46726241-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "54247ff00fa2fdc8d8c482f553cf49c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a6ad0ce9-6183-4e2a-a917-72abf579f242", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "a6ad0ce9-6183-4e2a-a917-72abf579f242", + "x-ms-routing-request-id": "WESTUS:20210310T185622Z:a6ad0ce9-6183-4e2a-a917-72abf579f242" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-a4feb46937a6004b-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ed415b41770e801178055ffcb6fb94e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2f649353-ce75-4759-803f-43b0743265a8", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "2f649353-ce75-4759-803f-43b0743265a8", + "x-ms-routing-request-id": "WESTUS:20210310T185624Z:2f649353-ce75-4759-803f-43b0743265a8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-4979e2facf682e42-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bc0bbf11e190504bacb35cb5ff842e10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:24 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "92c68cf5-d9f7-4294-a06b-786f91a0f695", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "92c68cf5-d9f7-4294-a06b-786f91a0f695", + "x-ms-routing-request-id": "WESTUS:20210310T185625Z:92c68cf5-d9f7-4294-a06b-786f91a0f695" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-4c9b68b879a5d34a-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7edb2eb35ad878646ea4db9dafcc46dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9d2a1feb-e2e8-4add-8fe6-ea535dc62ed1", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "9d2a1feb-e2e8-4add-8fe6-ea535dc62ed1", + "x-ms-routing-request-id": "WESTUS:20210310T185626Z:9d2a1feb-e2e8-4add-8fe6-ea535dc62ed1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-0ae4ef3ae08cb249-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "94e3a12f8cc45f390ff0415b1a5b80f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "89ba22ed-8998-492b-a925-35bdcc86778a", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "89ba22ed-8998-492b-a925-35bdcc86778a", + "x-ms-routing-request-id": "WESTUS:20210310T185627Z:89ba22ed-8998-492b-a925-35bdcc86778a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-bab5b06e1ca6514e-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "88484ed61620b7075b924deb06aea0df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "966a6e02-4913-41f3-8e05-f0cbf5d496d8", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "966a6e02-4913-41f3-8e05-f0cbf5d496d8", + "x-ms-routing-request-id": "WESTUS:20210310T185628Z:966a6e02-4913-41f3-8e05-f0cbf5d496d8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-348dced49a371a44-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5d867f6c9aa1264cf47b6fe818085e12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a17c3ad8-f820-436c-aa4d-45a6b18bee93", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "a17c3ad8-f820-436c-aa4d-45a6b18bee93", + "x-ms-routing-request-id": "WESTUS:20210310T185629Z:a17c3ad8-f820-436c-aa4d-45a6b18bee93" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-6549a4a94199cb47-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "60c7e624bd8319bc9a2b39313f4d5961", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4586a83f-c5c9-4ad3-8083-f62a52796536", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "4586a83f-c5c9-4ad3-8083-f62a52796536", + "x-ms-routing-request-id": "WESTUS:20210310T185630Z:4586a83f-c5c9-4ad3-8083-f62a52796536" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-dde43f1b03a2f44b-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9aee614f22d53b53022294a4a71f9e52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af9d534c-0661-45f8-8ded-fd0af5617801", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "af9d534c-0661-45f8-8ded-fd0af5617801", + "x-ms-routing-request-id": "WESTUS:20210310T185631Z:af9d534c-0661-45f8-8ded-fd0af5617801" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-7511f7450ca2794c-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1fc73a3440e6ae5cc36dc375611ae7a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "527c16d8-2387-4a9c-a0a7-09fdff80bf52", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "527c16d8-2387-4a9c-a0a7-09fdff80bf52", + "x-ms-routing-request-id": "WESTUS:20210310T185632Z:527c16d8-2387-4a9c-a0a7-09fdff80bf52" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-7ec0ad63ed3ef94d-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b7980d21c31a013d938b5d612918717b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "48053b60-3c38-4c95-b2c1-a00a02214df8", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "48053b60-3c38-4c95-b2c1-a00a02214df8", + "x-ms-routing-request-id": "WESTUS:20210310T185633Z:48053b60-3c38-4c95-b2c1-a00a02214df8" + }, + "ResponseBody": [] + } + ], + "Variables": { + "RandomSeed": "1104769623", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json new file mode 100644 index 000000000000..b15807a08c34 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json @@ -0,0 +1,131 @@ +{ + "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": "|f1e38a2d-488e6b80492b743e.", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7aee629538309d67f639bdda8430fce0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 04:52:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "532939f0-9eda-442b-8f1d-5888aa9d45fa", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "532939f0-9eda-442b-8f1d-5888aa9d45fa", + "x-ms-routing-request-id": "WESTUS2:20210310T045244Z:532939f0-9eda-442b-8f1d-5888aa9d45fa" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9343?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-7e4c131a927e4b4fae087abf1c0cac27-b07a580fd7bfa941-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "378f4ef6677eb4a0d910572cbffefaea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 04:52:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "75a1c799-3b6c-424a-9fb1-9c2cdc7dac1a", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "75a1c799-3b6c-424a-9fb1-9c2cdc7dac1a", + "x-ms-routing-request-id": "WESTUS2:20210310T045245Z:75a1c799-3b6c-424a-9fb1-9c2cdc7dac1a" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9343", + "name": "testrg9343", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9343?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-d5ba00da874c21448fa0ca9ef70bfce1-a7fd24983c937f42-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0d1fee3eff85adb7af3c3f830e4eeabb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 04:52:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9e333aef-7547-47b8-a1c7-2bcb7fb1707d", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "9e333aef-7547-47b8-a1c7-2bcb7fb1707d", + "x-ms-routing-request-id": "WESTUS2:20210310T045245Z:9e333aef-7547-47b8-a1c7-2bcb7fb1707d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9343", + "name": "testrg9343", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "447716011", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json new file mode 100644 index 000000000000..366bb3e0f7e2 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json @@ -0,0 +1,130 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "59b7aae8604ff395a6f45701af8fb704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 04:52:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "337260de-dcae-40e4-84e3-8f84dfb4ddce", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "337260de-dcae-40e4-84e3-8f84dfb4ddce", + "x-ms-routing-request-id": "WESTUS2:20210310T045244Z:337260de-dcae-40e4-84e3-8f84dfb4ddce" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3094?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-ab17e39f2d703c4085c68232cf7effff-d7f93802ecbae441-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "071a7ec67987f24b062ad73bf6781c92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 04:52:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a74771b0-98a3-46fd-877d-fdb5fd30a0d6", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "a74771b0-98a3-46fd-877d-fdb5fd30a0d6", + "x-ms-routing-request-id": "WESTUS2:20210310T045245Z:a74771b0-98a3-46fd-877d-fdb5fd30a0d6" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3094", + "name": "testrg3094", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3094?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e46f854b4dc07840977b6fed76534682-00ac70bcc4528d4f-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7a56179c782b01065ad5db32879bec64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 04:52:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "16593e05-e2af-4ee5-9675-0027246397ff", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "16593e05-e2af-4ee5-9675-0027246397ff", + "x-ms-routing-request-id": "WESTUS2:20210310T045245Z:16593e05-e2af-4ee5-9675-0027246397ff" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3094", + "name": "testrg3094", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "799087902", + "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().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json new file mode 100644 index 000000000000..1dc1da9ba1cb --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json @@ -0,0 +1,78879 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1ba9401c9199950ab4c6511790a6e967", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 22:03:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e4f7244f-57a6-4643-bed3-ff452a5461da", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "e4f7244f-57a6-4643-bed3-ff452a5461da", + "x-ms-routing-request-id": "WESTUS2:20210310T220359Z:e4f7244f-57a6-4643-bed3-ff452a5461da" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4683?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-f8fc9b0a695c364dae18a37fa77161b9-8a9088f52e72214a-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c10c69c4b754a8908de162f0f30ff867", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 22:04:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "30c66fef-25f8-4174-bf2f-2adc5b59263e", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "30c66fef-25f8-4174-bf2f-2adc5b59263e", + "x-ms-routing-request-id": "WESTUS2:20210310T220401Z:30c66fef-25f8-4174-bf2f-2adc5b59263e" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4683", + "name": "testrg4683", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers?$expand=metadata\u0026api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-58fce962cfbbf745b62b682af67c57a6-4f739720b802fc43-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "cbdfe453c71259281e5e11321ed0c830", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1218927", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 22:04:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "eca1fc8c-3a17-4f45-81f9-cadc760a0788", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "eca1fc8c-3a17-4f45-81f9-cadc760a0788", + "x-ms-routing-request-id": "WESTUS2:20210310T220403Z:eca1fc8c-3a17-4f45-81f9-cadc760a0788" + }, + "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", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central" + ], + "apiVersions": [ + "2020-02-02-preview", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "metadata": { + "portal": { + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/ApplicationInsights.svg", + "kinds": [ + { + "kind": "web", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Web.svg", + "blade": { + "name": "AspNetOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "phone", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Phone.svg", + "blade": { + "name": "DeviceOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "store", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Store.svg", + "blade": { + "name": "DeviceOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "java", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Java.svg", + "blade": { + "name": "JavaWebOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "other", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/ApplicationInsights.svg", + "blade": { + "name": "OtherOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "android", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Android.svg", + "blade": { + "name": "DeviceOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "ios", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Ios.svg", + "blade": { + "name": "DeviceOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "devices", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Phone.svg", + "blade": { + "name": "DeviceOverview", + "extension": "AppInsightsExtension" + } + } + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.AppId", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ApplicationInsights_PROD_", + "sourceMdmNamespace": "ApplicationInsights" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "ApplicationInsights", + "onbehalfSupportedLogCategories": [ + "AppAvailabilityResults", + "AppBrowserTimings", + "AppDependencies", + "AppEvents", + "AppExceptions", + "AppMetrics", + "AppPageViews", + "AppPerformanceCounters", + "AppRequests", + "AppSystemEvents", + "AppTraces" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "components/query", + "locations": [], + "apiVersions": [ + "2018-04-20" + ], + "capabilities": "None" + }, + { + "resourceType": "components/metadata", + "locations": [], + "apiVersions": [ + "2018-04-20" + ], + "capabilities": "None" + }, + { + "resourceType": "components/metrics", + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "East US 2", + "East Asia", + "West US", + "Central US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Australia Southeast", + "Norway East", + "Norway West" + ], + "apiVersions": [ + "2018-04-20" + ], + "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", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Brazil Southeast", + "Japan West", + "UAE North", + "Australia Central" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2015-04-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2015-04-01", + "operations": "2015-04-01" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Autoscale", + "onbehalfSupportedLogCategories": [ + "AutoscaleEvaluations", + "AutoscaleScaleActions" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "eventtypes", + "locations": [], + "apiVersions": [ + "2017-03-01-preview", + "2016-09-01-preview", + "2015-04-01", + "2014-11-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-01" + } + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "locations", + "locations": [ + "East US" + ], + "apiVersions": [ + "2015-04-01", + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [], + "apiVersions": [ + "2015-04-01", + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "vmInsightsOnboardingStatuses", + "locations": [], + "apiVersions": [ + "2018-11-27-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2015-04-01", + "2014-06-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diagnosticSettings", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "UK South", + "UK West", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West Central US", + "West US 2", + "Korea South", + "Korea Central", + "Australia Central", + "Australia Central 2", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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", + "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", + "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", + "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" + ], + "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", + "Australia Southeast" + ], + "apiVersions": [ + "2020-10-20", + "2020-02-12", + "2018-06-17-preview", + "2018-06-01-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da" + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workbooktemplates", + "locations": [ + "West Europe", + "South Central US", + "East US", + "North Europe", + "Southeast Asia", + "West US 2", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "Canada Central", + "Central India", + "UK South", + "UK West", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Australia Southeast" + ], + "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", + "Australia Southeast" + ], + "apiVersions": [ + "2020-10-20", + "2020-02-12", + "2018-06-17-preview", + "2018-06-15-preview", + "2018-06-01-preview", + "2016-06-15-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da" + } + }, + "capabilities": "SupportsExtension" + }, + { + "resourceType": "logs", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "Australia Central", + "South Africa North" + ], + "apiVersions": [ + "2018-08-01-preview", + "2018-03-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "transactions", + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "East US 2", + "East Asia", + "West US", + "Central US", + "South Africa North", + "North Central US" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "topology", + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "East US 2", + "East Asia", + "West US", + "Central US", + "South Africa North", + "North Central US" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "generateLiveToken", + "locations": [], + "apiVersions": [ + "2020-06-02-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "dataCollectionRules", + "locations": [ + "Australia Southeast", + "Canada Central", + "Japan East", + "Australia East", + "Central India", + "Germany West Central", + "North Central US", + "South Central US", + "East US", + "Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US 2", + "UK South", + "North Europe", + "West US", + "Australia Central", + "West Central US", + "East Asia", + "UK West", + "Korea Central", + "France Central", + "South Africa North", + "Switzerland North" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2019-11-01-preview" + ], + "defaultApiVersion": "2019-11-01-preview", + "capabilities": "SupportsExtension" + }, + { + "resourceType": "privateLinkScopes", + "locations": [ + "Global" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateLinkScopes/privateEndpointConnections", + "locations": [ + "Global" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateLinkScopes/privateEndpointConnectionProxies", + "locations": [ + "Global" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateLinkScopes/scopedResources", + "locations": [ + "Global" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "components/linkedstorageaccounts", + "locations": [ + "East US", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateLinkScopeOperationStatuses", + "locations": [ + "Global" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "monitoringServiceProperties": { + "mdsAccount": "MdsGeneric", + "mdsEnvironment": null + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2015-07-01", + "components": "2015-05-01", + "autoscalesettings": "2015-04-01", + "operations": "2015-04-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "AzMonitoringAutoscale", + "sourceMdmNamespace": "AzureMonitoring/Autoscale" + } + ] + } + }, + "notifications": { + "sources": [ + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmsas1", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + }, + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmsas2", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + }, + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmsus1", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + }, + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmsus2", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + }, + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmseu1", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + }, + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmseu2", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + } + ] + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ContainerRegistry", + "namespace": "Microsoft.ContainerRegistry", + "authorizations": [ + { + "applicationId": "6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26", + "roleDefinitionId": "78e18383-93eb-418a-9887-bc9271046576" + }, + { + "applicationId": "737d58c1-397a-46e7-9d12-7d8c830883c2", + "roleDefinitionId": "716bb53a-0390-4428-bf41-b1bedde7d751" + }, + { + "applicationId": "918d0db8-4a38-4938-93c1-9313bdfe0272", + "roleDefinitionId": "dcd2d2c9-3f80-4d72-95a8-2593111b4b12" + }, + { + "applicationId": "d2fa1650-4805-4a83-bcb9-cf41fe63539c", + "roleDefinitionId": "c15f8dab-b103-4f8d-9afb-fbe4b8e98de2" + }, + { + "applicationId": "a4c95b9e-3994-40cc-8953-5dc66d48348d", + "roleDefinitionId": "dc88c655-90fa-48d9-8d51-003cc8738508" + }, + { + "applicationId": "62c559cd-db0c-4da0-bab2-972528c65d42", + "roleDefinitionId": "437b639a-6d74-491d-959f-d172e8c5c1fc" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registries/agentPools", + "locations": [ + "East US", + "West US 2", + "South Central US", + "Central US", + "East US 2" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01-preview", + "2019-05-01", + "2017-10-01", + "2017-06-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-10-01", + "operations": "2017-10-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftContainerRegistryShoebox", + "sourceMdmNamespace": "MicrosoftContainerRegistryMdmNamespace" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.ContainerRegistry", + "onbehalfSupportedLogCategories": [ + "ContainerRegistryRepositoryEvents", + "ContainerRegistryLoginEvents" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "d2fa1650-4805-4a83-bcb9-cf41fe63539c" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ContainerService", + "namespace": "Microsoft.ContainerService", + "authorizations": [ + { + "applicationId": "7319c514-987d-4e9b-ac3d-d38c4f427f4c", + "roleDefinitionId": "1b4a0c7f-2217-416f-acfa-cf73452fdc1c", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "managedByAuthorization": { + "allowManagedByInheritance": true + } + }, + { + "applicationId": "6dae42f8-4368-4678-94ff-3960e28e3630", + "roleDefinitionId": "831388fc-33b1-4dd1-b64c-40fdcaf96654" + } + ], + "resourceTypes": [ + { + "resourceType": "containerServices", + "locations": [ + "Japan East", + "Central US", + "East US 2", + "Japan West", + "East Asia", + "South Central US", + "North Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Southeast Asia", + "West US", + "West Europe", + "North Europe", + "East US", + "UK West", + "UK South", + "West Central US", + "West US 2", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "Korea South", + "Korea Central", + "South Africa North" + ], + "apiVersions": [ + "2017-07-01", + "2017-01-31", + "2016-09-30", + "2016-03-30" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "managedClusters", + "locations": [ + "West Central US", + "East US", + "West Europe", + "France Central", + "France South", + "Central US", + "Canada Central", + "Canada East", + "UK South", + "West US", + "West US 2", + "Australia East", + "Australia Central", + "North Europe", + "Japan East", + "Japan West", + "East US 2", + "South Central US", + "North Central US", + "Southeast Asia", + "Australia Southeast", + "UK West", + "South India", + "Central India", + "East Asia", + "Korea South", + "Korea Central", + "South Africa North", + "Brazil South", + "Brazil Southeast", + "Germany North", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "UAE North", + "UAE Central", + "Norway East", + "Norway West" + ], + "apiVersions": [ + "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", + "West US 2", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "France Central", + "Canada East", + "Canada Central", + "Australia East", + "Australia Southeast", + "East Asia", + "Southeast Asia", + "North Central US", + "Brazil South", + "Japan East", + "Central India" + ], + "apiVersions": [ + "2019-09-30-preview", + "2019-04-30" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/openShiftClusters", + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "France Central", + "UK West", + "UK South", + "Canada East", + "Canada Central", + "Australia East", + "Australia Southeast", + "East Asia", + "Southeast Asia", + "North Central US", + "Brazil South", + "Japan East", + "Central India" + ], + "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", + "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 Central", + "Canada East", + "UK West", + "UK South", + "West Central US", + "West US 2", + "South India", + "Central India", + "West India", + "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", + "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", + "Germany North", + "Germany West Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "Norway East", + "Norway West" + ], + "apiVersions": [ + "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" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "7319c514-987d-4e9b-ac3d-d38c4f427f4c" + }, + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-08-31", + "operations": "2017-07-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AKSCustomerData" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftContainerServiceShoebox", + "sourceMdmNamespace": "Prometheus" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AKSCustomerData", + "onbehalfSupportedLogCategories": [ + "kube-apiserver", + "kube-controller-manager", + "kube-scheduler", + "kube-audit", + "guard" + ] + } + ], + "categories": [ + { + "Name": "cluster-autoscaler" + }, + { + "Name": "guard" + }, + { + "Name": "kube-apiserver" + }, + { + "Name": "kube-audit" + }, + { + "Name": "kube-controller-manager" + }, + { + "Name": "kube-scheduler" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Sql", + "namespace": "Microsoft.Sql", + "authorizations": [ + { + "applicationId": "e4ab13ed-33cb-41b4-9140-6e264582cf85", + "roleDefinitionId": "ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec" + }, + { + "applicationId": "0130cc9f-7ac5-4026-bd5f-80a08a54e6d9", + "roleDefinitionId": "45e8abf8-0ec4-44f3-9c37-cff4f7779302" + }, + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "76c7f279-7959-468f-8943-3954880e0d8c", + "roleDefinitionId": "7f7513a8-73f9-4c5f-97a2-c41f0ea783ef", + "managedByRoleDefinitionId": "f2f79976-90be-4501-89c6-7caf12474683" + }, + { + "applicationId": "022907d3-0f1b-48f7-badc-1ba6abab6d66" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-01-01", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "metadata": { + "portal": { + "kinds": [ + { + "kind": "system", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "v12.0,system", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "v12.0,user" + }, + { + "kind": "v12.0,user,vcore" + }, + { + "kind": "v12.0,user,datawarehouse", + "blade": { + "name": "DataWarehouseBlade", + "extension": "SqlAzureExtension" + } + }, + { + "kind": "v12.0,user,stretch", + "blade": { + "name": "StretchDatabaseBlade", + "extension": "SqlAzureExtension" + } + } + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2014-01-01" + }, + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftSqlShoebox", + "sourceMdmNamespace": "MicrosoftSql" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "logFilterPathSelector": "kind", + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "onbehalfSupportedLogCategories": [ + "SQLInsights", + "AutomaticTuning", + "QueryStoreRuntimeStatistics", + "QueryStoreWaitStatistics", + "Errors", + "DatabaseWaitStatistics", + "Timeouts", + "Blocks", + "Deadlocks", + "DmsWorkers", + "ExecRequests", + "RequestSteps", + "SqlRequests", + "Waits" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "servers/serviceObjectives", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01" + ], + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-09-01-preview", + "2015-05-01-preview", + "2015-05-01", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2014-01-01" + }, + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftSqlShoebox", + "sourceMdmNamespace": "MicrosoftSqlElasticPools" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "mdsEnvironment": "prod" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "servers/jobAccounts", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2014-01-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftSqlShoebox", + "sourceMdmNamespace": "MicrosoftSqlManagedInstance" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "onbehalfSupportedLogCategories": [ + "ResourceUsageStats" + ] + } + ] + } + } + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "managedInstances/administrators", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2014-01-01" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "onbehalfSupportedLogCategories": [ + "SQLInsights", + "QueryStoreRuntimeStatistics", + "QueryStoreWaitStatistics", + "Errors" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "managedInstances/recoverableDatabases", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2014-01-01", + "servers/databases": "2018-06-01-preview", + "servers/elasticpools": "2018-06-01-preview", + "managedInstances": "2018-06-01-preview", + "managedInstances/databases": "2017-03-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftSqlShoebox", + "sourceMdmNamespace": "MicrosoftSql" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "mdsEnvironment": "prod" + } + ] + } + } + }, + "Microsoft.managedIdentity": { + "applicationId": "0a929f38-4ca4-4168-8d99-4a4fa344fb98" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Logic", + "namespace": "Microsoft.Logic", + "authorization": { + "applicationId": "7cd684f4-8a78-49b0-91ec-6a35d38739ba", + "roleDefinitionId": "cb3ef1fb-6e31-49e2-9d87-ed821053fe58" + }, + "resourceTypes": [ + { + "resourceType": "workflows", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany North", + "Germany West Central" + ], + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLogic" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "LogicApp", + "sourceMdmNamespace": "FlowMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLogic", + "onbehalfSupportedLogCategories": [ + "WorkflowRuntime" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/workflows", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany North", + "Germany West Central" + ], + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "North Central US" + ], + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany North", + "Germany West Central" + ], + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "integrationAccounts", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany North", + "Germany West Central" + ], + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLogic", + "onbehalfSupportedLogCategories": [ + "IntegrationAccountTrackingEvents" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "integrationServiceEnvironments", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "Canada Central", + "West US 2", + "UK South", + "UK West", + "France Central", + "South Africa North", + "UAE North" + ], + "apiVersions": [ + "2019-06-01-preview", + "2019-05-01", + "2018-07-01-preview", + "2018-03-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-07-01-preview", + "operations": "2016-06-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLogic" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "LogicApp", + "sourceMdmNamespace": "FlowISEMetrics" + } + ] + }, + "mdsMappingResourceIdOverridePathSelector": "properties.integrationServiceEnvironmentId" + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "integrationServiceEnvironments/managedApis", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "South Africa North", + "UAE North" + ], + "apiVersions": [ + "2019-06-01-preview", + "2019-05-01", + "2018-07-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-07-01-preview", + "operations": "2016-06-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLogic" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "LogicApp", + "sourceMdmNamespace": "FlowISEMetrics" + } + ] + }, + "mdsMappingResourceIdOverridePathSelector": "properties.integrationServiceEnvironmentId" + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "7cd684f4-8a78-49b0-91ec-6a35d38739ba" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-06-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "LogicApp", + "sourceMdmNamespace": "FlowMetrics" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Portal", + "namespace": "Microsoft.Portal", + "resourceTypes": [ + { + "resourceType": "dashboards", + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia Southeast", + "Australia East", + "West India", + "South India", + "Central India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "Switzerland West", + "Switzerland North" + ], + "apiVersions": [ + "2020-09-01-preview", + "2020-09-01-alpha", + "2019-01-01-preview", + "2018-10-01-preview", + "2015-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "tenantconfigurations", + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia Southeast", + "Australia East", + "West India", + "South India", + "Central India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "Switzerland West", + "Switzerland North" + ], + "apiVersions": [ + "2020-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "listTenantConfigurationViolations", + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia Southeast", + "Australia East", + "West India", + "South India", + "Central India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "Switzerland West", + "Switzerland North" + ], + "apiVersions": [ + "2020-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia Southeast", + "Australia East", + "West India", + "South India", + "Central India", + "Canada Central", + "Canada East" + ], + "apiVersions": [ + "2015-08-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "consoles", + "locations": [], + "apiVersions": [ + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/consoles", + "locations": [ + "West US", + "East US", + "Central India", + "North Europe", + "West Europe", + "South Central US", + "Southeast Asia", + "East US 2", + "Central US" + ], + "apiVersions": [ + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "userSettings", + "locations": [], + "apiVersions": [ + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/userSettings", + "locations": [ + "West US", + "East US", + "Central India", + "North Europe", + "West Europe", + "South Central US", + "Southeast Asia", + "East US 2", + "Central US" + ], + "apiVersions": [ + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OperationsManagement", + "namespace": "Microsoft.OperationsManagement", + "authorization": { + "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77", + "roleDefinitionId": "aa249101-6816-4966-aafa-08175d795f14" + }, + "resourceTypes": [ + { + "resourceType": "solutions", + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia East", + "Australia Central", + "France Central", + "Korea Central", + "North Europe", + "Central Us", + "East Us 2", + "East Asia", + "West Us", + "South Central Us", + "North Central US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Australia Central 2", + "Germany West Central", + "Japan West", + "UAE North", + "Brazil Southeast", + "Norway East" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-06-01", + "2019-11-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "35ffadb3-7fc1-497e-b61b-381d28e744cc" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-10-01", + "operations": "2020-07-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "AppConfig", + "sourceMdmNamespace": "AzConfig" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.AppConfiguration", + "onbehalfSupportedLogCategories": [ + "HttpRequest" + ] + } + ] + } + } + } + }, + "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": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "East US", + "East US 2", + "West US 2", + "South India", + "Central India", + "Japan East", + "Japan West", + "Switzerland North", + "Switzerland West", + "South Central US", + "West US", + "East Asia", + "Southeast Asia", + "North Europe", + "West Europe", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2018-10-31-preview", + "2018-10-31" + ], + "defaultApiVersion": "2018-10-31", + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WindowsIoT", + "namespace": "Microsoft.WindowsIoT", + "resourceTypes": [ + { + "resourceType": "DeviceServices", + "locations": [ + "West US", + "East US" + ], + "apiVersions": [ + "2019-06-01", + "2018-02-16-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "West US", + "East US", + "West Central US" + ], + "apiVersions": [ + "2019-06-01", + "2018-02-16-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforPostgreSQL", + "namespace": "Microsoft.DBforPostgreSQL", + "authorizations": [ + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "93efed00-6552-4119-833a-422b297199f9", + "roleDefinitionId": "a864a0a2-ab66-47a6-97a8-223dc1379f87" + }, + { + "applicationId": "5ed8fe41-c1bc-4c06-a531-d91e1f1c2fac", + "roleDefinitionId": "95173bdd-3b59-46f3-be65-7cee4193b078" + }, + { + "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serversv2", + "locations": [ + "East US 2", + "East US", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "West Europe", + "Southeast Asia", + "West US 2", + "North Europe" + ], + "apiVersions": [ + "2018-03-29-privatepreview" + ], + "metadata": { + "portal": { + "kinds": [] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "MicrosoftSqlElasticServersShoebox", + "sourceMdmNamespace": "MicrosoftOrcasBreadthServers" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "onbehalfSupportedLogCategories": [ + "PostgreSQLLogs" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serverGroupsv2", + "locations": [ + "East US 2", + "East US", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "West Europe", + "Southeast Asia", + "West US 2", + "North Europe" + ], + "apiVersions": [ + "2020-10-05-privatepreview" + ], + "metadata": { + "portal": { + "kinds": [] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDBForPGHyperShoeboxProd", + "sourceMdmNamespace": "CustomerFacingMetrics" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "onbehalfSupportedLogCategories": [ + "PostgreSQLLogs" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serverGroups", + "locations": [ + "East US 2", + "East US", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "West Europe", + "Southeast Asia", + "West US 2", + "North Europe" + ], + "apiVersions": [ + "2018-03-29-privatepreview" + ], + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "flexibleServers", + "locations": [ + "West US 2", + "East US", + "East US 2", + "West Europe", + "North Europe", + "Japan East", + "Southeast Asia", + "UK South", + "Central US" + ], + "apiVersions": [ + "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": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + } + ], + "metadata": { + "portal": { + "kinds": [] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDBForPGFlexShoeboxProd", + "sourceMdmNamespace": "CustomerFacingMetrics" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "onbehalfSupportedLogCategories": [ + "PostgreSQLLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "87bbf879-e67c-49da-a9e1-632ecff043f9" + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/capabilities", + "locations": [ + "East US 2", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Japan East", + "Southeast Asia", + "UK South", + "Central US" + ], + "apiVersions": [ + "2020-11-05-preview", + "2020-02-14-privatepreview", + "2020-02-14-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "East US 2", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Japan East", + "Southeast Asia", + "UK South", + "Central US" + ], + "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": "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": [ + "East US 2", + "East US", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "West Europe", + "Southeast Asia", + "West US 2", + "North Europe", + "Japan East", + "Central US" + ], + "apiVersions": [ + "2020-11-05-preview", + "2020-02-14-privatepreview", + "2020-02-14-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/performanceTiers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/topQueryStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/queryTexts", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/waitStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/resetQueryPerformanceInsightData", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/advisors", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateLinkResources", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnections", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnectionProxies", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/keys", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-12-01", + "serversv2": "2018-03-29-privatepreview", + "flexibleServers": "2020-02-14-privatepreview", + "serverGroupsv2": "2020-10-05-privatepreview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "AzureDBProduction", + "sourceMdmNamespace": "MicrosoftSqlElasticServers" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "onbehalfSupportedLogCategories": [ + "PostgreSQLLogs" + ] + } + ] + } + } + }, + "Microsoft.managedIdentity": { + "applicationId": "c39e7899-4b62-43a9-8a02-3f99028555f9" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DesktopVirtualization", + "namespace": "Microsoft.DesktopVirtualization", + "authorizations": [ + { + "applicationId": "50e95039-b200-4007-bc97-8d5790743a63", + "roleDefinitionId": "CAD30215-AD1C-43BF-BE90-7BFA8B493E62" + }, + { + "applicationId": "9cdead84-a844-4324-93f2-b2e6bb768d07" + }, + { + "applicationId": "a85cf173-4192-42f8-81fa-777a763e6e2c" + } + ], + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2019-01-23-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.DesktopVirtualization", + "onbehalfSupportedLogCategories": [ + "Feed" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "applicationgroups", + "locations": [ + "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": [ + "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": [ + "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": [ + "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": [ + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2019-01-23-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.DesktopVirtualization", + "onbehalfSupportedLogCategories": [ + "Connection", + "HostRegistration", + "AgentHealthStatus" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostpools/msixpackages", + "locations": [ + "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": [ + "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": [ + "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": [ + "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": [ + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "build": "", + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-12-10-preview", + "operations": "2019-12-10-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.DesktopVirtualization", + "onbehalfSupportedLogCategories": [ + "Management", + "Checkpoint", + "Error" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Attestation", + "namespace": "Microsoft.Attestation", + "authorizations": [ + { + "applicationId": "c61423b7-1d1f-430d-b444-0eee53298103", + "roleDefinitionId": "7299b0b1-11da-4858-8943-7db197005959" + } + ], + "resourceTypes": [ + { + "resourceType": "attestationProviders", + "locations": [ + "East US 2", + "Central US", + "UK South", + "East US", + "Canada Central", + "Canada East", + "UK West", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "attestationProviders": "2018-09-01-preview", + "operations": "2018-09-01-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Attestation", + "onbehalfSupportedLogCategories": [ + "INF", + "WRN", + "ERR", + "AuditEvent" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "defaultProviders", + "locations": [ + "East US 2", + "Central US", + "UK South", + "East US", + "Canada Central", + "Canada East", + "UK West", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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": [ + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "attestationProviders": "2018-09-01-preview", + "operations": "2018-09-01-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Attestation", + "onbehalfSupportedLogCategories": [ + "INF", + "WRN", + "ERR", + "AuditEvent" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.GuestConfiguration", + "namespace": "Microsoft.GuestConfiguration", + "authorizations": [ + { + "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9", + "roleDefinitionId": "9c6ffa40-421e-4dc0-9739-76b0699a11de" + } + ], + "resourceTypes": [ + { + "resourceType": "guestConfigurationAssignments", + "locations": [], + "apiVersions": [ + "2020-06-25", + "2018-11-20", + "2018-06-30-preview", + "2018-01-20-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "software", + "locations": [ + "East US 2", + "South Central US" + ], + "apiVersions": [ + "2018-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "softwareUpdates", + "locations": [ + "East US 2", + "South Central US" + ], + "apiVersions": [ + "2018-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "softwareUpdateProfile", + "locations": [ + "East US 2", + "South Central US" + ], + "apiVersions": [ + "2018-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-06-25", + "2018-11-20", + "2018-06-30-preview", + "2018-01-20-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftGuestConfiguration" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false + } + ] + }, + "logs": { + "mdsInfo": [ + { + "mdsEnvironment": "prod", + "serviceIdentity": "MicrosoftGuestConfiguration" + } + ] + }, + "version": "1.0" + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Relay", + "namespace": "Microsoft.Relay", + "authorizations": [ + { + "applicationId": "91bb937c-29c2-4275-982f-9465f0caf03d", + "roleDefinitionId": "6ea9e989-a5f4-4187-8d11-c8db3dd04da1" + }, + { + "applicationId": "80369ed6-5f11-4dd9-bef3-692475845e77" + } + ], + "resourceTypes": [ + { + "resourceType": "namespaces", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US 2", + "West US", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2018-01-01-preview", + "2017-04-01", + "2016-07-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "namespaces/authorizationrules", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/privateEndpointConnections", + "locations": [], + "apiVersions": [ + "2018-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/hybridconnections", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/hybridconnections/authorizationrules", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/wcfrelays", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/wcfrelays/authorizationrules", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01" + ], + "defaultApiVersion": "2017-04-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-04-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.metricId", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "servicebus" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "servicebus", + "sourceMdmNamespace": "OperationQoSMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "servicebus", + "onbehalfSupportedLogCategories": [ + "HybridConnectionsLogs" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataShare", + "namespace": "Microsoft.DataShare", + "authorization": { + "applicationId": "799f1985-1517-4fe1-af2b-ba3d87d4996b", + "roleDefinitionId": "0146496b-e06f-439a-83be-49fac884edf5" + }, + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-11-01", + "operations": "2018-11-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataShare" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDataShareShoebox", + "sourceMdmNamespace": "RP" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataShare", + "onbehalfsupportedLogCategories": [ + "Shares", + "ShareSubcriptions", + "SentShareSnapshots", + "ReceivedShareSnapshots" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/shares", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/shares/datasets", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/shares/synchronizationSettings", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/shares/invitations", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/sharesubscriptions", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/shares/providersharesubscriptions", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/sharesubscriptions/datasetmappings", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/sharesubscriptions/triggers", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/sharesubscriptions/consumerSourceDataSets", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "listinvitations", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "Southeast Asia", + "UK South", + "West Central US", + "West US 2" + ], + "apiVersions": [ + "2018-11-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/rejectInvitation", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/consumerInvitations", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "799f1985-1517-4fe1-af2b-ba3d87d4996b" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-11-01", + "operations": "2018-11-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataShare" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDataShareShoebox", + "sourceMdmNamespace": "RP" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SignalRService", + "namespace": "Microsoft.SignalRService", + "authorizations": [ + { + "applicationId": "cdad765c-f191-43ba-b9f5-7aef392f811d", + "roleDefinitionId": "346b504e-4aec-45d1-be25-a6e10f3cb4fe" + } + ], + "resourceTypes": [ + { + "resourceType": "SignalR", + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-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 Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-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 Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-01-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US 2", + "East US", + "East US 2", + "West US", + "Central US" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-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 Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-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 Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-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 Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-10-01", + "operations": "2018-10-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.SignalRService" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSignalRServiceShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.SignalRService", + "onbehalfSupportedLogCategories": [ + "AllLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "cdad765c-f191-43ba-b9f5-7aef392f811d" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforMySQL", + "namespace": "Microsoft.DBforMySQL", + "authorizations": [ + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "e6f9f783-1fdb-4755-acaf-abed6c642885", + "roleDefinitionId": "a864a0a2-ab66-47a6-97a8-223dc1379f87" + }, + { + "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "flexibleServers", + "locations": [ + "East US 2", + "West US 2", + "Brazil South", + "Southeast Asia", + "North Europe", + "AUSTRALIA EAST", + "JAPAN EAST", + "KOREA CENTRAL", + "UK SOUTH", + "WEST EUROPE", + "CANADA CENTRAL", + "CENTRAL US", + "EAST US" + ], + "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": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "EAST US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK SOUTH", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "JAPAN EAST", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "AUSTRALIA EAST", + "zones": [] + }, + { + "location": "CANADA CENTRAL", + "zones": [] + }, + { + "location": "Brazil South", + "zones": [] + }, + { + "location": "KOREA CENTRAL", + "zones": [] + } + ], + "metadata": { + "portal": { + "kinds": [] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-07-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDBForMySQLFlexShoeboxProd", + "sourceMdmNamespace": "CustomerFacingMetrics" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "onbehalfSupportedLogCategories": [ + "MySqlSlowLogs", + "MySqlAuditLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "cb43afba-eb6b-4cef-bf00-758b6c233beb" + } + }, + "capabilities": "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": [ + "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", + "Southeast Asia", + "North Europe", + "AUSTRALIA EAST", + "JAPAN EAST", + "KOREA CENTRAL", + "UK SOUTH", + "WEST EUROPE", + "CANADA CENTRAL", + "CENTRAL US", + "EAST US" + ], + "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", + "Southeast Asia", + "North Europe", + "AUSTRALIA EAST", + "JAPAN EAST", + "KOREA CENTRAL", + "UK SOUTH", + "WEST EUROPE", + "CANADA CENTRAL", + "CENTRAL US", + "EAST US" + ], + "apiVersions": [ + "2020-07-01-privatepreview", + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/azureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/administratorOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/administratorAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/performanceTiers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "UAE North", + "Norway East", + "Switzerland North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/topQueryStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/queryTexts", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/waitStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/resetQueryPerformanceInsightData", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/advisors", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateLinkResources", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnections", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnectionProxies", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/keys", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/start", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/stop", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/upgrade", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-12-01", + "flexibleServers": "2020-07-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "AzureDBProduction", + "sourceMdmNamespace": "MicrosoftSqlElasticServers" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "onbehalfSupportedLogCategories": [ + "MySqlSlowLogs", + "MySqlAuditLogs" + ] + } + ] + } + } + }, + "Microsoft.managedIdentity": { + "applicationId": "ff39e39d-6b44-4bd0-8ef5-a4d02e0e53f6" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache", + "namespace": "Microsoft.Cache", + "authorization": { + "applicationId": "96231a05-34ce-4eb4-aa6a-70759cbb5e83", + "roleDefinitionId": "4f731528-ba85-45c7-acfb-cd0a9b3cf31b" + }, + "resourceTypes": [ + { + "resourceType": "Redis", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West US 2", + "West Central US", + "South India", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "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": [] + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftCache" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "RedisEnterpriseAzureMonitor", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "RedisEnterprise/privateEndpointConnectionProxies", + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2021-03-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-07-01", + "2018-03-01", + "2017-10-01", + "2017-02-01", + "2016-04-01", + "2015-08-01", + "2015-03-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftCache" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "redisinsightsprod", + "sourceMdmNamespace": "ShoeBox" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network", + "namespace": "Microsoft.Network", + "authorizations": [ + { + "applicationId": "2cf9eb86-36b5-49dc-86ae-9a63135dfa8c", + "roleDefinitionId": "13ba9ab4-19f0-4804-adc4-14ece36cc7a1" + }, + { + "applicationId": "7c33bfcb-8d33-48d6-8e60-dc6404003489", + "roleDefinitionId": "ad6261e4-fa9a-4642-aa5f-104f1b67e9e3" + }, + { + "applicationId": "1e3e4475-288f-4018-a376-df66fd7fac5f", + "roleDefinitionId": "1d538b69-3d87-4e56-8ff8-25786fd48261" + }, + { + "applicationId": "a0be0c72-870e-46f0-9c49-c98333a996f7", + "roleDefinitionId": "7ce22727-ffce-45a9-930c-ddb2e56fa131" + }, + { + "applicationId": "486c78bf-a0f7-45f1-92fd-37215929e116", + "roleDefinitionId": "98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d" + }, + { + "applicationId": "19947cfd-0303-466c-ac3c-fcc19a7a1570", + "roleDefinitionId": "d813ab6c-bfb7-413e-9462-005b21f0ce09" + }, + { + "applicationId": "341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd", + "roleDefinitionId": "8141843c-c51c-4c1e-a5bf-0d351594b86c" + }, + { + "applicationId": "328fd23b-de6e-462c-9433-e207470a5727", + "roleDefinitionId": "79e29e06-4056-41e5-a6b2-959f1f47747e" + }, + { + "applicationId": "6d057c82-a784-47ae-8d12-ca7b38cf06b4", + "roleDefinitionId": "c27dd31e-c1e5-4ab0-93e1-a12ba34f182e" + }, + { + "applicationId": "b4ca0290-4e73-4e31-ade0-c82ecfaabf6a", + "roleDefinitionId": "18363e25-ff21-4159-ae8d-7dfecb5bd001" + }, + { + "applicationId": "79d7fb34-4bef-4417-8184-ff713af7a679", + "roleDefinitionId": "1c1f11ef-abfa-4abe-a02b-226771d07fc7" + } + ], + "resourceTypes": [ + { + "resourceType": "virtualNetworks", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-10-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "CNSec", + "onbehalfSupportedLogCategories": [ + "VMProtectionAlerts" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualNetworks/taggedTrafficConsumers", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "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": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "slbv2", + "sourceMdmNamespace": "NatService" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "publicIPAddresses", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "metricsFilterPathSelector": "sku.name", + "mdsInfo": [ + { + "serviceIdentity": "NetMon" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "CNS", + "sourceMdmNamespace": "ShoeboxProd" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "NetMon", + "onbehalfSupportedLogCategories": [ + "DDoSProtectionNotifications", + "DDoSMitigationFlowLogs", + "DDoSMitigationReports" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "customIpPrefixes", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "NetMon" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "CNS", + "sourceMdmNamespace": "BYOIP" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "NetMon", + "onbehalfSupportedLogCategories": [ + "BYOIPNotifications", + "BYOIPReports" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "networkInterfaces", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-10-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-04-01" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "VfpMdm", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "VNetMDMShoebox", + "sourceMdmNamespace": "VNetAzureMonitoring" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateEndpointRedirectMaps", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-10-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "NetMon", + "onbehalfSupportedLogCategories": [ + "LoadBalancerAlertEvents", + "LoadBalancerProbeHealthStatus" + ] + } + ] + }, + "metrics": { + "metricsFilterPathSelector": "sku.name", + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "slbv2", + "sourceMdmNamespace": "Health" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "networkSecurityGroups", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-10-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "LNMAgentService", + "onbehalfSupportedLogCategories": [ + "NetworkSecurityGroupEvent", + "NetworkSecurityGroupRuleCounter", + "NetworkSecurityGroupFlowEvent" + ] + } + ], + "categories": [ + { + "Name": "NetworkSecurityGroupFlowEvent", + "requiredFeatures": [ + "Microsoft.Network/AllowNsgFlowLogging" + ], + "excludeFromEventHub": true + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "applicationSecurityGroups", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "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": [] + } + ], + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "NetworkAnalytics", + "sourceMdmNamespace": "NodePluginHost" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "networkWatchers/flowLogs", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "NetAnalyticsPingMesh", + "sourceMdmNamespace": "PingMesh" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualNetworkGateways", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "metricsFilterPathSelector": "properties.gatewayType", + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "BrkGWTShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid", + "onbehalfSupportedLogCategories": [ + "GatewayDiagnosticLog", + "TunnelDiagnosticLog", + "RouteDiagnosticLog", + "IKEDiagnosticLog", + "P2SDiagnosticLog" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "localNetworkGateways", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "HybridGWShoeboxProd", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "applicationGateways", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-09-01" + }, + "metrics": { + "metricsFilterPathSelector": "properties.sku.tier", + "mdmInfo": [ + { + "sourceMdmAccount": "AppGWT", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureApplicationGatewayService", + "onbehalfSupportedLogCategories": [ + "ApplicationGatewayAccessLog", + "ApplicationGatewayPerformanceLog", + "ApplicationGatewayFirewallLog" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "applicationGatewayWebApplicationFirewallPolicies", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "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": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "dnszones", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-04-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2016-04-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2016-04-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "CloudDNSShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "dnsOperationResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnsOperationStatuses", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "getDnsResourceReference", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "internalNotify", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/A", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/AAAA", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/CNAME", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/PTR", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/MX", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/TXT", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/SRV", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/SOA", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/NS", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/CAA", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/recordsets", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/all", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "PrivateDnsShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateDnsZones/virtualNetworkLinks", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateDnsOperationResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsOperationStatuses", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZonesInternal", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01" + ], + "defaultApiVersion": "2020-01-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/A", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/AAAA", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/CNAME", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/PTR", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/MX", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/TXT", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/SRV", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/SOA", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/all", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "virtualNetworks/privateDnsZoneLinks", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "trafficmanagerprofiles", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01", + "2015-11-01", + "2015-04-28-preview" + ], + "defaultApiVersion": "2018-08-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "TrafficManagerShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "TrafficManager", + "onbehalfSupportedLogCategories": [ + "ProbeHealthStatusEvents" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "trafficmanagerprofiles/heatMaps", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-08-01", + "capabilities": "None" + }, + { + "resourceType": "checkTrafficManagerNameAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01", + "2015-11-01", + "2015-04-28-preview" + ], + "defaultApiVersion": "2018-08-01", + "capabilities": "None" + }, + { + "resourceType": "trafficManagerUserMetricsKeys", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-08-01", + "2018-04-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-08-01", + "capabilities": "None" + }, + { + "resourceType": "trafficManagerGeographicHierarchies", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01" + ], + "defaultApiVersion": "2018-08-01", + "capabilities": "None" + }, + { + "resourceType": "expressRouteCircuits", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "metricsFilterPathSelector": "properties.globalReachEnabled", + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureERShoeboxProd", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid", + "onbehalfSupportedLogCategories": [ + "PeeringRouteLog" + ] + } + ] + }, + "apiVersions": { + "bastionHosts": "2019-08-01" + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "expressRouteServiceProviders", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "BrkGWTShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid", + "onbehalfSupportedLogCategories": [ + "GatewayDiagnosticLog", + "TunnelDiagnosticLog", + "RouteDiagnosticLog", + "IKEDiagnosticLog" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "p2sVpnGateways", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "BrkGWTShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid", + "onbehalfSupportedLogCategories": [ + "GatewayDiagnosticLog", + "IKEDiagnosticLog", + "P2SDiagnosticLog" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "expressRouteGateways", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureERShoeboxProd", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "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", + "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-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01" + ], + "defaultApiVersion": "2020-04-01", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "328fd23b-de6e-462c-9433-e207470a5727" + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "ipGroups", + "locations": [ + "UAE North", + "Australia Central 2", + "UAE Central", + "Germany North", + "Central India", + "Korea South", + "Switzerland North", + "Switzerland West", + "Japan West", + "France South", + "South Africa West", + "West India", + "Canada East", + "South India", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "East Asia", + "Southeast Asia", + "Korea Central", + "Brazil South", + "Japan East", + "UK West", + "West US", + "East US", + "North Europe", + "West Europe", + "South Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "East US 2", + "West US 2", + "North Central US", + "Canada Central", + "France Central", + "West Central US", + "Central US" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "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": [ + "2020-11-01", + "2020-08-01" + ], + "defaultApiVersion": "2020-08-01", + "capabilities": "None" + }, + { + "resourceType": "locations/nfvOperations", + "locations": [], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "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": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-06-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFirewall" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureFirewallShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFirewall", + "onbehalfSupportedLogCategories": [ + "AzureFirewallApplicationRule", + "AzureFirewallNetworkRule", + "AzureFirewallDnsProxy" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "azureFirewallFqdnTags", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "VNetMDMShoebox", + "sourceMdmNamespace": "VNetAzureMonitoring" + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/privateLinkServices", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01" + ], + "defaultApiVersion": "2020-03-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "frontdoorOperationResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-11-01", + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-07-01", + "capabilities": "None" + }, + { + "resourceType": "checkFrontdoorNameAvailability", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-07-01", + "2020-05-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-07-01", + "capabilities": "None" + }, + { + "resourceType": "frontdoors", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-07-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureFrontdoorShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor", + "onbehalfSupportedLogCategories": [ + "FrontdoorAccessLog", + "FrontdoorWebApplicationFirewallLog" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "frontdoors/frontendEndpoints", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-07-01", + "capabilities": "None" + }, + { + "resourceType": "frontdoors/frontendEndpoints/customHttpsConfiguration", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-07-01", + "capabilities": "None" + }, + { + "resourceType": "frontdoorWebApplicationFirewallPolicies", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-11-01", + "2020-04-01", + "2019-10-01", + "2019-03-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-11-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "frontdoorWebApplicationFirewallManagedRuleSets", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-11-01", + "2020-04-01", + "2019-10-01", + "2019-03-01" + ], + "defaultApiVersion": "2020-11-01", + "capabilities": "None" + }, + { + "resourceType": "networkExperimentProfiles", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2019-11-01" + ], + "defaultApiVersion": "2019-11-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/bareMetalTenants", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureBastionHostService" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "BrkBastionHost", + "sourceMdmNamespace": "BrkBastion" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureBastionHostService", + "onbehalfSupportedLogCategories": [ + "BastionAuditLogs" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualRouters", + "locations": [ + "UAE North", + "Australia Central 2", + "UAE Central", + "Germany North", + "Central India", + "Korea South", + "Switzerland North", + "Switzerland West", + "Japan West", + "France South", + "South Africa West", + "West India", + "Canada East", + "South India", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "East Asia", + "Southeast Asia", + "Korea Central", + "Brazil South", + "Japan East", + "UK West", + "West US", + "East US", + "North Europe", + "West Europe", + "West Central US", + "South Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "East US 2", + "West US 2", + "North Central US", + "Canada Central", + "France Central", + "Central US" + ], + "apiVersions": [ + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-04-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureERShoeboxProd", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "networkVirtualAppliances", + "locations": [ + "UAE North", + "Australia Central 2", + "UAE Central", + "Germany North", + "Central India", + "Korea South", + "Switzerland North", + "Switzerland West", + "Japan West", + "France South", + "South Africa West", + "West India", + "Canada East", + "South India", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "East Asia", + "Southeast Asia", + "Korea Central", + "Brazil South", + "Japan East", + "UK West", + "West US", + "East US", + "North Europe", + "West Europe", + "West Central US", + "South Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "East US 2", + "West US 2", + "North Central US", + "Canada Central", + "France Central", + "Central US" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-04-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureERShoeboxProd", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "ipAllocations", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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": "networkVirtualApplianceSkus", + "locations": [], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01" + ], + "defaultApiVersion": "2020-04-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-09-01", + "trafficmanagerprofiles": "2018-08-01", + "secureGateways": "2018-04-01", + "azureFirewalls": "2018-06-01", + "frontdoors": "2019-04-01", + "expressRouteCircuits": "2019-04-01", + "bastionHosts": "2019-08-01", + "networkWatchers/connectionMonitors": "2017-09-01", + "vpnGateways": "2019-11-01", + "p2SVpnGateways": "2019-11-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "AppGWT", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "2cf9eb86-36b5-49dc-86ae-9a63135dfa8c" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Web", + "namespace": "Microsoft.Web", + "authorization": { + "applicationId": "abfa0a7c-a6b6-4736-8310-5855508787cd", + "roleDefinitionId": "f47ed98b-b063-4a5b-9e10-4b9b44fa7735" + }, + "resourceTypes": [ + { + "resourceType": "publishingUsers", + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "2020-10-01" + ], + "capabilities": "None" + }, + { + "resourceType": "staticSites", + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2016-03-01", + "staticSites": "2019-08-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "WAWS Shoebox", + "sourceMdmNamespace": "Microsoft/Web/StaticSites" + } + ] + } + } + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/previewStaticSiteWorkflowFile", + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "defaultApiVersion": "2020-06-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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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": [ + "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 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": [ + "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 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": [ + "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", + "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": [ + "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", + "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": [ + "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", + "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": [ + "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", + "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": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "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", + "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": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-09-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "metadata": { + "portal": { + "kinds": [ + { + "kind": "entitlement", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "functionapp", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/DynamicAppServicePlan.svg" + } + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.mdmId", + "metrics": { + "metricsFilterPathSelector": "sku.tier", + "mdmInfo": [ + { + "sourceMdmAccount": "WAWS Shoebox", + "sourceMdmNamespace": "Microsoft/Web/AppServicePlans" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sites", + "locations": [ + "South Central US", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Africa North", + "West US", + "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": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-08-01", + "2016-03-01", + "2015-11-01", + "2015-08-01-preview", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2015-01-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "metadata": { + "portal": { + "kinds": [ + { + "kind": "gateway", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "microservice", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "apiApp", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "api", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/apiapps.svg" + }, + { + "kind": "api,entitlement", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/apiapps.svg" + }, + { + "kind": "entitlement", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webapp.svg", + "blade": { + "name": "EntitlementAppBlade", + "extension": "WebsitesExtension" + } + }, + { + "kind": "mobileapp", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/mobileapps.svg" + }, + { + "kind": "mobileapp,entitlement", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/mobileapps.svg", + "blade": { + "name": "EntitlementAppBlade", + "extension": "WebsitesExtension" + } + }, + { + "kind": "webjob", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webjobs.svg" + }, + { + "kind": "webjob,entitlement", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webjobs.svg", + "blade": { + "name": "EntitlementAppBlade", + "extension": "WebsitesExtension" + } + }, + { + "kind": "functionapp", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/Functions.svg", + "blade": { + "name": "FunctionsIFrameBlade", + "extension": "WebsitesExtension" + } + }, + { + "kind": "functionappdev", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/Functions.svg", + "blade": { + "name": "FunctionsIFrameBlade", + "extension": "WebsitesExtension" + } + } + ] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sites/slots", + "locations": [ + "South Central US", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Africa North", + "West US", + "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": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-08-01", + "2016-03-01", + "2015-11-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2015-01-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "metadata": { + "portal": { + "kinds": [ + { + "kind": "microservice", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "apiApp", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "gateway", + "browseConfig": { + "visibility": "hidden" + } + } + ] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "runtimes", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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", + "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": [ + "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", + "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": [ + "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" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2016-03-01", + "hostingEnvironments": "2019-01-01" + }, + "mdsMappingResourceIdOverridePathSelector": "id", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Web", + "onbehalfSupportedLogCategories": [ + "AppServiceEnvironmentPlatformLogs" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostingEnvironments/multiRolePools", + "locations": [ + "South Central US", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Africa North", + "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": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2019-02-01", + "2018-11-01", + "2018-08-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-09-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.mdmId", + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "sourceMdmAccount": "WAWS Shoebox", + "sourceMdmNamespace": "Microsoft/Web/AppServiceEnvironments" + } + ] + } + } + } + }, + "capabilities": "None" + }, + { + "resourceType": "hostingEnvironments/workerPools", + "locations": [ + "South Central US", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Africa North", + "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": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2019-02-01", + "2018-11-01", + "2018-08-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-09-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.mdmId", + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "sourceMdmAccount": "WAWS Shoebox", + "sourceMdmNamespace": "Microsoft/Web/AppServiceEnvironments" + } + ] + } + } + } + }, + "capabilities": "None" + }, + { + "resourceType": "kubeEnvironments", + "locations": [ + "North Central US (Stage)" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2019-02-01", + "2019-01-01", + "2018-11-01", + "2018-08-01", + "2018-05-01-preview", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-09-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "metadata": {}, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "deploymentLocations", + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "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", + "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": [ + "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": [ + "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", + "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": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "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", + "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": [ + "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", + "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": [ + "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 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": [ + "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", + "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": [ + "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", + "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": [ + "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" + } + ], + "metadata": { + "dnsSuffix": "azurewebsites.net", + "Microsoft.managedIdentity": { + "applicationId": "abfa0a7c-a6b6-4736-8310-5855508787cd" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.defaultHostName", + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "sourceMdmAccount": "WAWS Shoebox", + "sourceMdmNamespace": "Microsoft/Web/WebApps" + } + ] + }, + "logs": { + "logFilterPathSelector": "kind", + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Web", + "onbehalfSupportedLogCategories": [ + "FunctionAppLogs", + "AppServiceHTTPLogs", + "AppServiceFileAuditLogs", + "AppServiceAuditLogs", + "AppServiceConsoleLogs", + "AppServicePlatformLogs", + "AppServiceIPSecAuditLogs", + "AppServiceAntivirusScanAuditLogs", + "AppServiceAppLogs" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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": [] + } + ], + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "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": [] + } + ], + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId" + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "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": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-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" + ], + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + } + ], + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af" + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-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" + ], + "apiVersions": [ + "2020-12-01", + "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" + ], + "apiVersions": [ + "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": [] + } + ], + "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" + ], + "apiVersions": [ + "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": [] + } + ], + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.hostId" + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356" + }, + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.vmId", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "AzComputeShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ManagedIdentity", + "namespace": "Microsoft.ManagedIdentity", + "resourceTypes": [ + { + "resourceType": "Identities", + "locations": [ + "South Africa North", + "South Africa West", + "UAE North", + "Australia Central", + "Australia East", + "Australia Southeast", + "Canada Central", + "Canada East", + "Brazil South", + "Central India", + "West India", + "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", + "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", + "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" + ], + "apiVersions": [ + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2017-04-26-preview", + "2017-03-15-preview", + "2017-03-03-preview", + "2017-01-01-preview", + "2015-11-01-preview", + "2015-03-20" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-03-01-preview", + "operations": "2020-03-01-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.OperationalInsights", + "onbehalfSupportedLogCategories": [ + "Audit" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2017-04-26-preview" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "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", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East" + ], + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77" + }, + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-03-01-preview", + "workspaces": "2020-03-01-preview", + "operations": "2020-03-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.OperationalInsights" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "OmsShoeboxMetrics", + "sourceMdmNamespace": "OmsShoeboxMetrics" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Advisor", + "namespace": "Microsoft.Advisor", + "authorization": { + "applicationId": "c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7", + "roleDefinitionId": "8a63b04c-3731-409b-9765-f1175c047872" + }, + "resourceTypes": [ + { + "resourceType": "suppressions", + "locations": [], + "apiVersions": [ + "2020-01-01", + "2017-04-19", + "2017-03-31", + "2016-07-12-preview", + "2016-05-09-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "configurations", + "locations": [], + "apiVersions": [ + "2020-01-01", + "2017-04-19", + "2017-03-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "recommendations", + "locations": [], + "apiVersions": [ + "2020-01-01", + "2017-04-19", + "2017-03-31", + "2016-07-12-preview", + "2016-05-09-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "generateRecommendations", + "locations": [], + "apiVersions": [ + "2020-01-01", + "2017-04-19", + "2017-03-31", + "2016-07-12-preview", + "2016-05-09-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-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" + } + ], + "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": [ + "2019-06-01", + "2019-03-01", + "2018-02-01-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "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": [ + "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": [ + "2020-06-01-preview" + ], + "defaultApiVersion": "2020-06-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2020-06-01-preview", + "2019-12-01-preview", + "2019-12-01", + "2019-01-01", + "2018-06-01-preview", + "2018-01-01", + "2017-03-01", + "2016-10-10", + "2016-07-07", + "2015-09-15", + "2014-02-14" + ], + "defaultApiVersion": "2019-12-01", + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "ApiManagement" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "ApiManagementProd", + "sourceMdmNamespace": "Proxy" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "ApiManagement", + "onbehalfSupportedLogCategories": [ + "GatewayLogs" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "8602e328-9b72-4f2d-a4ae-1387d013a2b3" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-12-01", + "operations": "2019-12-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "ApiManagement" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "ApiManagementProd", + "sourceMdmNamespace": "Proxy" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "ApiManagement", + "onbehalfSupportedLogCategories": [ + "GatewayLogs" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Authorization", + "namespace": "Microsoft.Authorization", + "authorizations": [ + { + "applicationId": "de926fbf-e23b-41f9-ae15-c943a9cfa630" + }, + { + "applicationId": "01fc33a7-78ba-4d2f-a4b7-768e336e890e" + } + ], + "resourceTypes": [ + { + "resourceType": "roleAssignments", + "locations": [], + "apiVersions": [ + "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": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operationStatus", + "locations": [], + "apiVersions": [ + "2020-05-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.managedIdentity": { + "applicationId": "1dcb1bc7-c721-498e-b2fa-bcddcea44171" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Batch", + "namespace": "Microsoft.Batch", + "authorization": { + "applicationId": "ddbf3205-c6bd-46ae-8127-60eb93363864", + "roleDefinitionId": "b7f84953-1d03-4eab-9ea4-45f065258ff8" + }, + "resourceTypes": [ + { + "resourceType": "batchAccounts", + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01", + "2017-05-01", + "2017-01-01", + "2015-12-01", + "2015-09-01", + "2015-07-01", + "2014-05-01-privatepreview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureBatch" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "BatchProdShoebox", + "sourceMdmNamespace": "BatchShoeboxMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureBatch", + "onbehalfSupportedLogCategories": [ + "ServiceLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "ddbf3205-c6bd-46ae-8127-60eb93363864", + "delegationAppIds": [ + "ddbf3205-c6bd-46ae-8127-60eb93363864" + ] + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cdn", + "namespace": "Microsoft.Cdn", + "authorizations": [], + "resourceTypes": [ + { + "resourceType": "profiles", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "metadata": { + "portal": { + "kinds": [ + { + "kind": "frontdoor", + "icon": "https://afdxportalprod.blob.core.windows.net/portalicons/frontdoor.svg", + "blade": { + "name": "ProfileBlade", + "extension": "Microsoft_Azure_Cdn" + } + }, + { + "kind": "cdn", + "icon": "https://afdxportalprod.blob.core.windows.net/portalicons/cdn.svg", + "blade": { + "name": "ProfileBlade", + "extension": "Microsoft_Azure_Cdn" + } + } + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-10-12" + }, + "metrics": { + "metricsFilterPathSelector": "sku.name", + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureFrontdoorShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "logFilterPathSelector": "sku.name", + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor", + "onbehalfSupportedLogCategories": [ + "AzureCdnAccessLog", + "FrontDoorHealthProbeLog", + "FrontDoorAccessLog", + "FrontDoorWebApplicationFirewallLog" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "profiles/endpoints", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-10-02" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureCdn", + "onbehalfSupportedLogCategories": [ + "CoreAnalytics" + ] + } + ] + }, + "regionLess": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "profiles/endpoints/origins", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "profiles/endpoints/origingroups", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31" + ], + "defaultApiVersion": "2019-12-31", + "capabilities": "None" + }, + { + "resourceType": "profiles/endpoints/customdomains", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operationresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/endpointresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/endpointresults/originresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/endpointresults/origingroupresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31" + ], + "defaultApiVersion": "2019-12-31", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/endpointresults/customdomainresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "checkResourceUsage", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "validateProbe", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "edgenodes", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "CdnWebApplicationFirewallPolicies", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2019-06-15-preview" + ], + "defaultApiVersion": "2019-06-15-preview", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-06-15-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureFrontdoorShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor", + "onbehalfSupportedLogCategories": [ + "WebApplicationFirewallLogs" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "CdnWebApplicationFirewallManagedRuleSets", + "locations": [], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2019-06-15-preview" + ], + "defaultApiVersion": "2019-06-15-preview", + "capabilities": "None" + }, + { + "resourceType": "profiles/afdendpoints", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "profiles/afdendpoints/routes", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/customdomains", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/origingroups", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/origingroups/origins", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/rulesets", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/rulesets/rules", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/secrets", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/securitypolicies", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/afdendpointresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/afdendpointresults/routeresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/customdomainresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/origingroupresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/origingroupresults/originresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/rulesetresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/rulesetresults/ruleresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/secretresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/securitypoliciesresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-10-02", + "CdnWebApplicationFirewallPolicies": "2019-06-15-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureFrontdoorShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CertificateRegistration", + "namespace": "Microsoft.CertificateRegistration", + "authorization": { + "applicationId": "f3c21649-0979-4721-ac85-b0216b2cf413", + "roleDefinitionId": "933fba7e-2ed3-4da8-973d-8bd8298a9b40" + }, + "resourceTypes": [ + { + "resourceType": "certificateOrders", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "certificateOrders/certificates", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "validateCertificateRegistrationInformation", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicCompute", + "namespace": "Microsoft.ClassicCompute", + "resourceTypes": [ + { + "resourceType": "domainNames", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "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", + "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" + ], + "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" + ], + "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" + ], + "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", + "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", + "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/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" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "resourceTypes", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "moveSubscriptionResources", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01" + ], + "capabilities": "None" + }, + { + "resourceType": "validateSubscriptionMoveAvailability", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operationStatuses", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operatingSystems", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operatingSystemFamilies", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2014-06-01", + "operations": "2017-04-01" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "AzComputeShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicNetwork", + "namespace": "Microsoft.ClassicNetwork", + "resourceTypes": [ + { + "resourceType": "virtualNetworks", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Australia Central", + "Germany West Central", + "Norway East" + ], + "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", + "Australia Central", + "Germany West Central", + "Norway East" + ], + "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", + "Australia Central", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01" + ], + "defaultApiVersion": "2015-06-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.networkSecurityGroupId", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "LNMAgentService", + "onbehalfSupportedLogCategories": [ + "NetworkSecurityGroupFlowEvent" + ] + } + ], + "categories": [ + { + "Name": "NetworkSecurityGroupFlowEvent", + "requiredFeatures": [ + "Microsoft.Network/AllowNsgFlowLogging" + ], + "excludeFromEventHub": true + } + ] + } + } + } + }, + "capabilities": "SupportsLocation" + }, + { + "resourceType": "capabilities", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "expressRouteCrossConnections", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "expressRouteCrossConnections/peerings", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2015-06-01" + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicStorage", + "namespace": "Microsoft.ClassicStorage", + "resourceTypes": [ + { + "resourceType": "storageAccounts", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "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", + "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" + ], + "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", + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "capabilities", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "storageAccounts/blobServices", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "storageAccounts/tableServices", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "storageAccounts/fileServices", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "storageAccounts/queueServices", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "vmImages", + "locations": [], + "apiVersions": [ + "2016-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "storageAccounts/vmImages", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-04-01-beta", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "publicImages", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "osImages", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "osPlatformImages", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01-beta", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-11-01", + "operations": "2016-11-01" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "XStoreShoebox", + "sourceMdmNamespace": "XStore" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CognitiveServices", + "namespace": "Microsoft.CognitiveServices", + "authorizations": [ + { + "applicationId": "7d312290-28c8-473c-a0ed-8e53749b6d6d", + "roleDefinitionId": "5cb87f79-a7c3-4a95-9414-45b65974b51b" + } + ], + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany West Central" + ], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2017-04-18", + "2016-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkDomainAvailability", + "locations": [], + "apiVersions": [ + "2017-04-18" + ], + "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": [ + "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": [ + "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": [ + "2017-04-18" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-04-18" + }, + "metrics": { + "metricsFilterPathSelector": "kind", + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftCognitiveServices" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "CognitiveServicesShoebox", + "sourceMdmNamespace": "Microsoft.CognitiveServices" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "mdsEnvironment": "prod", + "serviceIdentity": "MicrosoftCognitiveServices", + "onbehalfSupportedLogCategories": [ + "Audit", + "RequestResponse", + "Trace" + ] + } + ] + }, + "regionless": true + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "7d312290-28c8-473c-a0ed-8e53749b6d6d" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DocumentDB", + "namespace": "Microsoft.DocumentDB", + "authorizations": [ + { + "applicationId": "57c0fc58-a83a-41d0-8ae9-08952659bdfd", + "roleDefinitionId": "FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282" + }, + { + "applicationId": "36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9", + "roleDefinitionId": "D5A795DE-916D-4818-B015-33C9E103E39B" + }, + { + "applicationId": "a232010e-820c-4083-83bb-3ace5fc29d0b", + "roleDefinitionId": "D5A795DE-916D-4818-B015-33C9E103E39B" + } + ], + "resourceTypes": [ + { + "resourceType": "databaseAccounts", + "locations": [ + "East US", + "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" + ], + "apiVersions": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "defaultApiVersion": "2020-06-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a232010e-820c-4083-83bb-3ace5fc29d0b" + }, + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftAzureCosmosDB", + "onbehalfSupportedLogCategories": [ + "DataPlaneRequests", + "MongoRequests" + ] + } + ] + }, + "mdsMappingResourceIdOverridePathSelector": "name" + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "databaseAccountNames", + "locations": [ + "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": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "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": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "operationResults", + "locations": [ + "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": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationsStatus", + "locations": [ + "East US", + "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" + ], + "apiVersions": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "East US", + "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" + ], + "apiVersions": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "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": [ + "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": [ + "East US", + "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" + ], + "apiVersions": [ + "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": [ + "East US", + "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" + ], + "apiVersions": [ + "2020-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "restorableDatabaseAccounts", + "locations": [ + "East US", + "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" + ], + "apiVersions": [ + "2020-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cassandraClusters", + "locations": [ + "East US", + "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" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "defaultApiVersion": "2021-03-01-preview", + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-03-31", + "operations": "2016-03-31" + }, + "mdsMappingResourceIdOverridePathSelector": "name", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftAzureCosmosDB" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "DocumentDB", + "sourceMdmNamespace": "DocDB" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EventGrid", + "namespace": "Microsoft.EventGrid", + "authorizations": [ + { + "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7", + "roleDefinitionId": "7FE036D8-246F-48BF-A78F-AB3EE699C8F3" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/eventSubscriptions", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "eventSubscriptions", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "topics", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "domains", + "locations": [ + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2018-09-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "domains/topics", + "locations": [ + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2018-09-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "topicTypes", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationsStatus", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/topicTypes", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "extensionTopics", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operationResults", + "locations": [], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operationsStatus", + "locations": [], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "systemTopics", + "locations": [ + "global", + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2020-04-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.EventGrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureEventGrid", + "sourceMdmNamespace": "resourceMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "eventgrid", + "onbehalfSupportedLogCategories": [ + "DeliveryFailures" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "systemTopics/eventSubscriptions", + "locations": [ + "global", + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "partnerRegistrations", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "partnerNamespaces", + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "partnerTopics", + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "partnerTopics/eventSubscriptions", + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "partnerNamespaces/eventChannels", + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2020-04-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.EventGrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureEventGrid", + "sourceMdmNamespace": "resourceMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "eventgrid", + "onbehalfSupportedLogCategories": [ + "DeliveryFailures", + "PublishFailures" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Devices", + "namespace": "Microsoft.Devices", + "authorizations": [ + { + "applicationId": "0cd79364-7a90-4354-9984-6e36c841418d", + "roleDefinitionId": "C121DF10-FE58-4BC4-97F9-8296879F7BBB" + }, + { + "applicationId": "29f411f1-b2cf-4043-8ac8-2185d7316811" + }, + { + "applicationId": "89d10474-74af-4874-99a7-c23c2f643083", + "roleDefinitionId": "7df22794-26e3-4f94-9d50-a4f0f6e1cb41" + } + ], + "resourceTypes": [ + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2020-08-31-preview", + "2020-08-31", + "2020-08-01", + "2020-07-10-preview", + "2020-06-15", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-11-04", + "2019-07-01-preview", + "2019-03-22-preview", + "2019-03-22", + "2018-12-01-preview", + "2018-04-01-preview", + "2018-04-01", + "2018-01-22", + "2017-07-01", + "2017-01-19", + "2016-02-03", + "2015-08-15-preview" + ], + "defaultApiVersion": "2020-01-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureIotHub" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDevicesShoebox", + "sourceMdmNamespace": "ShoeboxMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureIotHub", + "onbehalfSupportedLogCategories": [ + "Connections", + "DeviceTelemetry", + "C2DCommands", + "DeviceIdentityOperations", + "FileUploadOperations", + "Routes", + "D2CTwinOperations", + "C2DTwinOperations", + "TwinQueries", + "JobsOperations", + "DirectMethods", + "DistributedTracing", + "DeviceStreams" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "IotHubs/eventGridFilters", + "locations": [ + "West US", + "East US", + "West US 2", + "West Central US", + "East US 2", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "UK South", + "UK West", + "South India", + "Central India", + "Canada Central", + "Canada East", + "Brazil South", + "South Central US", + "Korea South", + "Korea Central", + "France Central", + "North Central US", + "Australia Central", + "Australia Central 2", + "Germany North", + "Germany West Central", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North" + ], + "apiVersions": [ + "2018-07-31", + "2018-01-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "ProvisioningServices", + "locations": [ + "East US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Japan West", + "Japan East", + "UK West", + "UK South", + "East US 2", + "Central US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "Australia Central", + "Australia Central 2", + "France Central", + "France South", + "Canada East", + "Canada Central", + "Korea South", + "Korea Central", + "Central India", + "South India", + "Brazil South" + ], + "apiVersions": [ + "2020-03-01", + "2020-01-01", + "2018-01-22", + "2017-11-15", + "2017-08-21-preview" + ], + "defaultApiVersion": "2020-01-01", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "0cd79364-7a90-4354-9984-6e36c841418d" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureIotDps" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDevicesShoebox", + "sourceMdmNamespace": "ShoeboxMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureIotDps", + "onbehalfSupportedLogCategories": [ + "DeviceOperations", + "ServiceOperations" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "IotHubs/securitySettings", + "locations": [ + "West US", + "North Europe", + "East Asia", + "East US", + "West Europe", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "West US 2", + "West Central US", + "East US 2", + "Central US", + "UK South", + "UK West", + "South India", + "Central India", + "Canada Central", + "Canada East", + "Brazil South", + "South Central US", + "Korea South", + "Korea Central", + "France Central", + "North Central US", + "Australia Central", + "Australia Central 2", + "Germany North", + "Germany West Central", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North" + ], + "apiVersions": [ + "2019-09-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "89d10474-74af-4874-99a7-c23c2f643083" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2018-04-01", + "IotHubs": "2018-04-01", + "ProvisioningServices": "2018-01-22", + "ElasticPools": "2018-01-22-preview", + "ElasticPools/IotHubTenants": "2018-01-22-preview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDevicesShoebox", + "sourceMdmNamespace": "ShoeboxMetrics" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataLakeStore", + "namespace": "Microsoft.DataLakeStore", + "authorization": { + "applicationId": "e9f49c6b-5ce5-44c8-925d-015017e9f7ad", + "roleDefinitionId": "17eb9cca-f08a-4499-b2d3-852d175f614f" + }, + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe", + "Australia East" + ], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "defaultApiVersion": "2016-11-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/firewallRules", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe", + "Australia East" + ], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/eventGridFilters", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe", + "Australia East" + ], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capability", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.accountId", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataLake" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureDataLake", + "sourceMdmNamespace": "Microsoft.DataLakeStore" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataLake", + "onbehalfSupportedLogCategories": [ + "Audit", + "Requests" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "e9f49c6b-5ce5-44c8-925d-015017e9f7ad" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DomainRegistration", + "namespace": "Microsoft.DomainRegistration", + "authorization": { + "applicationId": "ea2f600a-4980-45b7-89bf-d34da487bda1", + "roleDefinitionId": "54d7f2e3-5040-48a7-ae90-eebf629cfa0b" + }, + "resourceTypes": [ + { + "resourceType": "domains", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "domains/domainOwnershipIdentifiers", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "topLevelDomains", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "checkDomainAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "listDomainRecommendations", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "validateDomainRegistrationInformation", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "generateSsoRequest", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EventHub", + "namespace": "Microsoft.EventHub", + "authorizations": [ + { + "applicationId": "80369ed6-5f11-4dd9-bef3-692475845e77", + "roleDefinitionId": "eb8e1991-5de0-42a6-a64b-29b059341b7b" + }, + { + "applicationId": "6201d19e-14fb-4472-a2d6-5634a5c97568" + } + ], + "resourceTypes": [ + { + "resourceType": "namespaces", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2018-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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/eventhubs", + "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/eventhubs/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/eventhubs/consumergroups", + "locations": [], + "apiVersions": [ + "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": "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/disasterrecoveryconfigs", + "locations": [], + "apiVersions": [ + "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" + }, + { + "resourceType": "availableClusterRegions", + "locations": [], + "apiVersions": [ + "2018-01-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-01-01-preview" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-04-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.metricId", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "servicebus" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "servicebus", + "sourceMdmNamespace": "ServiceBusMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "servicebus", + "onbehalfSupportedLogCategories": [ + "ArchiveLogs", + "OperationalLogs", + "AutoScaleLogs", + "KafkaCoordinatorLogs", + "EventHubVNetConnectionEvent", + "CustomerManagedKeyUserLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "6201d19e-14fb-4472-a2d6-5634a5c97568" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HDInsight", + "namespace": "Microsoft.HDInsight", + "authorizations": [ + { + "applicationId": "9191c4da-09fe-49d9-a5f1-d41cbe92ad95", + "roleDefinitionId": "d102a6f3-d9cb-4633-8950-1243b975886c", + "managedByRoleDefinitionId": "346da55d-e1db-4a5a-89db-33ab3cdb6fc6" + }, + { + "applicationId": "7865c1d2-f040-46cc-875f-831a1ef6a28a", + "roleDefinitionId": "e27c0895-d168-46d5-8b65-870eb2350378" + } + ], + "resourceTypes": [ + { + "resourceType": "clusters", + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East" + ], + "apiVersions": [ + "2018-06-01-preview", + "2015-03-01-preview" + ], + "defaultApiVersion": "2015-03-01-preview", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftHDInsight" + } + ], + "metricsFilterPathSelector": "properties.clusterDefinition.kind", + "mdmInfo": [ + { + "sourceMdmAccount": "HdInsight", + "sourceMdmNamespace": "HdInsightIaasCluster" + } + ] + }, + "mdsMappingResourceIdOverridePathSelector": "name" + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "clusters/applications", + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East" + ], + "apiVersions": [ + "2018-06-01-preview", + "2015-03-01-preview" + ], + "defaultApiVersion": "2015-03-01-preview", + "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": [ + "2018-06-01-preview", + "2015-03-01-preview" + ], + "defaultApiVersion": "2015-03-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "9191c4da-09fe-49d9-a5f1-d41cbe92ad95" + }, + "createdDate": "2015-06-02", + "updatedDate": "2018-02-08", + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "metricsFilterPathSelector": "properties.clusterDefinition.kind", + "mdmInfo": [ + { + "sourceMdmAccount": "HdInsight", + "sourceMdmNamespace": "HdInsightIaasCluster" + } + ] + }, + "apiVersions": { + "default": "2015-03-01-preview" + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.KeyVault", + "namespace": "Microsoft.KeyVault", + "authorizations": [ + { + "applicationId": "cfa8b339-82a2-471a-a3c9-0fc0be7a4093", + "roleDefinitionId": "1cf9858a-28a2-4228-abba-94e606305b95" + }, + { + "applicationId": "589d5083-6f11-4d30-a62a-a4b316a14abf" + } + ], + "resourceTypes": [ + { + "resourceType": "vaults", + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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": [ + "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": [ + "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" + ], + "apiVersions": [ + "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": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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": [ + "2020-04-01-preview" + ], + "defaultApiVersion": "2020-04-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2015-06-01" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureKeyVault", + "mdsEnvironment": "prod", + "onbehalfSupportedLogCategories": [ + "AuditEvent" + ] + } + ] + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureKeyVault" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftKeyVaultShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Media", + "namespace": "Microsoft.Media", + "authorization": { + "applicationId": "374b2a64-3b6b-436b-934c-b820eacca870", + "roleDefinitionId": "aab70789-0cec-44b5-95d7-84b64c9487af" + }, + "resourceTypes": [ + { + "resourceType": "mediaservices", + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East" + ], + "apiVersions": [ + "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": "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-05-01", + "2018-07-01" + ], + "defaultApiVersion": "2018-07-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview", + "2018-02-05", + "2015-10-01", + "2015-04-01" + ], + "defaultApiVersion": "2018-07-01", + "capabilities": "None" + }, + { + "resourceType": "checknameavailability", + "locations": [], + "apiVersions": [ + "2015-10-01", + "2015-04-01" + ], + "defaultApiVersion": "2015-10-01", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "defaultApiVersion": "2018-07-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-07-01", + "operations": "2018-07-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Media" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftMediaServicesShoebox", + "sourceMdmNamespace": "MicrosoftMediaStreamingEndpoint" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Media", + "onbehalfSupportedLogCategories": [ + "KeyDeliveryRequests" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "374b2a64-3b6b-436b-934c-b820eacca870" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MachineLearning", + "namespace": "Microsoft.MachineLearning", + "authorization": { + "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385", + "roleDefinitionId": "1cc297bc-1829-4524-941f-966373421033" + }, + "resourceTypes": [ + { + "resourceType": "Workspaces", + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "West Central US" + ], + "apiVersions": [ + "2016-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "webServices", + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "South Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "South Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationsStatus", + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "commitmentPlans", + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.NotificationHubs", + "namespace": "Microsoft.NotificationHubs", + "resourceTypes": [ + { + "resourceType": "namespaces", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "namespaces/notificationHubs", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNamespaceAvailability", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operationResults", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "NotificationHubs", + "sourceMdmNamespace": "HubMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "NotificationHubs", + "onbehalfSupportedLogCategories": [ + "OperationalLogs" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage", + "namespace": "Microsoft.Storage", + "authorizations": [ + { + "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b", + "roleDefinitionId": "070ab87f-0efc-4423-b18b-756f3bdb0236" + }, + { + "applicationId": "e406a681-f3d4-42a8-90b6-c2b029497af1" + } + ], + "resourceTypes": [ + { + "resourceType": "deletedAccounts", + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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": [] + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b" + }, + "portal": { + "kinds": [ + { + "kind": "BlobStorage", + "icon": "\u003Csvg viewBox=\u00270 0 50 50\u0027 class=\u0027msportalfx-svg-placeholder\u0027 role=\u0027img\u0027 xmlns:svg=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 focusable=\u0027false\u0027\u003E\u003Cpath d=\u0027M0,44.8c0,1,0.8,1.9,1.8,1.9h46.3c1,0,1.9-0.8,1.9-1.9l0-33.1H0V44.8z\u0027 class=\u0027msportalfx-svg-c03\u0027\u003E\u003C/path\u003E\u003Cpath d=\u0027M48.1,4H1.8C0.8,4,0,4.9,0,5.9v5.7h50l0-5.7C50,4.9,49.2,4,48.1,4\u0027 class=\u0027msportalfx-svg-c04\u0027\u003E\u003C/path\u003E\u003Cpath opacity=\u00270.8\u0027 d=\u0027M38,21.2v-2.4H22.8l-3.6-3.6H9.7v26.3c0,0.8,0.6,1.4,1.4,1.4l0,0h27.2c0.8,0,1.4-0.6,1.4-1.4 V21.2H38z\u0027 class=\u0027msportalfx-svg-c01\u0027\u003E\u003C/path\u003E\u003Cpath d=\u0027M12.5,21.2v20.3c0,0.8-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4V15.2h9.6l3.6,3.6H38v2.4H12.5z\u0027 class=\u0027msportalfx-svg-c10\u0027\u003E\u003C/path\u003E\u003Cpath opacity=\u00270.2\u0027 d=\u0027M2,4C0.9,4,0,4.9,0,6v7.3v3.3v28c0,1.1,0.9,2,2,2h2.2L43.6,4H2z\u0027 class=\u0027msportalfx-svg-c01\u0027\u003E\u003C/path\u003E\u003C/svg\u003E" + } + ] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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-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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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-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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-12-01", + "operations": "2016-12-01" + }, + "metrics": { + "metricsFilterPathSelector": "sku.tier", + "mdsInfo": [ + { + "serviceIdentity": "XStore" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "XStoreShoebox", + "sourceMdmNamespace": "XStore" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Xstore", + "onbehalfSupportedLogCategories": [ + "StorageRead", + "StorageWrite", + "StorageDelete" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceHealth", + "namespace": "Microsoft.ResourceHealth", + "authorizations": [ + { + "applicationId": "8bdebf23-c0fe-4187-a378-717ad86f6a53", + "roleDefinitionId": "cc026344-c8b1-4561-83ba-59eba84b27cc" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilityStatuses", + "locations": [], + "apiVersions": [ + "2020-05-01-preview", + "2020-05-01", + "2018-08-01-rc", + "2018-08-01-preview", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01", + "2017-07-01", + "2015-01-01" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "childAvailabilityStatuses", + "locations": [], + "apiVersions": [ + "2018-11-06-beta", + "2018-08-01-rc", + "2018-08-01-preview", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01-beta", + "2017-07-01-rc", + "2017-07-01-preview", + "2017-07-01-beta", + "2015-01-01-rc", + "2015-01-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "childResources", + "locations": [], + "apiVersions": [ + "2018-11-06-beta", + "2018-08-01-rc", + "2018-08-01-preview", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01-beta", + "2017-07-01-rc", + "2017-07-01-preview", + "2017-07-01-beta", + "2015-01-01-rc", + "2015-01-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "events", + "locations": [], + "apiVersions": [ + "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" + }, + { + "resourceType": "notifications", + "locations": [ + "Australia Southeast" + ], + "apiVersions": [ + "2016-09-01", + "2016-06-01" + ], + "capabilities": "SupportsExtension" + } + ], + "metadata": { + "supportedResourceTypes": [ + "Microsoft.Cache/Redis", + "Microsoft.ClassicCompute/virtualMachines", + "Microsoft.Compute/virtualMachines", + "Microsoft.Sql/servers/databases", + "Microsoft.Web/sites", + "Microsoft.media/mediaservices", + "Microsoft.Network/virtualnetworkgateways", + "Microsoft.Network/connections", + "Microsoft.Search/Searchservices", + "Microsoft.Notificationhubs/namespaces", + "Microsoft.Cdn/profiles", + "Microsoft.Documentdb/databaseaccounts", + "Microsoft.DataLakeStore/accounts", + "Microsoft.DataLakeAnalytics/accounts", + "Microsoft.DataShare/accounts", + "Microsoft.Web/serverFarms", + "Microsoft.StreamAnalytics/streamingjobs", + "Microsoft.CognitiveServices/accounts", + "Microsoft.EventHub/namespaces", + "Microsoft.ServiceBus/namespaces", + "Microsoft.OperationalInsights/workspaces", + "Microsoft.ApiManagement/service", + "Microsoft.Devices/IotHubs", + "Microsoft.Network/LoadBalancers", + "Microsoft.Network/expressRouteCircuits", + "Microsoft.Network/trafficmanagerprofiles", + "Microsoft.Storage/storageAccounts", + "Microsoft.AnalysisServices/servers", + "Microsoft.KeyVault/vaults", + "Microsoft.DataMigration/services", + "Microsoft.MachineLearning/webServices", + "Microsoft.ServiceFabric/clusters", + "Microsoft.HdInsight/clusters", + "Microsoft.PowerBIDedicated/capacities", + "Microsoft.DataFactory/factories", + "Microsoft.IoTCentral/IoTApps", + "Microsoft.Sql/managedInstances/databases", + "Microsoft.DBforMariaDB/servers", + "Microsoft.DBforMySQL/servers", + "Microsoft.DBforPostgreSQL/servers", + "Microsoft.Network/applicationGateways", + "Microsoft.Network/frontdoors", + "Microsoft.Batch/batchAccounts", + "microsoft.Kusto/Clusters", + "microsoft.ContainerService/managedClusters", + "Microsoft.RecoveryServices/vaults", + "Microsoft.Compute/hostGroups/hosts", + "Microsoft.ClassicCompute/DomainNames", + "Microsoft.AppPlatform/Spring", + "Microsoft.Compute/virtualMachineScaleSets", + "Microsoft.HybridCompute/machines", + "Microsoft.DigitalTwins/DigitalTwinsInstances", + "Microsoft.Synapse/workspaces", + "Microsoft.Network/bastionHosts" + ], + "Microsoft.IdMapping": { + "vmId": "properties.roleId", + "roleId": "properties.vmId" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PolicyInsights", + "namespace": "Microsoft.PolicyInsights", + "authorizations": [ + { + "applicationId": "1d78a85d-813d-46f0-b496-dd72f50a3ec0", + "roleDefinitionId": "63d2b225-4c34-4641-8768-21a1f7c68ce8" + }, + { + "applicationId": "8cae6e77-e04e-42ce-b5cb-50d82bce26b1", + "roleDefinitionId": "4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7" + } + ], + "resourceTypes": [ + { + "resourceType": "policyEvents", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview", + "2018-04-04", + "2017-12-12-preview", + "2017-10-17-preview", + "2017-08-09-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "policyStates", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview", + "2018-04-04", + "2017-12-12-preview", + "2017-10-17-preview", + "2017-08-09-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview", + "2018-04-04", + "2017-12-12-preview", + "2017-10-17-preview", + "2017-08-09-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "asyncOperationResults", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "remediations", + "locations": [], + "apiVersions": [ + "2019-07-01", + "2018-07-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "policyTrackedResources", + "locations": [], + "apiVersions": [ + "2018-07-01-preview" + ], + "capabilities": "SupportsExtension" + } + ], + "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" + } + ], + "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" + ], + "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 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", + "West Central US" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2019-08-01", + "2017-08-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "settings", + "locations": [ + "Central US", + "East US" + ], + "apiVersions": [ + "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" + } + ], + "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" + ], + "apiVersions": [ + "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/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" + ], + "apiVersions": [ + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/disasterrecoveryconfigs", + "locations": [], + "apiVersions": [ + "2018-01-01-preview", + "2017-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/disasterrecoveryconfigs/checkNameAvailability", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2018-01-01-preview", + "2017-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "locations": [], + "apiVersions": [ + "2018-01-01-preview", + "2017-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-04-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.metricId", + "metrics": { + "metricsFilterPathSelector": "sku.tier", + "mdsInfo": [ + { + "serviceIdentity": "servicebus" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "servicebus", + "sourceMdmNamespace": "ServiceBusMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "servicebus", + "onbehalfSupportedLogCategories": [ + "OperationalLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "eb070ea5-bd17-41f1-ad68-5851f6e71774" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StorSimple", + "namespace": "Microsoft.StorSimple", + "resourceTypes": [ + { + "resourceType": "managers", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "West Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2019-05-13", + "2017-06-01", + "2017-05-15", + "2017-01-01", + "2016-10-01", + "2016-06-01", + "2015-03-15", + "2014-09-01" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "West Central US", + "Southeast Asia" + ], + "apiVersions": [ + "2019-05-13", + "2016-10-01", + "2016-06-01", + "2015-03-15", + "2014-09-01" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.visualstudio", + "namespace": "microsoft.visualstudio", + "authorization": { + "applicationId": "499b84ac-1321-427f-aa17-267ca6975798", + "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8" + }, + "resourceTypes": [ + { + "resourceType": "account", + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "None" + }, + { + "resourceType": "account/project", + "locations": [ + "East Asia", + "Southeast Asia", + "Australia East", + "Brazil South", + "Canada Central", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "West India", + "Central India", + "South India", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West Central US", + "UK South", + "West US", + "West US 2" + ], + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "account/extension", + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "apiVersions": [ + "2014-04-01-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/84codes.CloudAMQP", + "namespace": "84codes.CloudAMQP", + "resourceTypes": [ + { + "resourceType": "servers", + "locations": [ + "East US 2", + "Central US", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2016-08-01" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-08-01" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-08-01" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-08-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Conexlink.MyCloudIT", + "namespace": "Conexlink.MyCloudIT", + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "Central US" + ], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/LiveArena.Broadcast", + "namespace": "LiveArena.Broadcast", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US", + "North Europe", + "Japan West", + "Japan East", + "East Asia", + "West Europe", + "East US", + "Southeast Asia", + "Central US" + ], + "apiVersions": [ + "2016-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-06-15" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Mailjet.Email", + "namespace": "Mailjet.Email", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US", + "West Europe" + ], + "apiVersions": [ + "2017-10-01", + "2017-02-03" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-07-01", + "2017-10-01", + "2017-05-29", + "2017-02-03", + "2016-11-01", + "2016-07-01" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2017-10-01", + "2017-02-03", + "2016-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2017-10-01", + "2017-02-03", + "2016-11-01" + ], + "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" + ], + "apiVersions": [ + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "defaultApiVersion": "2020-01-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" + ], + "apiVersions": [ + "2020-01-01", + "2017-06-01" + ], + "defaultApiVersion": "2020-01-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" + ], + "apiVersions": [ + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "defaultApiVersion": "2020-01-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" + ], + "apiVersions": [ + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "defaultApiVersion": "2020-01-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" + ], + "apiVersions": [ + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "defaultApiVersion": "2020-01-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-06-01", + "operations": "2017-06-01" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AADDOMAINSERVICES", + "onbehalfSupportedLogCategories": [ + "AccountManagement", + "PolicyChange", + "LogonLogoff", + "PrivilegeUse", + "SystemSecurity", + "ObjectAccess", + "DirectoryServiceAccess", + "AccountLogon", + "DetailTracking" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.aadiam", + "namespace": "microsoft.aadiam", + "authorizations": [ + { + "applicationId": "1b912ec3-a9dd-4c4d-a53e-76aa7adb28d7", + "roleDefinitionId": "c4cfa0e8-3cb5-4ced-9c3c-efaad3348120" + } + ], + "resourceTypes": [ + { + "resourceType": "azureADMetrics", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-07-01" + ], + "defaultApiVersion": "2020-07-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateLinkForAzureAD", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "defaultApiVersion": "2020-03-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "tenants", + "locations": [ + "West US" + ], + "apiVersions": [ + "2017-04-01", + "2017-03-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-01", + "2016-02-01", + "2015-11-01", + "2015-01-01" + ], + "defaultApiVersion": "2017-04-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-04-01", + "operations": "2017-04-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.tenantId", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AadLogConnectorProd", + "onbehalfSupportedLogCategories": [ + "Signin" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "West US" + ], + "apiVersions": [ + "2017-04-01", + "2017-03-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-01", + "2016-02-01", + "2015-11-01", + "2015-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "diagnosticSettings", + "locations": [], + "apiVersions": [ + "2017-04-01-preview", + "2017-04-01" + ], + "defaultApiVersion": "2017-04-01-preview", + "capabilities": "None" + }, + { + "resourceType": "diagnosticSettingsCategories", + "locations": [], + "apiVersions": [ + "2017-04-01-preview", + "2017-04-01" + ], + "defaultApiVersion": "2017-04-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-04-01", + "operations": "2017-04-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.aadiam" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "AzureADMetrics", + "sourceMdmNamespace": "TenantMetric/PROD" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Addons", + "namespace": "Microsoft.Addons", + "authorization": { + "applicationId": "24d3987b-be4a-48e0-a3e7-11c186f39e41", + "roleDefinitionId": "8004BAAB-A4CB-4981-8571-F7E44D039D93" + }, + "resourceTypes": [ + { + "resourceType": "supportProviders", + "locations": [ + "West Central US", + "South Central US", + "East US", + "West Europe" + ], + "apiVersions": [ + "2018-03-01", + "2017-05-15" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West Central US", + "South Central US", + "East US", + "West Europe" + ], + "apiVersions": [ + "2018-03-01", + "2017-05-15" + ], + "capabilities": "None" + }, + { + "resourceType": "operationResults", + "locations": [ + "West Central US", + "South Central US", + "East US", + "West Europe" + ], + "apiVersions": [ + "2018-03-01", + "2017-05-15" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ADHybridHealthService", + "namespace": "Microsoft.ADHybridHealthService", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "addsservices", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "configuration", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "agents", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "aadsupportcases", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "reports", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servicehealthmetrics", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "logs", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "anonymousapiusers", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AgFoodPlatform", + "namespace": "Microsoft.AgFoodPlatform", + "authorizations": [ + { + "applicationId": "e420dc86-d66f-4069-a2d0-be2f937bd272", + "roleDefinitionId": "c9511e72-16f4-4804-9bed-d3f21cbe122f" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "East US", + "West Central US" + ], + "apiVersions": [ + "2020-05-12-preview" + ], + "defaultApiVersion": "2020-05-12-preview", + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "East US", + "West Central US" + ], + "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" + } + ], + "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 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", + "East US" + ], + "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 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", + "East US" + ], + "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 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", + "East US" + ], + "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 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", + "East US", + "South Central US" + ], + "apiVersions": [ + "2020-12-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AnalysisServices", + "namespace": "Microsoft.AnalysisServices", + "authorization": { + "applicationId": "4ac7d521-0382-477b-b0f8-7e1d95f85ca2", + "roleDefinitionId": "490d5987-bcf6-4be6-b6b2-056a78cb693a" + }, + "resourceTypes": [ + { + "resourceType": "servers", + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "defaultApiVersion": "2017-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "defaultApiVersion": "2017-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "defaultApiVersion": "2017-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "defaultApiVersion": "2017-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "defaultApiVersion": "2017-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US 2", + "West Central US", + "West US 2" + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-08-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "AsPaaS", + "sourceMdmNamespace": "SystemCounters" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "ASAzureRP" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "ASAzureRP", + "onbehalfSupportedLogCategories": [ + "Service", + "Engine" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AnyBuild", + "namespace": "Microsoft.AnyBuild", + "authorizations": [ + { + "applicationId": "16f9e0a0-ac78-4c2c-a55a-f3855317a63a", + "roleDefinitionId": "6fc3ed3a-fa07-4e79-9ac0-2db46b294d31" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-08-26" + ], + "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": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-08-26" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AppAssessment", + "namespace": "Microsoft.AppAssessment", + "authorizations": [ + { + "applicationId": "f9c691e6-93b3-4d57-944c-afcc737f9abf", + "roleDefinitionId": "1dc07278-9fb7-4aa4-bf32-bbb5a0a0c0bd" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "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" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AppPlatform", + "namespace": "Microsoft.AppPlatform", + "authorizations": [ + { + "applicationId": "03b39d0f-4213-4864-a245-b1476ec03169" + }, + { + "applicationId": "584a29b4-7876-4445-921e-71e427d4f4b3" + }, + { + "applicationId": "b61cc489-e138-4a69-8bf3-c2c5855c8784", + "roleDefinitionId": "462ddd96-910a-44f5-adfa-644d99942778" + }, + { + "applicationId": "e8de9221-a19c-4c81-b814-fd37c6caf9d2" + }, + { + "applicationId": "366cbfa5-46b3-47fb-9d70-55fb923b4833", + "roleDefinitionId": "d63d711d-1c1a-41d9-905a-fb87b28d47d9" + } + ], + "resourceTypes": [ + { + "resourceType": "Spring", + "locations": [ + "West Europe", + "East US", + "West US 2", + "Southeast Asia", + "Central US", + "Australia East", + "UK South", + "North Europe", + "South Central US", + "East US 2", + "Canada Central", + "North Central US", + "West US", + "UAE North", + "Central India", + "Korea Central", + "East Asia" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01-preview", + "2020-07-01", + "2019-05-01-preview" + ], + "defaultApiVersion": "2019-05-01-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-11-01-preview", + "2020-07-01", + "2019-05-01-preview" + ], + "defaultApiVersion": "2019-05-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01-preview", + "2020-07-01", + "2019-05-01-preview" + ], + "defaultApiVersion": "2019-05-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-05-01-preview", + "operations": "2019-05-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "Microservices4SpringMetrics", + "sourceMdmNamespace": "ServiceMetrics" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Microservices4Spring" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Microservices4Spring", + "onbehalfSupportedLogCategories": [ + "ApplicationConsole", + "SystemLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "0a0ae72b-f728-4dde-abe9-1e3e72a7a92c" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Automanage", + "namespace": "Microsoft.Automanage", + "authorizations": [ + { + "applicationId": "9ae330ab-d710-466b-851c-c828e7340846" + }, + { + "applicationId": "d828acde-4b48-47f5-a6e8-52460104a052", + "roleDefinitionId": "111e90e1-c9ec-40f6-b898-c0964578da58" + } + ], + "resourceTypes": [ + { + "resourceType": "configurationProfileAssignments", + "locations": [ + "Central US", + "East US", + "East US 2", + "South Central US", + "West US", + "West US 2", + "West Central US", + "North Europe", + "West Europe", + "Canada Central", + "Japan East", + "UK South", + "Australia Southeast", + "Australia East" + ], + "apiVersions": [ + "2020-06-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" + ], + "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" + ], + "apiVersions": [ + "2020-06-30-preview" + ], + "defaultApiVersion": "2020-06-30-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "Central US", + "East US 2", + "East US", + "North Central US", + "South Central US", + "West US 2", + "West Central US", + "West US" + ], + "apiVersions": [ + "2020-06-30-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftAutomanage" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false + } + ] + }, + "logs": { + "mdsInfo": [ + { + "mdsEnvironment": "test", + "serviceIdentity": "MicrosoftAutomanage" + } + ] + }, + "version": "1.0" + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Automation", + "namespace": "Microsoft.Automation", + "authorizations": [ + { + "applicationId": "fc75330b-179d-49af-87dd-3b1acf6827fa", + "roleDefinitionId": "95fd5de3-d071-4362-92bf-cf341c1de832" + } + ], + "resourceTypes": [ + { + "resourceType": "automationAccounts", + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "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" + ], + "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", + "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", + "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": [ + "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", + "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", + "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", + "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", + "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", + "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", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central" + ], + "apiVersions": [ + "2020-01-13-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "fc75330b-179d-49af-87dd-3b1acf6827fa" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftAutomation" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "MicrosoftAutomationProdShoebox", + "sourceMdmNamespace": "JobCount" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "mdsEnvironment": "prod", + "onbehalfSupportedLogCategories": [ + "JobLogs", + "JobStreams", + "DscNodeStatus" + ], + "serviceIdentity": "MicrosoftAutomation" + } + ] + }, + "version": "1.0" + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AutonomousDevelopmentPlatform", + "namespace": "Microsoft.AutonomousDevelopmentPlatform", + "authorizations": [ + { + "applicationId": "dad37da6-229d-4bc0-8b94-fee8600589db", + "roleDefinitionId": "5cbfe752-1a6e-4926-b68f-0475c305f85e", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635" + }, + { + "applicationId": "150c8903-2280-4ab6-8708-b080044d94c6", + "roleDefinitionId": "5cbfe752-1a6e-4926-b68f-0475c305f85e" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2020-07-01-preview" + ], + "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" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AutonomousSystems", + "namespace": "Microsoft.AutonomousSystems", + "authorizations": [ + { + "applicationId": "a967240f-810b-4f79-85e5-25870cc69cbb", + "roleDefinitionId": "47b23f55-5e18-4fc7-a69a-f9b79a9811ea", + "managedByRoleDefinitionId": "6ee14824-e3a8-4536-ad65-346e3406f3c4" + } + ], + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "defaultApiVersion": "2020-05-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/validateCreateRequest", + "locations": [ + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "defaultApiVersion": "2020-05-01-preview", + "capabilities": "None" + }, + { + "resourceType": "workspaces/operationresults", + "locations": [ + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "defaultApiVersion": "2020-05-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a967240f-810b-4f79-85e5-25870cc69cbb" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AVS", + "namespace": "Microsoft.AVS", + "authorizations": [ + { + "applicationId": "608f9929-9737-432e-860f-4e1c1821052f", + "roleDefinitionId": "a12e1b40-7eca-4c51-be1d-d8bc564dcfdd", + "allowedThirdPartyExtensions": [ + { + "name": "VMCP" + } + ] + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkTrialAvailability", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkQuotaAvailability", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-07-17-preview", + "2020-03-20" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.AVS" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "AVSShoebox2", + "sourceMdmNamespace": "Vsphere.Cluster.ClusterServices" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateClouds/clusters", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast 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", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/hcxEnterpriseSites", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/globalReachConnections", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/addons", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/dhcpConfigurations", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/portMirroringProfiles", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/segments", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/vmGroups", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/gateways", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/virtualMachines", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/dnsServices", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/dnsZones", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-03-20", + "operations": "2020-03-20" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.AVS" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "AVSShoebox2", + "sourceMdmNamespace": "Vsphere.Datastore.Disk" + } + ] + } + } + } + }, + "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": [ + "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": [ + "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": [ + "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": [ + "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" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-03-02-preview", + "2019-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2020-12-08-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sqlServerInstances", + "locations": [ + "Australia East", + "UK South", + "East US 2", + "Central US", + "East US", + "North Europe", + "Southeast Asia", + "West Europe", + "West US 2" + ], + "apiVersions": [ + "2020-12-08-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureCIS", + "namespace": "Microsoft.AzureCIS", + "authorizations": [], + "resourceTypes": [ + { + "resourceType": "autopilotEnvironments", + "locations": [ + "Australia East", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "Southeast Asia", + "South Central US", + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureData", + "namespace": "Microsoft.AzureData", + "authorizations": [ + { + "applicationId": "bb55177b-a7d9-4939-a257-8ab53a3b2bc6", + "roleDefinitionId": "f83de625-af9e-4458-ac9c-e5d62b05fd06" + }, + { + "applicationId": "a12e8ccb-0fcd-46f8-b6a1-b9df7a9d7231", + "roleDefinitionId": "f83de625-af9e-4458-ac9c-e5d62b05fd06" + } + ], + "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": "dataControllers", + "locations": [ + "Japan East", + "Australia East", + "Korea Central", + "North Europe", + "UK South", + "France Central", + "East US", + "East US 2", + "Central US", + "West Europe", + "Southeast Asia", + "West US 2" + ], + "apiVersions": [ + "2020-09-08-preview", + "2019-07-24-preview" + ], + "defaultApiVersion": "2020-09-08-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "postgresInstances", + "locations": [ + "Japan East", + "Australia East", + "Korea Central", + "North Europe", + "UK South", + "France Central", + "East US", + "East US 2", + "Central US", + "West Europe", + "Southeast Asia", + "West US 2" + ], + "apiVersions": [ + "2020-09-08-preview", + "2019-07-24-preview" + ], + "defaultApiVersion": "2020-09-08-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sqlManagedInstances", + "locations": [ + "Japan East", + "Australia East", + "Korea Central", + "North Europe", + "UK South", + "France Central", + "East US", + "East US 2", + "Central US", + "West Europe", + "Southeast Asia", + "West US 2" + ], + "apiVersions": [ + "2020-09-08-preview", + "2019-07-24-preview" + ], + "defaultApiVersion": "2020-09-08-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sqlServerInstances", + "locations": [ + "East US", + "East US 2", + "Central US", + "West Europe", + "Southeast Asia", + "West US 2", + "Australia East", + "North Europe", + "UK South" + ], + "apiVersions": [ + "2020-09-08-preview", + "2019-07-24-preview" + ], + "defaultApiVersion": "2020-09-08-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.AzureStack", + "namespace": "Microsoft.AzureStack", + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Global" + ], + "apiVersions": [ + "2017-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "registrations", + "locations": [ + "West Central US", + "Global" + ], + "apiVersions": [ + "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" + }, + { + "applicationId": "1322e676-dee7-41ee-a874-ac923822781c", + "roleDefinitionId": "e91a9804-9f4d-4501-bf85-03bd4ea78451" + } + ], + "resourceTypes": [ + { + "resourceType": "clusters", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-10-01" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-11-01-preview", + "2020-10-01", + "2020-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-11-01-preview", + "2020-10-01" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "East US 2 EUAP", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-10-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BareMetalInfrastructure", + "namespace": "Microsoft.BareMetalInfrastructure", + "authorization": { + "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39", + "roleDefinitionId": "4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635" + }, + "resourceTypes": [ + { + "resourceType": "bareMetalInstances", + "locations": [ + "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": [ + "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": [ + "West US", + "West US 2", + "East US", + "East US 2", + "South Central US", + "West Europe", + "North Europe", + "Japan East", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-08-06-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BatchAI", + "namespace": "Microsoft.BatchAI", + "authorization": { + "applicationId": "9fcb3732-5f52-4135-8c08-9d4bbaf203ea", + "roleDefinitionId": "703B89C7-CE2C-431B-BDD8-FA34E39AF696", + "managedByRoleDefinitionId": "90B8E153-EBFF-4073-A95F-4DAD56B14C78" + }, + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ViennaAzureMonitor", + "sourceMdmNamespace": "vienna" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices", + "onbehalfSupportedLogCategories": [ + "BaiJobEvent", + "BaiClusterNodeEvent", + "BaiClusterEvent" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/clusters", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/fileservers", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/experiments", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ViennaAzureMonitor", + "sourceMdmNamespace": "vienna" + } + ] + } + } + } + }, + "capabilities": "None" + }, + { + "resourceType": "workspaces/experiments/jobs", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ViennaAzureMonitor", + "sourceMdmNamespace": "vienna" + } + ] + } + } + } + }, + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "West US 2", + "West Europe", + "East US 2", + "North Europe", + "Australia East", + "West Central US", + "Southeast Asia", + "South Central US", + "West US" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01", + "2017-09-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-05-01", + "operations": "2018-05-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ViennaAzureMonitor", + "sourceMdmNamespace": "vienna" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices", + "onbehalfSupportedLogCategories": [ + "BaiJobEvent", + "BaiClusterNodeEvent", + "BaiClusterEvent" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Billing", + "namespace": "Microsoft.Billing", + "authorizations": [ + { + "applicationId": "80dbdb39-4f33-4799-8b6f-711b5e3e61b6", + "roleDefinitionId": "acdc79db-513f-461d-a542-61908d543bdc" + } + ], + "resourceTypes": [ + { + "resourceType": "billingPeriods", + "locations": [], + "apiVersions": [ + "2018-03-01-preview", + "2017-04-24-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "invoices", + "locations": [], + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview", + "2018-03-01-preview", + "2017-04-24-preview", + "2017-02-27-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "enrollmentAccounts", + "locations": [], + "apiVersions": [ + "2018-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingRoleDefinitions", + "locations": [], + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "billingRoleAssignments", + "locations": [], + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "createBillingRoleAssignment", + "locations": [], + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "billingAccounts/createBillingRoleAssignment", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/billingProfiles/createBillingRoleAssignment", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingPermissions", + "locations": [], + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "billingAccounts/billingRoleDefinitions", + "locations": [], + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/billingRoleAssignments", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/billingPermissions", + "locations": [], + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview", + "2018-06-30", + "2018-05-31" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/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": [ + "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-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/billingProfiles/invoices", + "locations": [], + "apiVersions": [ + "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": [ + "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-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-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": [ + "2019-10-01-preview", + "2018-11-01-preview" + ], + "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" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Bing", + "namespace": "Microsoft.Bing", + "authorizations": [ + { + "applicationId": "c19490b5-c092-426f-b1a2-674b279d4975", + "roleDefinitionId": "7963cd60-9634-4abc-9a64-2482a3ef6373" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/skus", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/usages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "West US", + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Blockchain", + "namespace": "Microsoft.Blockchain", + "authorizations": [ + { + "applicationId": "78827f38-7b69-4d5e-a627-d6fdd9c759a0", + "roleDefinitionId": "9c68eaf3-8315-4e5c-b857-641b16b21f8f" + }, + { + "applicationId": "049d4938-2ef2-4274-aa8f-630fc9bc33d1", + "roleDefinitionId": "c6dd0893-0495-488a-ac21-ee5f1ba89769" + }, + { + "applicationId": "911e905a-a50e-4c94-9f7c-48bb12f549ed" + } + ], + "resourceTypes": [ + { + "resourceType": "watchers", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2019-06-01-preview" + ], + "defaultApiVersion": "2019-06-01-preview", + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "blockchainMembers", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/watcherOperationResults", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2019-06-01-preview" + ], + "defaultApiVersion": "2019-06-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East", + "West Central US" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/blockchainMemberOperationResults", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/listConsortiums", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East", + "West Central US" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-06-01-preview", + "operations": "2018-06-01-preview" + }, + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftBlockchainShoebox", + "sourceMdmNamespace": "NodeMetrics" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Blockchain" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Blockchain", + "onbehalfSupportedLogCategories": [ + "BlockchainApplication", + "Proxy", + "FabricOrderer", + "FabricPeer" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BlockchainTokens", + "namespace": "Microsoft.BlockchainTokens", + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [ + "West US" + ], + "apiVersions": [ + "2019-07-19-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Blueprint", + "namespace": "Microsoft.Blueprint", + "authorizations": [ + { + "applicationId": "f71766dc-90d9-4b7d-bd9d-4499c4331c3f", + "roleDefinitionId": "cb180127-cf6d-4672-9e75-e29a487f9658" + } + ], + "resourceTypes": [ + { + "resourceType": "blueprints", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "blueprints/artifacts", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "blueprints/versions", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "blueprints/versions/artifacts", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "blueprintAssignments", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsExtension" + }, + { + "resourceType": "blueprintAssignments/operations", + "locations": [], + "apiVersions": [ + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "blueprintAssignments/assignmentOperations", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "f71766dc-90d9-4b7d-bd9d-4499c4331c3f" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BotService", + "namespace": "Microsoft.BotService", + "authorizations": [ + { + "applicationId": "f3723d34-6ff5-4ceb-a148-d99dcd2511fc", + "roleDefinitionId": "71213c26-43ed-41d8-9905-3c12971517a3" + }, + { + "applicationId": "27a762be-14e7-4f92-899c-151877d6d497", + "roleDefinitionId": "aab320d1-5b9b-4748-982e-be803163df77" + }, + { + "applicationId": "5b404cf4-a79d-4cfe-b866-24bf8e1a4921", + "roleDefinitionId": "3d07f186-e6fa-4974-ac88-b88eeda6370a" + }, + { + "applicationId": "ce48853e-0605-4f77-8746-d70ac63cc6bc", + "roleDefinitionId": "d5b49851-91ee-42df-9dc4-00b3a3b4d96b" + }, + { + "applicationId": "e6650347-047f-4e51-9386-839384472ea5", + "roleDefinitionId": "a9b54502-e245-45bc-bd0f-aa7e1074afdc" + } + ], + "resourceTypes": [ + { + "resourceType": "botServices", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-06-02", + "operations": "2020-06-02" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "BotServices", + "onbehalfSupportedLogCategories": [ + "BotRequest", + "DependencyRequest" + ] + } + ] + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "BotServices" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "BotFrameworkPlatform", + "sourceMdmNamespace": "Metrics" + } + ] + }, + "regionLess": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "botServices/channels", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "capabilities": "None" + }, + { + "resourceType": "botServices/connections", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "capabilities": "None" + }, + { + "resourceType": "listAuthServiceProviders", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "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": "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": [ + "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": [ + "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" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cascade", + "namespace": "Microsoft.Cascade", + "authorizations": [], + "resourceTypes": [ + { + "resourceType": "sites", + "locations": [ + "West US", + "North Europe" + ], + "apiVersions": [ + "2020-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "West US", + "Japan East", + "North Europe" + ], + "apiVersions": [ + "2020-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [ + "West US", + "Japan East", + "North Europe" + ], + "apiVersions": [ + "2020-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ChangeAnalysis", + "namespace": "Microsoft.ChangeAnalysis", + "authorizations": [ + { + "applicationId": "2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8", + "roleDefinitionId": "f5a6bd90-af71-455c-9030-c486e8c42c95" + }, + { + "applicationId": "3edcf11f-df80-41b2-a5e4-7e213cca30d1", + "roleDefinitionId": "f5a6bd90-af71-455c-9030-c486e8c42c95" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-04-01-preview", + "2019-04-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "resourceChanges", + "locations": [], + "apiVersions": [ + "2020-04-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "changes", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "SupportsExtension" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationIds": [ + "2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8", + "3edcf11f-df80-41b2-a5e4-7e213cca30d1" + ] + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Chaos", + "namespace": "Microsoft.Chaos", + "authorizations": [ + { + "applicationId": "ecad3f28-c75d-4414-94e0-a5e1de4df79e", + "roleDefinitionId": "16f6458e-a375-4d8d-934e-5c9933967cb4" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-03-05-preview", + "2021-02-12-preview", + "2021-01-21-preview", + "2020-11-30-preview", + "2020-09-23-preview", + "2020-09-14-preview", + "2020-06-18-preview", + "2020-05-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "ecad3f28-c75d-4414-94e0-a5e1de4df79e" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicInfrastructureMigrate", + "namespace": "Microsoft.ClassicInfrastructureMigrate", + "authorization": { + "applicationId": "5e5abe2b-83cd-4786-826a-a05653ebb103", + "roleDefinitionId": "766c4d9b-ef83-4f73-8352-1450a506a69b" + }, + "resourceTypes": [ + { + "resourceType": "classicInfrastructureResources", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "South India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "Australia Central", + "Australia Central 2", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North" + ], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicSubscription", + "namespace": "Microsoft.ClassicSubscription", + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2017-09-01", + "2017-06-01" + ], + "defaultApiVersion": "2017-06-01", + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Codespaces", + "namespace": "Microsoft.Codespaces", + "authorizations": [ + { + "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6", + "roleDefinitionId": "59cd8abb-1e79-437f-9a05-4bca235c4c35" + }, + { + "applicationId": "48ef7923-268f-473d-bcf1-07f0997961f4", + "roleDefinitionId": "59cd8abb-1e79-437f-9a05-4bca235c4c35" + } + ], + "resourceTypes": [ + { + "resourceType": "plans", + "locations": [ + "West Europe", + "East US", + "West Us 2", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-10-beta", + "2020-07-10-alpha", + "2020-06-16-beta", + "2020-06-16-alpha", + "2020-06-16" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-07-10-privatepreview", + "2020-07-10-beta", + "2020-07-10-alpha", + "2020-06-16-privatepreview", + "2020-06-16-beta", + "2020-06-16-alpha", + "2020-06-16" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-07-10-privatepreview", + "2020-07-10-beta", + "2020-07-10-alpha", + "2020-06-16-privatepreview", + "2020-06-16-beta", + "2020-06-16-alpha", + "2020-06-16" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub", + "Microsoft.ManagedIdentity": { + "applicationId": "5e40b565-3ac2-4fbc-871e-068b78151bb0" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Commerce", + "namespace": "Microsoft.Commerce", + "resourceTypes": [ + { + "resourceType": "UsageAggregates", + "locations": [], + "apiVersions": [ + "2015-06-01-preview", + "2015-03-31" + ], + "capabilities": "None" + }, + { + "resourceType": "RateCard", + "locations": [], + "apiVersions": [ + "2016-08-31-preview", + "2015-06-01-preview", + "2015-05-15" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2015-06-01-preview", + "2015-03-31" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Communication", + "namespace": "Microsoft.Communication", + "authorizations": [ + { + "applicationId": "632ec9eb-fad7-4cbd-993a-e72973ba2acc", + "roleDefinitionId": "6c5c31b0-3a00-47ea-9555-f233670ba313" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "CommunicationServices", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "CommunicationServices/eventGridFilters", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "CheckNameAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Confluent", + "namespace": "Microsoft.Confluent", + "authorizations": [ + { + "applicationId": "1448fd13-7e74-41f4-b6e3-17e485d8ac2e", + "roleDefinitionId": "4db34280-b0be-4827-aa5b-418391409cee" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None" + }, + { + "resourceType": "agreements", + "locations": [], + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedCache", + "namespace": "Microsoft.ConnectedCache", + "authorizations": [], + "resourceTypes": [ + { + "resourceType": "CacheNodes", + "locations": [ + "West US" + ], + "apiVersions": [ + "2019-12-04-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedVMwarevSphere", + "namespace": "Microsoft.ConnectedVMwarevSphere", + "authorizations": [ + { + "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7", + "roleDefinitionId": "a27a5b7c-3d1a-4e97-b0ad-195eef808eb6" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "East US 2 EUAP", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "VCenters/InventoryItems", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/HybridIdentityMetadata", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Consumption", + "namespace": "Microsoft.Consumption", + "authorizations": [ + { + "applicationId": "c5b17a4f-cc6f-4649-9480-684280a2af3a", + "roleDefinitionId": "4a2e6ae9-2713-4cc9-a3b3-312899d687c3" + } + ], + "resourceTypes": [ + { + "resourceType": "Forecasts", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "AggregatedCost", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "tenants", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "ReservationRecommendations", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01-preview", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "ReservationRecommendationDetails", + "locations": [], + "apiVersions": [ + "2019-10-01" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "ReservationSummaries", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01-preview", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "ReservationTransactions", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Balances", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Marketplaces", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Pricesheets", + "locations": [], + "apiVersions": [ + "2020-01-01-preview", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "ReservationDetails", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01-preview", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Budgets", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-04-01-preview", + "2019-03-01-preview", + "2019-01-01-preview", + "2019-01-01", + "2018-12-01-preview", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-12-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "CostTags", + "locations": [], + "apiVersions": [ + "2019-11-01", + "2019-10-01", + "2019-05-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Tags", + "locations": [], + "apiVersions": [ + "2019-11-01", + "2019-10-01", + "2019-05-01", + "2019-04-01-preview", + "2019-03-01-preview", + "2019-01-01", + "2018-12-01-preview", + "2018-10-01", + "2018-08-31", + "2018-08-01-preview", + "2018-06-30", + "2018-05-31", + "2018-03-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Terms", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-12-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "UsageDetails", + "locations": [], + "apiVersions": [ + "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": [ + "2019-10-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "events", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "lots", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "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": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "West Central US", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "West Central US", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "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": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "2020-11-01", + "2019-12-01", + "2018-10-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "locations": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "2020-11-01", + "2019-12-01", + "2018-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9" + }, + "vnetSupportRegions": [ + "eastus2euap", + "westcentralus", + "centraluseuap", + "westus", + "westeurope", + "australiaeast", + "eastus", + "japaneast", + "northeurope", + "southeastasia", + "eastus2", + "westus2", + "centralus", + "southcentralus", + "canadacentral", + "koreacentral", + "francecentral" + ], + "gpuRegionalSkus": [ + { + "location": "eastus", + "skus": [ + "V100", + "P100", + "K80" + ] + }, + { + "location": "southcentralus", + "skus": [ + "V100", + "P100", + "K80" + ] + }, + { + "location": "westus2", + "skus": [ + "V100", + "P100", + "K80" + ] + }, + { + "location": "westeurope", + "skus": [ + "V100", + "P100", + "K80" + ] + }, + { + "location": "northeurope", + "skus": [ + "K80" + ] + }, + { + "location": "centralindia", + "skus": [ + "V100" + ] + }, + { + "location": "southeastasia", + "skus": [ + "V100", + "P100" + ] + } + ], + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-12-01-preview", + "operations": "2017-12-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.ContainerInstance" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftContainerInstanceShoebox", + "sourceMdmNamespace": "AzureMonitoringMetrics" + } + ] + } + } + } + }, + "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": [ + "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": [ + "2020-12-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "OperationStatus", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "OperationResults", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "SupportsExtension" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CostManagementExports", + "namespace": "Microsoft.CostManagementExports", + "authorizations": [ + { + "applicationId": "e5408ad0-c4e2-43aa-b6f2-3b4951286d99", + "roleDefinitionId": "5e4888b3-2747-4e5b-9897-ec0865b91bcf" + } + ], + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CustomerLockbox", + "namespace": "Microsoft.CustomerLockbox", + "authorizations": [ + { + "applicationId": "a0551534-cfc9-4e1f-9a7a-65093b32bb38", + "roleDefinitionId": "114bcfb6-5524-4d80-948a-d8a9937bc3e5" + }, + { + "applicationId": "01fc33a7-78ba-4d2f-a4b7-768e336e890e" + }, + { + "applicationId": "d8c767ef-3e9a-48c4-aef9-562696539b39" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "TenantOptedIn", + "locations": [], + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "EnableLockbox", + "locations": [], + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "DisableLockbox", + "locations": [], + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "requests", + "locations": [], + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CustomProviders", + "namespace": "Microsoft.CustomProviders", + "authorization": { + "applicationId": "bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5", + "roleDefinitionId": "FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7" + }, + "resourceTypes": [ + { + "resourceType": "resourceProviders", + "locations": [ + "Australia East", + "Australia Southeast", + "East US", + "West US 2", + "West Europe", + "North Europe", + "Canada Central", + "Canada East" + ], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "associations", + "locations": [], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "Australia East", + "Australia Southeast", + "East US", + "West US 2", + "West Europe", + "North Europe", + "Canada Central", + "Canada East" + ], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-09-01-preview", + "operations": "2018-09-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.CustomProviders" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftCustomProvidersShoebox", + "sourceMdmNamespace": "MgmtExpWebApi" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.CustomProviders", + "onbehalfSupportedLogCategories": [ + "AuditLogs" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.D365CustomerInsights", + "namespace": "Microsoft.D365CustomerInsights", + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-06-10-privatepreview", + "2020-06-10-preview", + "2020-06-10-beta" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-06-10-preview", + "operations": "2020-06-10-preview" + }, + "mdmInfo": [ + { + "sourceMdmAccount": "Customer360Prod", + "sourceMdmNamespace": "Customer360Prod" + }, + { + "sourceMdmAccount": "Customer360PPE", + "sourceMdmNamespace": "Customer360PPPE" + } + ], + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.D365CustomerInsights", + "onbehalfSupportedLogCategories": [ + "Audit", + "Operational" + ] + } + ] + }, + "regionLess": true + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataBox", + "namespace": "Microsoft.DataBox", + "authorizations": [ + { + "applicationId": "5613cb5c-a7c9-4099-8034-511fd7616cb2", + "roleDefinitionId": "382D72D1-63DC-4243-9B99-CB69FDD473D8", + "managedByRoleDefinitionId": "f4c0a4f9-768c-4927-ab83-d319111d6ef4" + } + ], + "resourceTypes": [ + { + "resourceType": "jobs", + "locations": [ + "West US", + "West Europe", + "Southeast Asia", + "East Asia", + "South India", + "Australia East", + "Canada Central", + "Korea Central", + "Japan East", + "South Africa North", + "Brazil South", + "UAE Central", + "UK South" + ], + "apiVersions": [ + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "5613cb5c-a7c9-4099-8034-511fd7616cb2" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataBoxEdge", + "namespace": "Microsoft.DataBoxEdge", + "authorizations": [ + { + "applicationId": "2368d027-f996-4edb-bf48-928f98f2ab8c" + } + ], + "resourceTypes": [ + { + "resourceType": "DataBoxEdgeDevices", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview", + "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": "2020-12-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "DataBoxEdgeDevices/checkNameAvailability", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview", + "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", + "2020-12-01", + "2020-09-01-preview", + "2020-09-01", + "2020-07-01-preview", + "2020-07-01", + "2020-06-01", + "2020-05-01-preview", + "2020-01-01", + "2019-08-01", + "2019-07-01", + "2019-03-01", + "2018-07-01", + "2017-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "availableSkus", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2020-09-01-preview", + "2020-09-01", + "2020-07-01-preview", + "2020-05-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-09-01", + "operations": "2017-09-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.DataBoxEdge" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDataBoxEdgeShoebox", + "sourceMdmNamespace": "Gateway" + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "7894de8a-09af-4805-bc2e-4b19797c0d95" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Databricks", + "namespace": "Microsoft.Databricks", + "authorizations": [ + { + "applicationId": "d9327919-6775-4843-9037-3fb0fb0473cb", + "roleDefinitionId": "f31567d0-b61f-43c2-97a5-a98cdc3bfcb6", + "managedByRoleDefinitionId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635" + }, + { + "applicationId": "2ff814a6-3304-4ab8-85cb-cd0e6f879c1d", + "roleDefinitionId": "f31567d0-b61f-43c2-97a5-a98cdc3bfcb6", + "managedByRoleDefinitionId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635" + } + ], + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "West US", + "East US 2", + "West Europe", + "East US", + "North Europe", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "West US 2", + "Central US", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North" + ], + "apiVersions": [ + "2018-04-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-04-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "DatabrickAuditLogs" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "spearfishgenevahotpath", + "sourceMdmNamespace": "Canary" + } + ] + }, + "logs": { + "logFilterPathSelector": "sku.name", + "mdsInfo": [ + { + "serviceIdentity": "DatabrickAuditLogs", + "onbehalfSupportedLogCategories": [ + "dbfs", + "clusters", + "accounts", + "jobs", + "notebook", + "ssh", + "workspace", + "secrets", + "sqlPermissions", + "tables", + "instancePools" + ] + } + ] + } + } + } + }, + "capabilities": "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", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North" + ], + "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", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North" + ], + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "Korea South", + "Korea Central", + "South Africa North", + "South Africa West", + "Switzerland North", + "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", + "UAE North", + "Brazil South", + "France Central" + ], + "apiVersions": [ + "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", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North" + ], + "apiVersions": [ + "2018-04-01", + "2018-03-15", + "2018-03-01", + "2017-09-01-preview", + "2017-08-01-preview", + "2016-09-01-preview" + ], + "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", + "Korea South", + "South Africa West", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North" + ], + "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", + "Korea South", + "South Africa West", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North" + ], + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationIds": [ + "d9327919-6775-4843-9037-3fb0fb0473cb", + "2ff814a6-3304-4ab8-85cb-cd0e6f879c1d" + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-04-01", + "operations": "2018-03-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "DatabrickAuditLogs" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "spearfishgenevahotpath", + "sourceMdmNamespace": "Canary" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataCatalog", + "namespace": "Microsoft.DataCatalog", + "authorization": { + "applicationId": "213f5f78-fb30-46c7-9e98-91c720a1c026", + "roleDefinitionId": "D55E2225-A6AB-481C-A5BE-1B7687C293FA" + }, + "resourceTypes": [ + { + "resourceType": "catalogs", + "locations": [ + "East US", + "West US", + "Australia East", + "West Europe", + "North Europe", + "Southeast Asia", + "West Central US" + ], + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "West Europe" + ], + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West Europe" + ], + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/jobs", + "locations": [ + "East US", + "West US", + "Australia East", + "West Europe", + "North Europe", + "Southeast Asia", + "West Central US" + ], + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "213f5f78-fb30-46c7-9e98-91c720a1c026" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-12-01-preview", + "operations": "2018-12-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataCatalogGen2" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDataCatalogShoebox", + "sourceMdmNamespace": "ADCAnalytics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataCollaboration", + "namespace": "Microsoft.DataCollaboration", + "authorization": { + "applicationId": "2cc451ba-a8ec-496f-bdff-591f5ae2876c", + "roleDefinitionId": "fdf757e9-19df-4152-a1ae-5e719161cd12" + }, + "resourceTypes": [ + { + "resourceType": "listinvitations", + "locations": [ + "East US", + "Australia East", + "West US 2", + "UK South", + "Southeast Asia", + "East US 2", + "West Europe" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "Australia East" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "East US", + "Australia East", + "Southeast Asia" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/consumerInvitations/reject", + "locations": [ + "East US", + "Australia East", + "West US 2", + "UK South", + "Southeast Asia", + "East US 2", + "West Europe" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/consumerInvitations", + "locations": [ + "East US", + "Australia East", + "West US 2", + "UK South", + "Southeast Asia", + "East US 2", + "West Europe" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Australia East" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "2cc451ba-a8ec-496f-bdff-591f5ae2876c" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-05-04-preview", + "operations": "2020-05-04-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataCollaboration" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDataCollaborationShoebox", + "sourceMdmNamespace": "RP" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataFactory", + "namespace": "Microsoft.DataFactory", + "authorizations": [ + { + "applicationId": "0947a342-ab4a-43be-93b3-b8243fc161e5", + "roleDefinitionId": "f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da" + }, + { + "applicationId": "5d13f7d7-0567-429c-9880-320e9555e5fc", + "roleDefinitionId": "956a8f20-9168-4c71-8e27-3c0460ac39a4" + } + ], + "resourceTypes": [ + { + "resourceType": "dataFactories", + "locations": [ + "West US", + "North Europe", + "East US", + "West Central US" + ], + "apiVersions": [ + "2015-10-01", + "2015-09-01", + "2015-08-01", + "2015-07-01-preview", + "2015-05-01-preview", + "2015-01-01-preview", + "2014-04-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftDatafactory" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "factories", + "locations": [ + "East US", + "East US 2", + "Central US", + "South Central US", + "Japan East", + "Canada Central", + "Australia East", + "Switzerland North", + "Germany West Central", + "Central India", + "France Central", + "Korea Central", + "Brazil South", + "West Europe", + "North Europe", + "UK South", + "West Central US", + "West US", + "West US 2", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-06-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftDatafactory", + "onbehalfSupportedLogCategories": [ + "ActivityRuns", + "PipelineRuns", + "TriggerRuns", + "SandboxPipelineRuns", + "SandboxActivityRuns", + "SSISPackageEventMessages", + "SSISPackageExecutableStatistics", + "SSISPackageEventMessageContext", + "SSISPackageExecutionComponentPhases", + "SSISPackageExecutionDataStatistics", + "SSISIntegrationRuntimeLogs" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "factories/integrationRuntimes", + "locations": [ + "East US", + "East US 2", + "West US 2", + "West US", + "Central US", + "South Central US", + "Japan East", + "Central India", + "Brazil South", + "France Central", + "Korea Central", + "Australia East", + "Switzerland North", + "Germany West Central", + "Canada Central", + "West Central US", + "North Europe", + "UK South", + "West Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "dataFactories/diagnosticSettings", + "locations": [ + "North Europe", + "East US", + "West US", + "West Central US" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "dataFactories/metricDefinitions", + "locations": [ + "North Europe", + "East US", + "West US", + "West Central US" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "checkDataFactoryNameAvailability", + "locations": [], + "apiVersions": [ + "2015-05-01-preview", + "2015-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkAzureDataFactoryNameAvailability", + "locations": [ + "West US", + "North Europe", + "East US", + "West Central US" + ], + "apiVersions": [ + "2015-10-01", + "2015-09-01", + "2015-08-01", + "2015-07-01-preview", + "2015-05-01-preview", + "2015-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "dataFactorySchema", + "locations": [ + "West US", + "North Europe", + "East US", + "West Central US" + ], + "apiVersions": [ + "2015-10-01", + "2015-09-01", + "2015-08-01", + "2015-07-01-preview", + "2015-05-01-preview", + "2015-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US", + "North Europe", + "East US", + "West Central US" + ], + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview", + "2017-03-01-preview", + "2015-10-01", + "2015-09-01", + "2015-08-01", + "2015-07-01-preview", + "2015-05-01-preview", + "2015-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/configureFactoryRepo", + "locations": [ + "East US", + "East US 2", + "West US 2", + "West US", + "Central US", + "South Central US", + "Japan East", + "Australia East", + "Switzerland North", + "Germany West Central", + "Canada Central", + "Central India", + "Brazil South", + "France Central", + "Korea Central", + "West Europe", + "North Europe", + "UK South", + "West Central US", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/getFeatureValue", + "locations": [ + "East US", + "East US 2", + "West Europe", + "North Europe", + "UK South", + "West Central US", + "West US", + "Central US", + "South Central US", + "Japan East", + "Australia East", + "Switzerland North", + "Germany West Central", + "Canada Central", + "Central India", + "Brazil South", + "France Central", + "Korea Central", + "West US 2", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "0947a342-ab4a-43be-93b3-b8243fc161e5" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2015-01-01-preview", + "factories": "2017-09-01-preview", + "operations": "2017-03-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", + "sourceMdmNamespace": "ADFMetrics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataLakeAnalytics", + "namespace": "Microsoft.DataLakeAnalytics", + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "defaultApiVersion": "2016-11-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/dataLakeStoreAccounts", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/storageAccounts", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/storageAccounts/containers", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/storageAccounts/containers/listSasTokens", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capability", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.accountId", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataLake" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureDataLake", + "sourceMdmNamespace": "Microsoft.DataLakeAnalytics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataLake", + "onbehalfSupportedLogCategories": [ + "Audit", + "Requests" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataMigration", + "namespace": "Microsoft.DataMigration", + "authorization": { + "applicationId": "a4bad4aa-bf02-4631-9f78-a64ffdba8150", + "roleDefinitionId": "b831a21d-db98-4760-89cb-bef871952df1", + "managedByRoleDefinitionId": "6256fb55-9e59-4018-a9e1-76b11c0a4c89" + }, + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2018-07-15-preview", + "2018-04-19", + "2018-03-31-preview", + "2018-03-15-preview", + "2017-11-15-privatepreview", + "2017-11-15-preview", + "2017-04-15-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "services", + "locations": [ + "West Central US", + "Brazil South", + "West Europe", + "Australia East", + "East US", + "East US 2", + "Canada Central", + "East Asia", + "Central India", + "West India", + "Japan East", + "Korea South", + "North Central US", + "Australia Southeast", + "Canada East", + "Central US", + "South India", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "UK South", + "West US 2", + "South Africa North", + "UAE North", + "France Central" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + } + ], + "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-01-01", + "2020-01-01-alpha" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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-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-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-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-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "d1e197ea-4f63-403a-93b0-8fa96dfc37f5" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforMariaDB", + "namespace": "Microsoft.DBforMariaDB", + "authorizations": [ + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "servers/recoverableServers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "Central India", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/virtualNetworkRules", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/azureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/performanceTiers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/topQueryStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/queryTexts", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/waitStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/resetQueryPerformanceInsightData", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/advisors", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateLinkResources", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnections", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnectionProxies", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/start", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/stop", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-06-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "AzureDBProduction", + "sourceMdmNamespace": "MicrosoftSqlElasticServers" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "onbehalfSupportedLogCategories": [ + "MySqlSlowLogs", + "MySqlAuditLogs" + ] + } + ] + } + } + }, + "Microsoft.managedIdentity": { + "applicationId": "d4776935-e3c2-491d-b2a1-cb3cd1ec579e" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeploymentManager", + "namespace": "Microsoft.DeploymentManager", + "authorizations": [ + { + "applicationId": "5b306cba-9c71-49db-96c3-d17ca2379c4d" + } + ], + "resourceTypes": [ + { + "resourceType": "artifactSources", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serviceTopologies", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serviceTopologies/services", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serviceTopologies/services/serviceUnits", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "steps", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "rollouts", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operationResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "global" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "5b306cba-9c71-49db-96c3-d17ca2379c4d" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeviceUpdate", + "namespace": "Microsoft.DeviceUpdate", + "authorizations": [ + { + "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78", + "roleDefinitionId": "a7c9caf5-ee6d-4cdd-94e0-917c34a027ec" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-03-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "East US 2 EUAP", + "West US", + "West US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts", + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78" + }, + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/instances", + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-03-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-03-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevOps", + "namespace": "Microsoft.DevOps", + "authorizations": [ + { + "applicationId": "499b84ac-1321-427f-aa17-267ca6975798", + "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8" + }, + { + "applicationId": "4c3095a7-cc8a-4028-8301-c68ea6c2b42e", + "roleDefinitionId": "d637ba3a-8a38-41ec-a9e3-5e4a619e7530" + } + ], + "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" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "deploymentdetails", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevSpaces", + "namespace": "Microsoft.DevSpaces", + "resourceTypes": [ + { + "resourceType": "controllers", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "controllers/listConnectionDetails", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2020-05-01", + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkContainerHostMapping", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "eda7eafb-df85-4c80-a4bc-15a30dd106d5" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevTestLab", + "namespace": "Microsoft.DevTestLab", + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2018-10-15-preview", + "2018-09-15", + "2017-04-26-preview", + "2016-05-15", + "2015-05-21-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Diagnostics", + "namespace": "Microsoft.Diagnostics", + "authorizations": [ + { + "applicationId": "5b534afd-fdc0-4b38-a77f-af25442e3149", + "roleDefinitionId": "27d9fedd-5b4c-44b5-a9da-724fa33445c8" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-07-01-privatepreview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DigitalTwins", + "namespace": "Microsoft.DigitalTwins", + "authorizations": [ + { + "applicationId": "0b07f429-9f4b-4714-9392-cc5e8e80c8b0" + }, + { + "applicationId": "91ff567f-bb4f-4719-91d7-d983057bc0d6", + "roleDefinitionId": "fa0ab6ed-58e5-4f2f-81af-0b9ffc364bdc" + }, + { + "applicationId": "c115998b-3d59-49b4-b55b-042a9ba1dbfe", + "roleDefinitionId": "07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "digitalTwinsInstances", + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-12-01", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "91ff567f-bb4f-4719-91d7-d983057bc0d6" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDigitalTwins" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDigitalTwinsShoebox", + "sourceMdmNamespace": "ShoeboxMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDigitalTwins", + "onbehalfSupportedLogCategories": [ + "DigitalTwinsOperation", + "ModelsOperation", + "EventRoutesOperation", + "QueryOperation" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "digitalTwinsInstances/operationResults", + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, + { + "resourceType": "digitalTwinsInstances/endpoints", + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West Central US" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2020-12-01", + "digitalTwinsInstances": "2020-12-01" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDigitalTwinsShoebox", + "sourceMdmNamespace": "ShoeboxMetrics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EnterpriseKnowledgeGraph", + "namespace": "Microsoft.EnterpriseKnowledgeGraph", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US 2", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2018-12-03" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US 2", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2018-12-03" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US 2", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2018-12-03" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US 2", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2018-12-03" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2018-12-03" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.EnterpriseKnowledgeGraph" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestUS2", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxNorthEurope", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestEurope", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS2", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxSoutheastAsia", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestUS2", + "sourceMdmNamespace": "Tool" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxNorthEurope", + "sourceMdmNamespace": "Tool" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestEurope", + "sourceMdmNamespace": "Tool" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS", + "sourceMdmNamespace": "Tool" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS2", + "sourceMdmNamespace": "Tool" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxSoutheastAsia", + "sourceMdmNamespace": "Tool" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.EnterpriseKnowledgeGraph", + "onbehalfSupportedLogCategories": [ + "AuditEvent", + "DataIssue", + "Configuration" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Experimentation", + "namespace": "Microsoft.Experimentation", + "authorizations": [ + { + "applicationId": "e00d2f8a-f6c8-46e4-b379-e66082e28ca8", + "roleDefinitionId": "d3a360d9-17f9-410e-9465-5c914c8cf570", + "managedByRoleDefinitionId": "fa096ccd-4e8f-49de-9594-64449b3ac6b3" + }, + { + "applicationId": "b998f6f8-79d0-4b6a-8c25-5791dbe49ad0", + "roleDefinitionId": "69e94dda-0a4a-440b-b24e-21880bdd5174" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2019-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2019-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2019-11-01-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ExtendedLocation", + "namespace": "Microsoft.ExtendedLocation", + "authorizations": [ + { + "applicationId": "bc313c14-388c-4e7d-a58e-70017303ee3b", + "roleDefinitionId": "a775b938-2819-4dd0-8067-01f6e3b06392" + }, + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "0981f4e0-04a7-4e31-bd2b-b2ac2fc6ba4e" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-07-15-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "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.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": [ + "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": [ + "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": [ + "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": [ + "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": [ + "West US", + "West US 2", + "East US", + "East US 2", + "West Europe", + "North Europe", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Southeast Asia", + "South Central US", + "UK South" + ], + "apiVersions": [ + "2017-11-03-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HealthBot", + "namespace": "Microsoft.HealthBot", + "authorizations": [ + { + "applicationId": "6db4d6bb-6649-4dc2-84b7-0b5c6894031e", + "roleDefinitionId": "d42334cd-b979-4a22-accc-650d0d157676" + } + ], + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-12-08" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-12-08" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-12-08" + ], + "capabilities": "None" + }, + { + "resourceType": "healthBots", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-12-08" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HealthcareApis", + "namespace": "Microsoft.HealthcareApis", + "authorizations": [ + { + "applicationId": "4f6778d8-5aef-43dc-a1ff-b073724b9495" + }, + { + "applicationId": "3274406e-4e0a-4852-ba4f-d7226630abb7", + "roleDefinitionId": "e39edba5-cde8-4529-ba1f-159138220220" + }, + { + "applicationId": "894b1496-c6e0-4001-b69c-81b327564ca4", + "roleDefinitionId": "c69c1f48-8535-41e7-9667-539790b1c663" + }, + { + "applicationId": "75e725bf-66ce-4cea-9b9a-5c4caae57f33" + } + ], + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-09-16", + "operations": "2019-09-16" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.HealthcareApis", + "onbehalfSupportedLogCategories": [ + "AuditLogs" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "services/privateEndpointConnectionProxies", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "services/privateEndpointConnections", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "services/privateLinkResources", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "services/iomtconnectors", + "locations": [ + "West US 2", + "UK South", + "East US 2", + "UK West", + "North Central US", + "Australia East", + "Southeast Asia", + "East US", + "West Europe", + "South Central US", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "services/iomtconnectors/connections", + "locations": [ + "West US 2", + "UK South", + "East US 2", + "UK West", + "North Central US", + "Australia East", + "Southeast Asia", + "East US", + "West Europe", + "South Central US", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "services/iomtconnectors/mappings", + "locations": [ + "West US 2", + "UK South", + "East US 2", + "UK West", + "North Central US", + "Australia East", + "Southeast Asia", + "East US", + "West Europe", + "South Central US", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2021-01-11", + "2020-05-01-preview", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-09-16", + "operations": "2019-09-16" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.HealthcareApis" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftHealthcareApisShoebox", + "sourceMdmNamespace": "Shoebox2" + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "53af30df-f192-4c0e-8092-9bd45604aedd" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridCompute", + "namespace": "Microsoft.HybridCompute", + "authorizations": [ + { + "applicationId": "8c420feb-03df-47cc-8a05-55df0cf3064b", + "roleDefinitionId": "83eeb1c6-47f8-4da2-bbc3-42a7ac767360" + }, + { + "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1", + "roleDefinitionId": "f32ad452-2b05-4296-bee4-fc9056ed85fa" + } + ], + "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", + "UK South" + ], + "apiVersions": [ + "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", + "UK South" + ], + "apiVersions": [ + "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-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", + "UK South" + ], + "apiVersions": [ + "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", + "UK South" + ], + "apiVersions": [ + "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-01-28-preview", + "2020-08-15-preview", + "2020-08-02", + "2020-07-30-preview", + "2020-03-11-preview", + "2019-12-12", + "2019-08-02-preview", + "2019-03-18-preview" + ], + "defaultApiVersion": "2020-08-02", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "eec53b1f-b9a4-4479-acf5-6b247c6a49f2" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridData", + "namespace": "Microsoft.HybridData", + "authorization": { + "applicationId": "621269cf-1195-44a3-a835-c613d103dd15", + "roleDefinitionId": "00320cd4-8823-47f2-bbe4-5c9da031311d" + }, + "resourceTypes": [ + { + "resourceType": "dataManagers", + "locations": [ + "West US", + "North Europe", + "West Europe", + "East US", + "West US 2", + "West Central US", + "Southeast Asia" + ], + "apiVersions": [ + "2019-06-01", + "2016-06-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-06-01", + "2016-06-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridNetwork", + "namespace": "Microsoft.HybridNetwork", + "authorizations": [ + { + "applicationId": "b8ed041c-aa91-418e-8f47-20c70abc2de1", + "roleDefinitionId": "b193432e-9b7e-4885-b2c0-052afdceace3" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-01-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US 2 EUAP", + "West Central US", + "West Europe", + "East US" + ], + "apiVersions": [ + "2020-01-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ImportExport", + "namespace": "Microsoft.ImportExport", + "authorization": { + "applicationId": "7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a", + "roleDefinitionId": "9f7aa6bb-9454-46b6-8c01-a4b0f33ca151" + }, + "resourceTypes": [ + { + "resourceType": "jobs", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-08-01", + "2016-11-01", + "2016-07-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2016-11-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-08-01", + "2016-11-01", + "2016-07-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2016-11-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-08-01", + "2016-11-01", + "2016-07-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2016-11-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-08-01", + "2016-11-01", + "2016-07-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2016-11-01" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IndustryDataLifecycle", + "namespace": "Microsoft.IndustryDataLifecycle", + "authorizations": [ + { + "applicationId": "3072002f-3e97-4979-91f2-09fe40da755d", + "roleDefinitionId": "23694dec-6164-410e-b12d-691a3c92ae59" + } + ], + "resourceTypes": [ + { + "resourceType": "custodianCollaboratives/termsOfUseDocuments", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "defaultApiVersion": "2020-01-12-preview", + "capabilities": "None" + }, + { + "resourceType": "custodianCollaboratives/collaborativeImage", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "defaultApiVersion": "2020-01-12-preview", + "capabilities": "None" + }, + { + "resourceType": "custodianCollaboratives/invitations", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "custodianCollaboratives/invitations/termsOfUseDocuments", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "memberCollaboratives", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "defaultApiVersion": "2020-01-12-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "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/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": [ + "2020-01-12-preview" + ], + "defaultApiVersion": "2020-01-12-preview", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-01-12-preview", + "operations": "2020-01-12-preview" + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "3072002f-3e97-4979-91f2-09fe40da755d" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IntelligentITDigitalTwin", + "namespace": "Microsoft.IntelligentITDigitalTwin", + "authorizations": [ + { + "applicationId": "dfbed8b2-492a-414e-b2f0-482534e87bc5", + "roleDefinitionId": "0922588a-ac0c-4eb6-8d8f-afbeb8edf466" + } + ], + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-12-01-privatepreview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IoTCentral", + "namespace": "Microsoft.IoTCentral", + "authorizations": [ + { + "applicationId": "9edfcdd9-0bc5-4bd4-b287-c3afc716aac7" + } + ], + "resourceTypes": [ + { + "resourceType": "IoTApps", + "locations": [ + "West Europe", + "West US", + "East US 2", + "North Europe", + "East US", + "Central US", + "West Central US", + "Australia", + "Asia Pacific", + "Europe", + "Japan", + "UK", + "United States" + ], + "apiVersions": [ + "2018-09-01", + "2017-07-01-privatepreview" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2018-09-01", + "2017-07-01-privatepreview" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "checkSubdomainAvailability", + "locations": [], + "apiVersions": [ + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-09-01", + "2017-07-01-privatepreview" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "appTemplates", + "locations": [], + "apiVersions": [ + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-09-01", + "operations": "2018-09-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.IoTCentral" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "MicrosoftIotSaasShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "regionLess": true + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IoTSecurity", + "namespace": "Microsoft.IoTSecurity", + "authorizations": [ + { + "applicationId": "cfbd4387-1a16-4945-83c0-ec10e46cd4da", + "roleDefinitionId": "d5d6ff70-e29a-4cec-b30b-4bd7ebcdcbaa" + } + ], + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "defenderSettings", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "description": "Microsoft Defender for IoT Manifest" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Kubernetes", + "namespace": "Microsoft.Kubernetes", + "authorizations": [ + { + "applicationId": "64b12d6e-6549-484c-8cc6-6281839ba394", + "roleDefinitionId": "1d1d44cf-68a1-4def-a2b6-cd7efc3515af" + }, + { + "applicationId": "359431ad-ece5-496b-8768-be4bbfd82f36", + "roleDefinitionId": "1b5c71b7-9814-4b40-b62a-23018af874d8" + }, + { + "applicationId": "0000dab9-8b21-4ba2-807f-1743968cef00", + "roleDefinitionId": "1b5c71b7-9814-4b40-b62a-23018af874d8" + }, + { + "applicationId": "8edd93e1-2103-40b4-bd70-6e34e586362d", + "roleDefinitionId": "eb67887a-31e8-4e4e-bf5b-14ff79351a6f" + } + ], + "resourceTypes": [ + { + "resourceType": "connectedClusters", + "locations": [ + "West Europe", + "East US", + "West Central US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 2", + "Australia East", + "North Europe" + ], + "apiVersions": [ + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "de742ffc-b441-4542-8646-7e805426b824" + } + }, + "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" + ], + "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" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "de742ffc-b441-4542-8646-7e805426b824" + }, + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.KubernetesConfiguration", + "namespace": "Microsoft.KubernetesConfiguration", + "authorizations": [ + { + "applicationId": "c699bf69-fb1d-4eaf-999b-99e6b2ae4d85", + "roleDefinitionId": "90155430-a360-410f-af5d-89dc284d85c6" + }, + { + "applicationId": "03db181c-e9d3-4868-9097-f0b728327182", + "roleDefinitionId": "DE2ADB97-42D8-49C8-8FCF-DBB53EF936AC" + }, + { + "applicationId": "a0f92522-89de-4c5e-9a75-0044ccf66efd", + "roleDefinitionId": "b3429810-7d5c-420e-8605-cf280f3099f2" + } + ], + "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" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview", + "2020-07-01-preview", + "2019-11-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview", + "2020-07-01-preview", + "2019-11-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "03b7be2d-167c-44b4-b5c4-f00f5e60e5d7" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Kusto", + "namespace": "Microsoft.Kusto", + "authorizations": [ + { + "applicationId": "2746ea77-4702-4b45-80ca-3c97e680e8b7", + "roleDefinitionId": "dd9d4347-f397-45f2-b538-85f21c90037c" + } + ], + "resourceTypes": [ + { + "resourceType": "clusters", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "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-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" + ] + } + ], + "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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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": [ + "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", + "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-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": [ + "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" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "2746ea77-4702-4b45-80ca-3c97e680e8b7" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-05-15", + "operations": "2019-05-15" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Kusto" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "Kusto", + "sourceMdmNamespace": "MdmEngineMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Kusto", + "onbehalfSupportedLogCategories": [ + "SucceededIngestion", + "FailedIngestion", + "IngestionBatching", + "Command", + "Query", + "TableUsageStatistics", + "TableDetails" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.LabServices", + "namespace": "Microsoft.LabServices", + "authorization": { + "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f", + "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525", + "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525" + }, + "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": [], + "apiVersions": [ + "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": [ + "2019-01-01-preview", + "2018-10-15", + "2017-12-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.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": "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-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": "2018-03-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "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-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/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-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-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-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-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-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-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-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-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-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/linkedServices", + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US" + ], + "apiVersions": [ + "2020-09-01-preview", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity" + }, + { + "resourceType": "workspaces/labelingJobs", + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US" + ], + "apiVersions": [ + "2021-03-01-preview", + "2020-09-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-11-19", + "operations": "2018-11-19" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ViennaAzureMonitor", + "sourceMdmNamespace": "vienna" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices", + "onbehalfSupportedLogCategories": [ + "AmlComputeJobEvent", + "AmlComputeClusterNodeEvent", + "AmlComputeClusterEvent", + "AmlComputeCpuGpuUtilization", + "AmlRunStatusChangedEvent" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Maintenance", + "namespace": "Microsoft.Maintenance", + "authorization": { + "applicationId": "f18474f2-a66a-4bb0-a3c9-9b8d892092fa", + "roleDefinitionId": "2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5" + }, + "resourceTypes": [ + { + "resourceType": "maintenanceConfigurations", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "South Africa North", + "South Africa West", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West" + ], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2020-07-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.maintenance": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-01-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzDeployer" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzDeployer", + "sourceMdmNamespace": "LogMetric" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzDeployer", + "onbehalfSupportedLogCategories": [ + "error", + "warning", + "AuditEvents" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ManagedServices", + "namespace": "Microsoft.ManagedServices", + "authorization": { + "applicationId": "66c6d0d1-f2e7-4a18-97a9-ed10f3347016", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + }, + "resourceTypes": [ + { + "resourceType": "registrationDefinitions", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "registrationAssignments", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "marketplaceRegistrationDefinitions", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operationStatuses", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Management", + "namespace": "Microsoft.Management", + "authorization": { + "applicationId": "f2c304cf-8e7e-4c3f-8164-16299ad9d272", + "roleDefinitionId": "c1cf3708-588a-4647-be7f-f400bbe214cf" + }, + "resourceTypes": [ + { + "resourceType": "resources", + "locations": [], + "apiVersions": [ + "2017-11-01-preview", + "2017-08-31-preview", + "2017-06-30-preview", + "2017-05-31-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managementGroups", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2019-11-01", + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "Global", + "West US 2", + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-02-01-preview", + "2018-05-01", + "2017-01-01-preview" + ], + "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/eventGridFilters", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2018-05-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2018-05-01", + "2017-01-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-05-01", + "operations": "2018-05-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLocationBasedServices" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftLocationBasedServicesShoebox", + "sourceMdmNamespace": "ServiceOperations" + } + ] + }, + "regionless": true + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Marketplace", + "namespace": "Microsoft.Marketplace", + "authorizations": [ + { + "applicationId": "a0e1e353-1a3e-42cf-a8ea-3a9746eec58c" + }, + { + "applicationId": "87df0fbf-e22d-4d7c-bc30-f59ca7460837" + }, + { + "applicationId": "a5ce81bb-67c7-4043-952a-22004782adb5" + } + ], + "resourceTypes": [ + { + "resourceType": "register", + "locations": [], + "apiVersions": [ + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privategalleryitems", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "products", + "locations": [], + "apiVersions": [ + "2018-08-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offers", + "locations": [], + "apiVersions": [ + "2018-08-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "macc", + "locations": [], + "apiVersions": [ + "2018-08-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers/offers", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers/offers/plans", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers/offers/plans/configs", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers/offers/plans/configs/importImage", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers/offers/plans/agreements", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "listAvailableOffers", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "publishers", + "locations": [], + "apiVersions": [ + "2019-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "publishers/offers", + "locations": [], + "apiVersions": [ + "2019-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "publishers/offers/amendments", + "locations": [], + "apiVersions": [ + "2019-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStoreClient", + "locations": [], + "apiVersions": [ + "2018-08-01-beta", + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores", + "locations": [], + "apiVersions": [ + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/offers", + "locations": [], + "apiVersions": [ + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/requestApprovals/query", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/requestApprovals/withdrawPlan", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/RequestApprovals", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/queryNotificationsState", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/offers/acknowledgeNotification", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/AdminRequestApprovals", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MarketplaceApps", + "namespace": "Microsoft.MarketplaceApps", + "resourceTypes": [ + { + "resourceType": "classicDevServices", + "locations": [ + "Northwest US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "Canada Central", + "Canada East" + ], + "apiVersions": [ + "2017-11-01" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2017-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2017-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2017-11-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MarketplaceOrdering", + "namespace": "Microsoft.MarketplaceOrdering", + "resourceTypes": [ + { + "resourceType": "agreements", + "locations": [ + "South Central US", + "West US" + ], + "apiVersions": [ + "2021-01-01", + "2015-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-01-01", + "2015-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "offertypes", + "locations": [ + "South Central US", + "West US" + ], + "apiVersions": [ + "2021-01-01", + "2015-06-01" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Migrate", + "namespace": "Microsoft.Migrate", + "authorizations": [ + { + "applicationId": "e3bfd6ac-eace-4438-9dc1-eed439e738de", + "roleDefinitionId": "e88f4159-1d71-4b12-8ef0-38c039cb051e" + }, + { + "applicationId": "51df634f-ddb4-4901-8a2d-52f6393a796b", + "roleDefinitionId": "d7568dc2-2265-41f7-9c0f-1e9c7862ca62" + } + ], + "resourceTypes": [ + { + "resourceType": "projects", + "locations": [ + "West Central US", + "East US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia" + ], + "apiVersions": [ + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrateprojects", + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "North Europe", + "West Europe", + "West US 2", + "Australia Southeast", + "UK South", + "UK West", + "Canada Central", + "Central India", + "South India", + "Japan East", + "Japan West", + "Brazil South", + "Korea South", + "Korea Central", + "France Central", + "Switzerland North", + "Australia East" + ], + "apiVersions": [ + "2020-06-01-preview", + "2020-05-01", + "2019-06-01", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "e3bfd6ac-eace-4438-9dc1-eed439e738de" + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "assessmentProjects", + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East" + ], + "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": "2019-10-01-preview", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "c1044a71-fd4a-42f0-9ba3-bd810cae7cb3" + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "West Central US" + ], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2018-06-30-preview", + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "West Central US", + "East US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia" + ], + "apiVersions": [ + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/assessmentOptions", + "locations": [ + "West Central US", + "East US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia" + ], + "apiVersions": [ + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/rmsOperationResults", + "locations": [ + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "Japan East" + ], + "apiVersions": [ + "2021-01-01", + "2019-10-01-preview" + ], + "defaultApiVersion": "2019-10-01-preview", + "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" + ], + "apiVersions": [ + "2021-03-01-preview", + "2021-01-01", + "2020-05-01", + "2019-12-02-preview", + "2019-02-28-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-05-01", + "operations": "2020-05-01" + }, + "mdsMappingResourceIdOverridePathSelector": "", + "metrics": { + "metricsFilterPathSelector": "", + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MixedReality" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "SpatialAnchorsShoebox", + "sourceMdmNamespace": "SACustomer" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "remoteRenderingAccounts", + "locations": [ + "East US 2", + "East US", + "Southeast Asia", + "West Europe", + "West US 2", + "Japan East", + "Australia East", + "North Europe", + "South Central US", + "UK South" + ], + "apiVersions": [ + "2021-03-01-preview", + "2021-01-01", + "2020-04-06-preview", + "2019-12-02-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-04-06-preview", + "operations": "2020-04-06-preview" + }, + "mdsMappingResourceIdOverridePathSelector": "", + "metrics": { + "metricsFilterPathSelector": "", + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MixedReality" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "RemoteRenderingShoebox", + "sourceMdmNamespace": "RRCustomer" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "objectAnchorsAccounts", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-02-28-preview", + "operations": "2019-02-28-preview" + }, + "mdsMappingResourceIdOverridePathSelector": "", + "metrics": { + "metricsFilterPathSelector": "", + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MixedReality" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "DefaultShoebox", + "sourceMdmNamespace": "DefaultCustomer" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MobileNetwork", + "namespace": "Microsoft.MobileNetwork", + "authorizations": [ + { + "applicationId": "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" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.NetApp", + "namespace": "Microsoft.NetApp", + "authorizations": [ + { + "applicationId": "12fb057d-b751-47cd-857c-f2934bb677b4", + "roleDefinitionId": "e4796bef-6b6d-4cbc-ba1e-27f1a308d860" + }, + { + "applicationId": "608f9929-9737-432e-860f-4e1c1821052f", + "roleDefinitionId": "3db66429-be98-4b0c-8ad6-20dc5cb960e4" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East US", + "East US 2", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "North Europe", + "Norway East", + "Norway West", + "South Central US", + "South India", + "Southeast Asia", + "UAE Central", + "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": [ + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "12fb057d-b751-47cd-857c-f2934bb677b4" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-08-15", + "operations": "2017-08-15" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.NetApp" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftNetAppShoebox2", + "sourceMdmNamespace": "NetAppUsageAndMetrics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ObjectStore", + "namespace": "Microsoft.ObjectStore", + "resourceTypes": [ + { + "resourceType": "osNamespaces", + "locations": [ + "West US" + ], + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OffAzure", + "namespace": "Microsoft.OffAzure", + "authorizations": [ + { + "applicationId": "728a93e3-065d-4678-93b1-3cc281223341", + "roleDefinitionId": "b9967bf7-a345-4af8-95f0-49916f760fc6" + } + ], + "resourceTypes": [ + { + "resourceType": "VMwareSites", + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "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" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Peering", + "namespace": "Microsoft.Peering", + "resourceTypes": [ + { + "resourceType": "peerings", + "locations": [ + "Japan East", + "Japan West", + "Korea Central", + "East Asia", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Southeast Asia", + "West India", + "South India", + "East US", + "East US 2", + "North Central US", + "South Central US", + "Canada Central", + "West US", + "West US 2", + "West Central US", + "Canada East", + "West Europe", + "UK South", + "UK West", + "North Europe", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2020-10-01", + "2020-04-01", + "2020-01-01-preview" + ], + "defaultApiVersion": "2020-04-01", + "capabilities": "None" + }, + { + "resourceType": "peeringServiceLocations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": "operations", + "locations": [], + "apiVersions": [ + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "defaultApiVersion": "2020-04-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-04-01", + "operations": "2020-04-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftPeering" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftPeeringShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerBI", + "namespace": "Microsoft.PowerBI", + "authorizations": [ + { + "applicationId": "00000009-0000-0000-c000-000000000000", + "roleDefinitionId": "d2079c0c-4a98-48b1-b511-eae3fc2003ab" + } + ], + "resourceTypes": [ + { + "resourceType": "workspaceCollections", + "locations": [ + "South Central US", + "North Central US", + "East US 2", + "West US", + "West Europe", + "North Europe", + "Brazil South", + "Southeast Asia", + "Australia Southeast", + "Canada Central", + "Japan East", + "UK South", + "West India" + ], + "apiVersions": [ + "2016-01-29" + ], + "defaultApiVersion": "2016-01-29", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2016-01-29" + ], + "defaultApiVersion": "2016-01-29", + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "South Central US", + "North Central US", + "East US 2", + "West US", + "West Europe", + "North Europe", + "Brazil South", + "Southeast Asia", + "Australia Southeast", + "Canada Central", + "Japan East", + "UK South", + "West India" + ], + "apiVersions": [ + "2016-01-29" + ], + "defaultApiVersion": "2016-01-29", + "capabilities": "None" + }, + { + "resourceType": "privateLinkServicesForPowerBI", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateLinkServicesForPowerBI/operationResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2020-06-01", + "2016-01-29" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-01-29", + "operations": "2016-01-29" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "PBIDedicatedRP", + "onbehalfSupportedLogCategories": [ + "Engine" + ] + } + ], + "regionless": true + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerBIDedicated", + "namespace": "Microsoft.PowerBIDedicated", + "authorizations": [ + { + "applicationId": "4ac7d521-0382-477b-b0f8-7e1d95f85ca2", + "roleDefinitionId": "490d5987-bcf6-4be6-b6b2-056a78cb693a" + }, + { + "applicationId": "cb4dc29f-0bf4-402a-8b30-7511498ed654", + "roleDefinitionId": "e03b0682-208e-4ddd-841f-66fb49a5c930" + } + ], + "resourceTypes": [ + { + "resourceType": "capacities", + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "South Africa North", + "Switzerland North", + "Switzerland West", + "Canada East", + "South Africa West", + "UK West", + "Central US", + "Central India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "defaultApiVersion": "2017-01-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "autoScaleVCores", + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "South Africa North", + "Switzerland North", + "Switzerland West", + "Canada East", + "South Africa West", + "UK West", + "Central US", + "Central India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-01-01" + ], + "defaultApiVersion": "2021-01-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2017-01-01-preview" + ], + "defaultApiVersion": "2017-01-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "Switzerland North", + "Switzerland West", + "Canada East", + "UK West", + "Central US", + "Central India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South Africa West", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "defaultApiVersion": "2017-01-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "Switzerland North", + "Switzerland West", + "Canada East", + "UK West", + "Central US", + "Central India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "South Africa North", + "South Africa West", + "West US 2" + ], + "apiVersions": [ + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "defaultApiVersion": "2017-01-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "Switzerland North", + "Switzerland West", + "Canada East", + "UK West", + "Central US", + "Central India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "defaultApiVersion": "2017-01-01-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-01-01-preview" + }, + "metrics": { + "metricsFilterPathSelector": "sku.name", + "mdmInfo": [ + { + "sourceMdmAccount": "PBIDedicated", + "sourceMdmNamespace": "SystemCounters" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "PBIDedicatedRP" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "PBIDedicatedRP", + "onbehalfSupportedLogCategories": [ + "Engine" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerPlatform", + "namespace": "Microsoft.PowerPlatform", + "authorization": { + "applicationId": "e64bd61e-5424-451f-b666-e02ee2878437", + "roleDefinitionId": "51598b27-f396-476b-b212-90d7da526159" + }, + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-10-30", + "2020-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "enterprisePolicies", + "locations": [], + "apiVersions": [ + "2020-10-30" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ProjectBabylon", + "namespace": "Microsoft.ProjectBabylon", + "authorizations": [ + { + "applicationId": "73c2949e-da2d-457a-9607-fcc665198967", + "roleDefinitionId": "1BC09725-0C9B-4F57-A3D0-FCCF4EB40120", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2019-10-01-preview" + ], + "defaultApiVersion": "2019-10-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "73c2949e-da2d-457a-9607-fcc665198967" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-10-01-preview", + "operations": "2019-10-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "ProjectBabylon" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftProjectBabylonShoebox", + "sourceMdmNamespace": "CatalogAnalytics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ProviderHub", + "namespace": "Microsoft.ProviderHub", + "resourceTypes": [ + { + "resourceType": "providerRegistrations", + "locations": [], + "apiVersions": [ + "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": [ + "2020-11-20", + "2020-06-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "providerRegistrations/resourceTypeRegistrations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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", + "East US 2" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-12-01-preview", + "operations": "2020-12-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "ProjectBabylon" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftAzurePurviewShoebox", + "sourceMdmNamespace": "CatalogAnalytics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "ProjectBabylon", + "onbehalfSupportedLogCategories": [ + "ScanStatusLogEvent" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "setDefaultAccount", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "capabilities": "None" + }, + { + "resourceType": "removeDefaultAccount", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "capabilities": "None" + }, + { + "resourceType": "getDefaultAccount", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Brazil South", + "Canada Central", + "South Central US", + "Central India", + "East US 2" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "73c2949e-da2d-457a-9607-fcc665198967" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-12-01-preview", + "operations": "2020-12-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "ProjectBabylon" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftAzurePurviewShoebox", + "sourceMdmNamespace": "CatalogAnalytics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Quantum", + "namespace": "Microsoft.Quantum", + "authorizations": [ + { + "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc", + "roleDefinitionId": "915bd376-2da8-411d-9906-895a54086a66" + } + ], + "resourceTypes": [ + { + "resourceType": "Workspaces", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "West Central US" + ], + "apiVersions": [ + "2019-11-04-preview" + ], + "defaultApiVersion": "2019-11-04-preview", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc" + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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" + ], + "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" + ], + "apiVersions": [ + "2019-11-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/checkNameAvailability", + "locations": [], + "apiVersions": [ + "2019-11-04-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc" + }, + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.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" + ], + "apiVersions": [ + "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-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": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2018-12-20-preview" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2018-07-10" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-07-10" + } + ], + "capabilities": "SupportsExtension" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-08-10", + "operations": "2016-08-10" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureRecoveryServices" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureRecoveryServices", + "onbehalfSupportedLogCategories": [ + "AzureBackupReport", + "CoreAzureBackup", + "AddonAzureBackupJobs", + "AddonAzureBackupAlerts", + "AddonAzureBackupPolicy", + "AddonAzureBackupStorage", + "AddonAzureBackupProtectedInstance", + "AzureSiteRecoveryJobs", + "AzureSiteRecoveryEvents", + "AzureSiteRecoveryReplicatedItems", + "AzureSiteRecoveryReplicationStats", + "AzureSiteRecoveryRecoveryPoints", + "AzureSiteRecoveryReplicationDataUploadRate", + "AzureSiteRecoveryProtectedDiskDataChurn" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "56d7070a-0115-4bfe-8398-033c18db3871" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RedHatOpenShift", + "namespace": "Microsoft.RedHatOpenShift", + "authorizations": [ + { + "applicationId": "f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875", + "roleDefinitionId": "640c5ac9-6f32-4891-94f4-d20f7aa9a7e6", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "managedByAuthorization": { + "allowManagedByInheritance": true + } + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-04-30", + "2019-12-31-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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", + "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", + "Southeast Asia", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US 2", + "West US" + ], + "apiVersions": [ + "2020-04-30" + ], + "defaultApiVersion": "2020-04-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-04-30", + "2019-12-31-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceConnector", + "namespace": "Microsoft.ResourceConnector", + "authorizations": [ + { + "applicationId": "585fc3c3-9a59-4720-8319-53cce041a605", + "roleDefinitionId": "008e7b93-7712-4d05-83ce-a9fcc80300e9" + }, + { + "applicationId": "d22ea4d1-2678-4a7b-aa5e-f340c2a7d993", + "roleDefinitionId": "7c812eee-67c9-4a05-a1b1-c0ac88fd1067" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-09-15-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-02-01", + "2020-07-15-privatepreview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "e0a56fdf-acc9-427b-b9f2-763bb3e8724e" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceGraph", + "namespace": "Microsoft.ResourceGraph", + "authorization": { + "applicationId": "509e4652-da8d-478d-a730-e9d4a1996ca4" + }, + "resourceTypes": [ + { + "resourceType": "resources", + "locations": [ + "East US" + ], + "apiVersions": [ + "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": [ + "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" + ], + "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" + ], + "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": [ + "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": [ + "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", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "Central India", + "South India", + "Japan East", + "Korea Central", + "North Europe", + "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", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "Central India", + "South India", + "Japan East", + "Korea Central", + "North Europe", + "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", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "Central India", + "South India", + "Japan East", + "Korea Central", + "North Europe", + "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": [ + "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": [ + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "endpoints": { + "galleryEndpoint": "https://gallery.azure.com", + "graphEndpoint": "https://graph.windows.net/", + "portalEndpoint": "https://portal.azure.com", + "graphAudience": "https://graph.windows.net/", + "authentication": { + "loginEndpoint": "https://login.windows.net", + "audiences": [ + "https://management.core.windows.net/", + "https://management.azure.com/" + ], + "tenant": "common", + "identityProvider": "AAD" + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "3b990c8b-9607-4c2a-8b04-1d41985facca" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SaaS", + "namespace": "Microsoft.SaaS", + "authorizations": [ + { + "applicationId": "f738ef14-47dc-4564-b53b-45069484ccc7", + "roleDefinitionId": "b131dd2d-387a-4cae-bb9b-3d021f80d1e6" + }, + { + "applicationId": "20e940b3-4c77-4b0b-9a53-9e16a1b010a7" + } + ], + "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": "checkModernEligibility", + "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.ScVmm", + "namespace": "Microsoft.ScVmm", + "authorizations": [ + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "4fe6d683-8411-4247-8525-b6b5b8a80669" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-06-05-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "West US 2", + "East US 2 EUAP", + "West Europe" + ], + "apiVersions": [ + "2020-06-05-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-06-05-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Search", + "namespace": "Microsoft.Search", + "authorization": { + "applicationId": "408992c7-2af6-4ff1-92e3-65b73d2b5092", + "roleDefinitionId": "20FA3191-87CF-4C3D-9510-74CCB594A310" + }, + "resourceTypes": [ + { + "resourceType": "searchServices", + "locations": [ + "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": [ + "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": [ + "2020-08-01-Preview", + "2020-08-01", + "2020-03-13", + "2019-10-01-Preview", + "2015-08-19" + ], + "capabilities": "None" + }, + { + "resourceType": "resourceHealthMetadata", + "locations": [ + "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": [ + "2020-08-01-Preview", + "2020-08-01", + "2020-03-13", + "2019-10-01-Preview", + "2015-08-19" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-01-Preview", + "2020-08-01", + "2020-03-13", + "2019-10-01-Preview", + "2015-08-19", + "2015-02-28" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "7a9069fc-325f-43a6-a3b2-2bd000d8cc08" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureSearch" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "azsearchshoeboxprod", + "sourceMdmNamespace": "Microsoft.Search" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureSearch", + "onbehalfSupportedLogCategories": [ + "OperationLogs" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SecurityDetonation", + "namespace": "Microsoft.SecurityDetonation", + "authorizations": [ + { + "applicationId": "29820072-374d-49b8-945a-3941d7e9b468", + "roleDefinitionId": "4ddf1807-30b0-464a-9d16-a8822daf866b" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Australia Southeast", + "Australia Central 2", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "South Africa West", + "UAE Central", + "Switzerland West", + "Germany North", + "Norway West" + ], + "apiVersions": [ + "2020-07-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-07-01-preview", + "operations": "2020-07-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.SecurityDetonation" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSecurityDetonationShoeboxCentralUS", + "sourceMdmNamespace": "DaaSRPProd" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SecurityInsights", + "namespace": "Microsoft.SecurityInsights", + "authorizations": [ + { + "applicationId": "98785600-1bb7-4fb9-b9fa-19afe2c8a360", + "roleDefinitionId": "ef1c46aa-ae81-4091-ab83-f75f28efb7b8" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "watchlists", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West" + ], + "apiVersions": [ + "2019-01-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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "managedclusters/nodetypes", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedclusters/applicationTypes", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedclusters/applicationTypes/versions", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedclusters/applications", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedclusters/applications/services", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/managedClusterOperations", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/managedClusterOperationResults", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "74cb6831-0dbb-4be1-8206-fd4df301cdc2" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceFabricMesh", + "namespace": "Microsoft.ServiceFabricMesh", + "authorizations": [ + { + "applicationId": "d10de03d-5ba3-497a-90e6-7ff8c9736059", + "roleDefinitionId": "BC13595A-E262-4621-929E-56FF90E6BF18" + } + ], + "resourceTypes": [ + { + "resourceType": "applications", + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-09-01-preview", + "operations": "2018-09-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.ServiceFabricMesh" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftServiceFabricMeshShoebox", + "sourceMdmNamespace": "SFMeshProd" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "networks", + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "d10de03d-5ba3-497a-90e6-7ff8c9736059" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-09-01-preview", + "operations": "2018-09-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.ServiceFabricMesh" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftServiceFabricMeshShoebox", + "sourceMdmNamespace": "SFMeshProd" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServicesHub", + "namespace": "Microsoft.ServicesHub", + "authorizations": [ + { + "applicationId": "9ed4cd8c-9a98-405f-966b-38ab1b0c24a3" + } + ], + "resourceTypes": [ + { + "resourceType": "connectors", + "locations": [ + "Australia East", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "Southeast Asia", + "South Central US", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2019-08-15-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "supportOfferingEntitlement", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Singularity", + "namespace": "Microsoft.Singularity", + "authorizations": [ + { + "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + } + ], + "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": "None" + }, + { + "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 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", + "East US" + ], + "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 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", + "East US" + ], + "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 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", + "East US" + ], + "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 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", + "East US", + "South Central US" + ], + "apiVersions": [ + "2020-12-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3" + } + }, + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01", + "2016-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "f7da168b-7d8a-4c9d-a1fa-5daaf05e32c2" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SqlVirtualMachine", + "namespace": "Microsoft.SqlVirtualMachine", + "authorizations": [ + { + "applicationId": "bd93b475-f9e2-476e-963d-b2daf143ffb9", + "roleDefinitionId": "f96bd990-ffdf-4c17-8ee3-77454d9c3f5d" + } + ], + "resourceTypes": [ + { + "resourceType": "SqlVirtualMachineGroups", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2017-03-01-preview" + ], + "defaultApiVersion": "2017-03-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "ProviderDescrption": "Provisions and maintains always on clusters for Sql VMs" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StorageCache", + "namespace": "Microsoft.StorageCache", + "authorizations": [ + { + "applicationId": "4392ab71-2ce2-4b0d-8770-b352745c73f5", + "roleDefinitionId": "e27430df-bd6b-4f3a-bd6d-d52ad1a7d075" + } + ], + "resourceTypes": [ + { + "resourceType": "caches", + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.StorageCache" + } + ] + } + } + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "caches/storageTargets", + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "usageModels", + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/ascoperations", + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "4392ab71-2ce2-4b0d-8770-b352745c73f5" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2021-03-01", + "operations": "2021-03-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.StorageCache" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftStorageCacheShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StoragePool", + "namespace": "Microsoft.StoragePool", + "authorizations": [ + { + "applicationId": "5741a1ff-751d-4ad7-bcd1-dfe3c998fd11", + "roleDefinitionId": "3eef04c6-e880-42e9-aaef-6e04c508124c", + "managedByRoleDefinitionId": "7379b183-294f-4404-b062-f3b9a0f03f5a" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-03-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-03-01" + ], + "defaultApiVersion": "2020-03-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-06-05-preview", + "operations": "2017-06-05-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.StorageSync" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "StorageSyncShoebox", + "sourceMdmNamespace": "ServerTelemetry" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StreamAnalytics", + "namespace": "Microsoft.StreamAnalytics", + "resourceTypes": [ + { + "resourceType": "streamingjobs", + "locations": [ + "Central US", + "West Europe", + "East US 2", + "North Europe", + "Japan East", + "West US", + "Southeast Asia", + "South Central US", + "East Asia", + "Japan West", + "North Central US", + "East US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "West Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "South India" + ], + "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" + ], + "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" + ], + "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" + ], + "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": "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", + "UK West", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "South India" + ], + "apiVersions": [ + "2019-06-01", + "2018-11-01", + "2017-04-01-preview", + "2016-03-01", + "2015-11-01", + "2015-10-01", + "2015-09-01", + "2015-08-01-preview", + "2015-06-01", + "2015-05-01", + "2015-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "66f1e791-7bfb-4e18-aed8-1720056421c7" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftStreamanalytics" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "StreamAnalyticsUserMetricsProd", + "sourceMdmNamespace": "ShoeBox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftStreamanalytics", + "onbehalfSupportedLogCategories": [ + "Execution", + "Authoring" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Subscription", + "namespace": "Microsoft.Subscription", + "authorizations": [ + { + "applicationId": "e3335adb-5ca0-40dc-b8d3-bedc094e523b" + }, + { + "applicationId": "5da7367f-09c8-493e-8fd4-638089cddec3" + } + ], + "resourceTypes": [ + { + "resourceType": "SubscriptionDefinitions", + "locations": [ + "West US" + ], + "apiVersions": [ + "2017-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "SubscriptionOperations", + "locations": [ + "West US" + ], + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview", + "2018-11-01-preview", + "2018-03-01-preview", + "2017-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "CreateSubscription", + "locations": [ + "Central US" + ], + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview", + "2018-03-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [ + "West US" + ], + "apiVersions": [ + "2017-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cancel", + "locations": [ + "West US" + ], + "apiVersions": [ + "2020-09-01", + "2019-10-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "rename", + "locations": [ + "West US" + ], + "apiVersions": [ + "2020-09-01", + "2019-10-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "enable", + "locations": [ + "West US" + ], + "apiVersions": [ + "2020-09-01", + "2019-10-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "subscriptions", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "aliases", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview", + "2020-09-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operationResults", + "locations": [ + "Central US" + ], + "apiVersions": [ + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "acceptChangeTenant", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "changeTenantStatus", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "changeTenantRequest", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "policies", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "acceptOwnership", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "acceptOwnershipStatus", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.support", + "namespace": "microsoft.support", + "authorizations": [ + { + "applicationId": "959678cf-d004-4c22-82a6-d2ce549a58b8", + "roleDefinitionId": "81a3dd11-5123-4ec3-9485-772b0a27d1bd" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview", + "2015-07-01-Preview", + "2015-03-01" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "services", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "services/problemclassifications", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "supporttickets", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview", + "2015-07-01-Preview", + "2015-03-01" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operationresults", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operationsstatus", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Synapse", + "namespace": "Microsoft.Synapse", + "authorizations": [ + { + "applicationId": "9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b", + "roleDefinitionId": "a53b114a-452b-4d20-bcd6-c51c3c8c5878", + "managedByRoleDefinitionId": "ede175bc-31e5-4074-ba98-e62b895797aa" + }, + { + "applicationId": "1ac05c7e-12d2-4605-bf9d-549d7041c6b3", + "roleDefinitionId": "48e77487-c9fa-4abe-8484-71ebdebdbbc2" + }, + { + "applicationId": "ec52d13d-2e85-410e-a89a-8c79fb6a32ac", + "roleDefinitionId": "c3a447c3-a63a-4905-a125-c6856f9d0e17" + }, + { + "applicationId": "5ebe1e69-13dd-4953-84fa-a74ed591db2e", + "roleDefinitionId": "e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f" + }, + { + "applicationId": "2e458d69-0892-4655-b713-4f7b182315dd", + "roleDefinitionId": "45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF" + } + ], + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSynapseShoebox", + "sourceMdmNamespace": "Microsoft.Synapse" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse", + "onbehalfSupportedLogCategories": [ + "SynapseRbacOperations", + "GatewayApiRequests", + "SQLSecurityAuditEvents", + "BuiltinSqlReqsEnded", + "IntegrationPipelineRuns", + "IntegrationActivityRuns", + "IntegrationTriggerRuns" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/bigDataPools", + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSynapseShoebox", + "sourceMdmNamespace": "Microsoft.Synapse" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse", + "onbehalfSupportedLogCategories": [ + "BigDataPoolAppsEnded" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/sqlPools", + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2020-04-01-preview", + "2019-06-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSynapseShoebox", + "sourceMdmNamespace": "SQLStandardMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse", + "onbehalfSupportedLogCategories": [ + "SqlRequests", + "RequestSteps", + "ExecRequests", + "DmsWorkers", + "Waits", + "SQLSecurityAuditEvents" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/sqlDatabases", + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "2020-04-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSynapseShoebox", + "sourceMdmNamespace": "SQLStandardMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/sqlDatabaseAzureAsyncOperation", + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-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" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-06-01-preview", + "operations": "2019-06-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSynapseShoebox", + "sourceMdmNamespace": "Microsoft.Synapse" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.TimeSeriesInsights", + "namespace": "Microsoft.TimeSeriesInsights", + "authorizations": [ + { + "applicationId": "120d688d-1518-4cf7-bd38-182f158850b6", + "roleDefinitionId": "5a43abdf-bb87-42c4-9e56-1c24bf364150" + } + ], + "resourceTypes": [ + { + "resourceType": "environments", + "locations": [ + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "apiVersions": [ + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-02-28-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-02-28-preview", + "operations": "2017-02-28-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftTimeSeriesInsights" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "RDXProdShoebox", + "sourceMdmNamespace": "Environment" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.TimeSeriesInsights", + "onbehalfSupportedLogCategories": [ + "Ingress", + "Management" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "environments/eventsources", + "locations": [ + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "apiVersions": [ + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-02-28-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-02-28-preview", + "operations": "2017-02-28-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftTimeSeriesInsights" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "RDXProdShoebox", + "sourceMdmNamespace": "EventSource" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.TimeSeriesInsights", + "onbehalfSupportedLogCategories": [ + "Ingress", + "Management" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "environments/referenceDataSets", + "locations": [ + "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": [ + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "apiVersions": [ + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-02-28-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Canada Central", + "West India", + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "East US 2 EUAP", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "North Central US", + "UK South" + ], + "apiVersions": [ + "2021-03-31-preview", + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-05-31-privatepreview", + "2017-02-28-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "120d688d-1518-4cf7-bd38-182f158850b6" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-02-28-preview", + "operations": "2017-02-28-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftTimeSeriesInsights" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "RDXProdShoebox", + "sourceMdmNamespace": "Environment" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VirtualMachineImages", + "namespace": "Microsoft.VirtualMachineImages", + "authorizations": [ + { + "applicationId": "cf32a0cc-373c-47c9-9156-0db11f6a6dfc", + "roleDefinitionId": "0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635" + } + ], + "resourceTypes": [ + { + "resourceType": "imageTemplates", + "locations": [ + "East US", + "East US 2", + "West Central US", + "West US", + "West US 2", + "South Central US", + "North Europe", + "West Europe" + ], + "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" + ], + "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", + "North Europe", + "West Europe", + "South Central US" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-02-14", + "2019-05-01-preview", + "2019-02-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "cf32a0cc-373c-47c9-9156-0db11f6a6dfc" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VMware", + "namespace": "Microsoft.VMware", + "authorizations": [ + { + "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7", + "roleDefinitionId": "dd032bd9-65cc-4171-b688-c612566422ae" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview", + "2019-12-20-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "West US", + "East US 2 EUAP", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview", + "2019-12-20-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview", + "2019-12-20-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "VCenters/InventoryItems", + "locations": [ + "East US", + "West US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VMwareCloudSimple", + "namespace": "Microsoft.VMwareCloudSimple", + "authorizations": [ + { + "applicationId": "d96199e7-4674-4bbf-a1c6-ddf93682f5ee", + "roleDefinitionId": "533012ca-a3e7-44e4-93b4-3143f8b9409d", + "allowedThirdPartyExtensions": [ + { + "name": "CloudSimpleExtension" + } + ] + } + ], + "resourceTypes": [ + { + "resourceType": "virtualMachines", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "dedicatedCloudNodes", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "dedicatedCloudServices", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/availabilities", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateClouds", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateClouds/virtualNetworks", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateClouds/virtualMachineTemplates", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateClouds/resourcePools", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-04-01", + "operations": "2019-04-01" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "CloudSimplePrivateCloudIAASShoebox", + "sourceMdmNamespace": "Microsoft.VMwareCloudSimple" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VSOnline", + "namespace": "Microsoft.VSOnline", + "authorizations": [ + { + "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6", + "roleDefinitionId": "b879ac78-f1e6-448d-ab4c-5908cd5967c1" + }, + { + "applicationId": "48ef7923-268f-473d-bcf1-07f0997961f4", + "roleDefinitionId": "b879ac78-f1e6-448d-ab4c-5908cd5967c1" + } + ], + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "West Europe", + "East US", + "West Us 2", + "Southeast Asia" + ], + "apiVersions": [ + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "plans", + "locations": [ + "West Europe", + "East US", + "West Us 2", + "Southeast Asia" + ], + "apiVersions": [ + "2020-05-26-preview", + "2020-05-26-beta", + "2020-05-26-alpha", + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-05-26-privatepreview", + "2020-05-26-preview", + "2020-05-26-beta", + "2020-05-26-alpha", + "2019-07-01-privatepreview", + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-05-26-privatepreview", + "2020-05-26-preview", + "2020-05-26-beta", + "2020-05-26-alpha", + "2019-07-01-privatepreview", + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WindowsESU", + "namespace": "Microsoft.WindowsESU", + "authorizations": [ + { + "applicationId": "e6c69915-bcc7-4335-b655-c62f949d691b", + "roleDefinitionId": "9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810" + } + ], + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2019-09-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2019-09-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2019-10-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WorkloadBuilder", + "namespace": "Microsoft.WorkloadBuilder", + "authorizations": [ + { + "applicationId": "63c2c773-89fe-4164-a02f-b8c7fc1772ae", + "roleDefinitionId": "322358fa-ea51-4f6c-b9d6-3be64015f074" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2021-03-01-privatepreview", + "2020-07-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "West Central US", + "East US 2 EUAP" + ], + "apiVersions": [ + "2020-07-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2021-03-01-privatepreview", + "2020-07-01-privatepreview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WorkloadMonitor", + "namespace": "Microsoft.WorkloadMonitor", + "authorizations": [ + { + "applicationId": "ddc728e9-153d-4032-ab80-80e57af7a56f", + "roleDefinitionId": "553f60de-cc15-412f-9fdf-8f5152e7e0f5", + "managedByRoleDefinitionId": "553f60de-cc15-412f-9fdf-8f5152e7e0f5" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-01-13-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [], + "apiVersions": [ + "2020-01-13-preview" + ], + "capabilities": "SupportsExtension" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Myget.PackageManagement", + "namespace": "Myget.PackageManagement", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West Europe" + ], + "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/Paraleap.CloudMonix", + "namespace": "Paraleap.CloudMonix", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US" + ], + "apiVersions": [ + "2016-08-10" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-08-10" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-08-10" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-08-10" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Pokitdok.Platform", + "namespace": "Pokitdok.Platform", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US" + ], + "apiVersions": [ + "2016-05-17" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-05-17" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-05-17" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-05-17" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/RavenHq.Db", + "namespace": "RavenHq.Db", + "resourceTypes": [ + { + "resourceType": "databases", + "locations": [ + "East US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2016-07-18" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-07-18" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-07-18" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-07-18" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Raygun.CrashReporting", + "namespace": "Raygun.CrashReporting", + "resourceTypes": [ + { + "resourceType": "apps", + "locations": [ + "East US" + ], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Sendgrid.Email", + "namespace": "Sendgrid.Email", + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2015-01-01" + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 612 792\u0027 enable-background=\u0027new 0 0 612 792\u0027 xml:space=\u0027preserve\u0027\u003E \u003Cg\u003E \u003Cg\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M399,118c61,0,122,0,183-0.1c3.4,0,4.1,0.7,4.1,4.1c-0.1,60.7-0.1,121.3-0.1,182 c-58.9,0-117.8,0-176.8-0.1c-3.1,0-6.2,1.5-9.2,0.1c-0.3-0.3-0.6-0.7-1-1C399,241.3,399,179.7,399,118z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M28,304c61.9,0,123.9,0,185.8,0l0.4-0.1c-0.1,2.2-0.2,4.3-0.2,6.5c0,59.9,0,119.8,0,179.6l0.1-0.1 c-62,0-124,0-186,0C28,428,28,366,28,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M28,490c62,0,124,0,186,0c0,62,0,124,0,186c-60.7,0-121.3,0-182,0.1c-3.4,0-4.1-0.7-4.1-4.1 C28,611.3,28,550.7,28,490z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M214,676c0-62,0-124,0-186c0,0-0.1,0.1-0.1,0.1c59.9,0,119.8,0,179.6,0c2.2,0,4.3-0.2,6.5-0.2l-0.1,0.4 c0,61.9,0,123.9,0,185.8C338,676,276,676,214,676z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M586,490c-60,0-120,0-180,0c-2,0-4,0.1-6,0.2c0,0,0.1-0.4,0.1-0.4c0-61.9,0-123.8-0.1-185.8 c3.1,1.5,6.2-0.1,9.2-0.1C468.2,304,527.1,304,586,304C586,366,586,428,586,490z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M213.8,304c0.1-5.1,0.2-10.3,0.2-15.4c0-56.9,0-113.7,0-170.6c61.7,0,123.3,0,185,0c0,61.7,0,123.3,0,185 c-1.1,1.4-2.7,1-4.2,1c-60.2,0-120.4,0-180.6,0L213.8,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M214.3,303.9c60.2,0,120.4,0,180.6,0c1.4,0,3,0.4,4.2-1c0.3,0.3,0.6,0.7,1,1c0,61.9,0,123.8,0.1,185.8 c-2.2,0.1-4.3,0.2-6.5,0.2c-59.9,0-119.8,0-179.6,0c0-59.9,0-119.8,0-179.6C214,308.2,214.2,306.1,214.3,303.9z\u0027/\u003E \u003C/g\u003E \u003C/g\u003E \u003C/svg\u003E" + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 612 792\u0027 enable-background=\u0027new 0 0 612 792\u0027 xml:space=\u0027preserve\u0027\u003E \u003Cg\u003E \u003Cg\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M399,118c61,0,122,0,183-0.1c3.4,0,4.1,0.7,4.1,4.1c-0.1,60.7-0.1,121.3-0.1,182 c-58.9,0-117.8,0-176.8-0.1c-3.1,0-6.2,1.5-9.2,0.1c-0.3-0.3-0.6-0.7-1-1C399,241.3,399,179.7,399,118z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M28,304c61.9,0,123.9,0,185.8,0l0.4-0.1c-0.1,2.2-0.2,4.3-0.2,6.5c0,59.9,0,119.8,0,179.6l0.1-0.1 c-62,0-124,0-186,0C28,428,28,366,28,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M28,490c62,0,124,0,186,0c0,62,0,124,0,186c-60.7,0-121.3,0-182,0.1c-3.4,0-4.1-0.7-4.1-4.1 C28,611.3,28,550.7,28,490z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M214,676c0-62,0-124,0-186c0,0-0.1,0.1-0.1,0.1c59.9,0,119.8,0,179.6,0c2.2,0,4.3-0.2,6.5-0.2l-0.1,0.4 c0,61.9,0,123.9,0,185.8C338,676,276,676,214,676z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M586,490c-60,0-120,0-180,0c-2,0-4,0.1-6,0.2c0,0,0.1-0.4,0.1-0.4c0-61.9,0-123.8-0.1-185.8 c3.1,1.5,6.2-0.1,9.2-0.1C468.2,304,527.1,304,586,304C586,366,586,428,586,490z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M213.8,304c0.1-5.1,0.2-10.3,0.2-15.4c0-56.9,0-113.7,0-170.6c61.7,0,123.3,0,185,0c0,61.7,0,123.3,0,185 c-1.1,1.4-2.7,1-4.2,1c-60.2,0-120.4,0-180.6,0L213.8,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M214.3,303.9c60.2,0,120.4,0,180.6,0c1.4,0,3,0.4,4.2-1c0.3,0.3,0.6,0.7,1,1c0,61.9,0,123.8,0.1,185.8 c-2.2,0.1-4.3,0.2-6.5,0.2c-59.9,0-119.8,0-179.6,0c0-59.9,0-119.8,0-179.6C214,308.2,214.2,306.1,214.3,303.9z\u0027/\u003E \u003C/g\u003E \u003C/g\u003E \u003C/svg\u003E" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Sparkpost.Basic", + "namespace": "Sparkpost.Basic", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US" + ], + "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/U2uconsult.TheIdentityHub", + "namespace": "U2uconsult.TheIdentityHub", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West Europe" + ], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "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": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "fusionGroups/azureZones/plugins", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "fusionGroups/replicationRules", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Locations", + "locations": [ + "East US" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "East Asia", + "East US", + "East US 2 EUAP", + "North Europe", + "Southeast Asia", + "West Europe", + "West Central US", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "fusionGroups/replicationRules/migrations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "fusionGroups/hiveReplicationRules", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "fusionGroups/managedOnPremZones", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "migrators", + "locations": [ + "East US", + "East Asia", + "North Europe", + "Southeast Asia", + "West Europe", + "West Central US", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/targets", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/liveDataMigrations", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + } + ] + } + } + ], + "Variables": { + "RandomSeed": "1641568194", + "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 new file mode 100644 index 000000000000..9d9ec08916dc --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json @@ -0,0 +1,78879 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8ea69f816f2f18ccce65ca21918d7337", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 22:04:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d0f105a8-f01c-4d4b-8c05-0035cf8def65", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "d0f105a8-f01c-4d4b-8c05-0035cf8def65", + "x-ms-routing-request-id": "WESTUS2:20210310T220457Z:d0f105a8-f01c-4d4b-8c05-0035cf8def65" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3699?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-75b0abd85d58e74090481d3d763451b6-d49cb23d6d2fd443-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "22bcabeba86cfa7cc2b3b13c9ce6eda2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 22:04:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "08ef172a-e84a-430f-b453-e0116417c2ec", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "08ef172a-e84a-430f-b453-e0116417c2ec", + "x-ms-routing-request-id": "WESTUS2:20210310T220458Z:08ef172a-e84a-430f-b453-e0116417c2ec" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3699", + "name": "testrg3699", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers?$expand=metadata\u0026api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-58ef22d960f58646a446f7a21e1f0f1f-547c67643144b945-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "528e1efe62ef073f41b442f10cdf8fa8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1218927", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 22:05:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e0d8190a-1540-42c3-af2e-bfed8b8c1277", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "e0d8190a-1540-42c3-af2e-bfed8b8c1277", + "x-ms-routing-request-id": "WESTUS2:20210310T220501Z:e0d8190a-1540-42c3-af2e-bfed8b8c1277" + }, + "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", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central" + ], + "apiVersions": [ + "2020-02-02-preview", + "2018-05-01-preview", + "2015-05-01", + "2014-12-01-preview", + "2014-08-01", + "2014-04-01" + ], + "metadata": { + "portal": { + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/ApplicationInsights.svg", + "kinds": [ + { + "kind": "web", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Web.svg", + "blade": { + "name": "AspNetOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "phone", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Phone.svg", + "blade": { + "name": "DeviceOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "store", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Store.svg", + "blade": { + "name": "DeviceOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "java", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Java.svg", + "blade": { + "name": "JavaWebOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "other", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/ApplicationInsights.svg", + "blade": { + "name": "OtherOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "android", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Android.svg", + "blade": { + "name": "DeviceOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "ios", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Ios.svg", + "blade": { + "name": "DeviceOverview", + "extension": "AppInsightsExtension" + } + }, + { + "kind": "devices", + "icon": "https://ibizaaiextension.blob.core.windows.net/icons/AI_Phone.svg", + "blade": { + "name": "DeviceOverview", + "extension": "AppInsightsExtension" + } + } + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.AppId", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ApplicationInsights_PROD_", + "sourceMdmNamespace": "ApplicationInsights" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "ApplicationInsights", + "onbehalfSupportedLogCategories": [ + "AppAvailabilityResults", + "AppBrowserTimings", + "AppDependencies", + "AppEvents", + "AppExceptions", + "AppMetrics", + "AppPageViews", + "AppPerformanceCounters", + "AppRequests", + "AppSystemEvents", + "AppTraces" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "components/query", + "locations": [], + "apiVersions": [ + "2018-04-20" + ], + "capabilities": "None" + }, + { + "resourceType": "components/metadata", + "locations": [], + "apiVersions": [ + "2018-04-20" + ], + "capabilities": "None" + }, + { + "resourceType": "components/metrics", + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "East US 2", + "East Asia", + "West US", + "Central US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Australia Southeast", + "Norway East", + "Norway West" + ], + "apiVersions": [ + "2018-04-20" + ], + "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", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Brazil Southeast", + "Japan West", + "UAE North", + "Australia Central" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2015-04-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2015-04-01", + "operations": "2015-04-01" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Autoscale", + "onbehalfSupportedLogCategories": [ + "AutoscaleEvaluations", + "AutoscaleScaleActions" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "eventtypes", + "locations": [], + "apiVersions": [ + "2017-03-01-preview", + "2016-09-01-preview", + "2015-04-01", + "2014-11-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-01" + } + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "locations", + "locations": [ + "East US" + ], + "apiVersions": [ + "2015-04-01", + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [], + "apiVersions": [ + "2015-04-01", + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "vmInsightsOnboardingStatuses", + "locations": [], + "apiVersions": [ + "2018-11-27-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2015-04-01", + "2014-06-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diagnosticSettings", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "East US 2", + "Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "UK South", + "UK West", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West Central US", + "West US 2", + "Korea South", + "Korea Central", + "Australia Central", + "Australia Central 2", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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", + "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", + "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", + "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" + ], + "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", + "Australia Southeast" + ], + "apiVersions": [ + "2020-10-20", + "2020-02-12", + "2018-06-17-preview", + "2018-06-01-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da" + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workbooktemplates", + "locations": [ + "West Europe", + "South Central US", + "East US", + "North Europe", + "Southeast Asia", + "West US 2", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "Canada Central", + "Central India", + "UK South", + "UK West", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Australia Southeast" + ], + "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", + "Australia Southeast" + ], + "apiVersions": [ + "2020-10-20", + "2020-02-12", + "2018-06-17-preview", + "2018-06-15-preview", + "2018-06-01-preview", + "2016-06-15-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "6a0a243c-0886-468a-a4c2-eff52c7445da" + } + }, + "capabilities": "SupportsExtension" + }, + { + "resourceType": "logs", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "Australia Central", + "South Africa North" + ], + "apiVersions": [ + "2018-08-01-preview", + "2018-03-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "transactions", + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "East US 2", + "East Asia", + "West US", + "Central US", + "South Africa North", + "North Central US" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "topology", + "locations": [ + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Central India", + "Canada Central", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "East US 2", + "East Asia", + "West US", + "Central US", + "South Africa North", + "North Central US" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "generateLiveToken", + "locations": [], + "apiVersions": [ + "2020-06-02-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "dataCollectionRules", + "locations": [ + "Australia Southeast", + "Canada Central", + "Japan East", + "Australia East", + "Central India", + "Germany West Central", + "North Central US", + "South Central US", + "East US", + "Central US", + "West Europe", + "West US 2", + "Southeast Asia", + "East US 2", + "UK South", + "North Europe", + "West US", + "Australia Central", + "West Central US", + "East Asia", + "UK West", + "Korea Central", + "France Central", + "South Africa North", + "Switzerland North" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2019-11-01-preview" + ], + "defaultApiVersion": "2019-11-01-preview", + "capabilities": "SupportsExtension" + }, + { + "resourceType": "privateLinkScopes", + "locations": [ + "Global" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateLinkScopes/privateEndpointConnections", + "locations": [ + "Global" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateLinkScopes/privateEndpointConnectionProxies", + "locations": [ + "Global" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateLinkScopes/scopedResources", + "locations": [ + "Global" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "components/linkedstorageaccounts", + "locations": [ + "East US", + "West Central US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Norway West", + "Australia Southeast" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateLinkScopeOperationStatuses", + "locations": [ + "Global" + ], + "apiVersions": [ + "2019-10-17-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "monitoringServiceProperties": { + "mdsAccount": "MdsGeneric", + "mdsEnvironment": null + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2015-07-01", + "components": "2015-05-01", + "autoscalesettings": "2015-04-01", + "operations": "2015-04-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "AzMonitoringAutoscale", + "sourceMdmNamespace": "AzureMonitoring/Autoscale" + } + ] + } + }, + "notifications": { + "sources": [ + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmsas1", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + }, + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmsas2", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + }, + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmsus1", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + }, + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmsus2", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + }, + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmseu1", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + }, + { + "subscriptionId": "d287adab-8e3a-4925-97dd-01c50c767dae", + "storageAccountName": "evtrpnmseu2", + "queueNames": [ + "nms-0", + "nms-1" + ], + "blobContainerName": "nms" + } + ] + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ContainerRegistry", + "namespace": "Microsoft.ContainerRegistry", + "authorizations": [ + { + "applicationId": "6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26", + "roleDefinitionId": "78e18383-93eb-418a-9887-bc9271046576" + }, + { + "applicationId": "737d58c1-397a-46e7-9d12-7d8c830883c2", + "roleDefinitionId": "716bb53a-0390-4428-bf41-b1bedde7d751" + }, + { + "applicationId": "918d0db8-4a38-4938-93c1-9313bdfe0272", + "roleDefinitionId": "dcd2d2c9-3f80-4d72-95a8-2593111b4b12" + }, + { + "applicationId": "d2fa1650-4805-4a83-bcb9-cf41fe63539c", + "roleDefinitionId": "c15f8dab-b103-4f8d-9afb-fbe4b8e98de2" + }, + { + "applicationId": "a4c95b9e-3994-40cc-8953-5dc66d48348d", + "roleDefinitionId": "dc88c655-90fa-48d9-8d51-003cc8738508" + }, + { + "applicationId": "62c559cd-db0c-4da0-bab2-972528c65d42", + "roleDefinitionId": "437b639a-6d74-491d-959f-d172e8c5c1fc" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registries/agentPools", + "locations": [ + "East US", + "West US 2", + "South Central US", + "Central US", + "East US 2" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-11-01-preview", + "2019-12-01-preview", + "2019-05-01-preview", + "2019-05-01", + "2017-10-01", + "2017-06-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-10-01", + "operations": "2017-10-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftContainerRegistryShoebox", + "sourceMdmNamespace": "MicrosoftContainerRegistryMdmNamespace" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.ContainerRegistry", + "onbehalfSupportedLogCategories": [ + "ContainerRegistryRepositoryEvents", + "ContainerRegistryLoginEvents" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "d2fa1650-4805-4a83-bcb9-cf41fe63539c" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ContainerService", + "namespace": "Microsoft.ContainerService", + "authorizations": [ + { + "applicationId": "7319c514-987d-4e9b-ac3d-d38c4f427f4c", + "roleDefinitionId": "1b4a0c7f-2217-416f-acfa-cf73452fdc1c", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "managedByAuthorization": { + "allowManagedByInheritance": true + } + }, + { + "applicationId": "6dae42f8-4368-4678-94ff-3960e28e3630", + "roleDefinitionId": "831388fc-33b1-4dd1-b64c-40fdcaf96654" + } + ], + "resourceTypes": [ + { + "resourceType": "containerServices", + "locations": [ + "Japan East", + "Central US", + "East US 2", + "Japan West", + "East Asia", + "South Central US", + "North Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Southeast Asia", + "West US", + "West Europe", + "North Europe", + "East US", + "UK West", + "UK South", + "West Central US", + "West US 2", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "Korea South", + "Korea Central", + "South Africa North" + ], + "apiVersions": [ + "2017-07-01", + "2017-01-31", + "2016-09-30", + "2016-03-30" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "managedClusters", + "locations": [ + "West Central US", + "East US", + "West Europe", + "France Central", + "France South", + "Central US", + "Canada Central", + "Canada East", + "UK South", + "West US", + "West US 2", + "Australia East", + "Australia Central", + "North Europe", + "Japan East", + "Japan West", + "East US 2", + "South Central US", + "North Central US", + "Southeast Asia", + "Australia Southeast", + "UK West", + "South India", + "Central India", + "East Asia", + "Korea South", + "Korea Central", + "South Africa North", + "Brazil South", + "Brazil Southeast", + "Germany North", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "UAE North", + "UAE Central", + "Norway East", + "Norway West" + ], + "apiVersions": [ + "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", + "West US 2", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "UK South", + "UK West", + "France Central", + "Canada East", + "Canada Central", + "Australia East", + "Australia Southeast", + "East Asia", + "Southeast Asia", + "North Central US", + "Brazil South", + "Japan East", + "Central India" + ], + "apiVersions": [ + "2019-09-30-preview", + "2019-04-30" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/openShiftClusters", + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "France Central", + "UK West", + "UK South", + "Canada East", + "Canada Central", + "Australia East", + "Australia Southeast", + "East Asia", + "Southeast Asia", + "North Central US", + "Brazil South", + "Japan East", + "Central India" + ], + "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", + "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 Central", + "Canada East", + "UK West", + "UK South", + "West Central US", + "West US 2", + "South India", + "Central India", + "West India", + "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", + "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", + "Germany North", + "Germany West Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "Norway East", + "Norway West" + ], + "apiVersions": [ + "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" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "7319c514-987d-4e9b-ac3d-d38c4f427f4c" + }, + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-08-31", + "operations": "2017-07-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AKSCustomerData" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftContainerServiceShoebox", + "sourceMdmNamespace": "Prometheus" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AKSCustomerData", + "onbehalfSupportedLogCategories": [ + "kube-apiserver", + "kube-controller-manager", + "kube-scheduler", + "kube-audit", + "guard" + ] + } + ], + "categories": [ + { + "Name": "cluster-autoscaler" + }, + { + "Name": "guard" + }, + { + "Name": "kube-apiserver" + }, + { + "Name": "kube-audit" + }, + { + "Name": "kube-controller-manager" + }, + { + "Name": "kube-scheduler" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Sql", + "namespace": "Microsoft.Sql", + "authorizations": [ + { + "applicationId": "e4ab13ed-33cb-41b4-9140-6e264582cf85", + "roleDefinitionId": "ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec" + }, + { + "applicationId": "0130cc9f-7ac5-4026-bd5f-80a08a54e6d9", + "roleDefinitionId": "45e8abf8-0ec4-44f3-9c37-cff4f7779302" + }, + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "76c7f279-7959-468f-8943-3954880e0d8c", + "roleDefinitionId": "7f7513a8-73f9-4c5f-97a2-c41f0ea783ef", + "managedByRoleDefinitionId": "f2f79976-90be-4501-89c6-7caf12474683" + }, + { + "applicationId": "022907d3-0f1b-48f7-badc-1ba6abab6d66" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview", + "2015-01-01", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "metadata": { + "portal": { + "kinds": [ + { + "kind": "system", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "v12.0,system", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "v12.0,user" + }, + { + "kind": "v12.0,user,vcore" + }, + { + "kind": "v12.0,user,datawarehouse", + "blade": { + "name": "DataWarehouseBlade", + "extension": "SqlAzureExtension" + } + }, + { + "kind": "v12.0,user,stretch", + "blade": { + "name": "StretchDatabaseBlade", + "extension": "SqlAzureExtension" + } + } + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2014-01-01" + }, + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftSqlShoebox", + "sourceMdmNamespace": "MicrosoftSql" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "logFilterPathSelector": "kind", + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "onbehalfSupportedLogCategories": [ + "SQLInsights", + "AutomaticTuning", + "QueryStoreRuntimeStatistics", + "QueryStoreWaitStatistics", + "Errors", + "DatabaseWaitStatistics", + "Timeouts", + "Blocks", + "Deadlocks", + "DmsWorkers", + "ExecRequests", + "RequestSteps", + "SqlRequests", + "Waits" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "servers/serviceObjectives", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-03-01-preview", + "2015-05-01-preview", + "2014-04-01-preview", + "2014-04-01" + ], + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-09-01-preview", + "2015-05-01-preview", + "2015-05-01", + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2014-01-01" + }, + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftSqlShoebox", + "sourceMdmNamespace": "MicrosoftSqlElasticPools" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "mdsEnvironment": "prod" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "servers/jobAccounts", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2014-01-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftSqlShoebox", + "sourceMdmNamespace": "MicrosoftSqlManagedInstance" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "onbehalfSupportedLogCategories": [ + "ResourceUsageStats" + ] + } + ] + } + } + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "managedInstances/administrators", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2014-01-01" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "onbehalfSupportedLogCategories": [ + "SQLInsights", + "QueryStoreRuntimeStatistics", + "QueryStoreWaitStatistics", + "Errors" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "managedInstances/recoverableDatabases", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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": [ + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-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", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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-08-01-preview", + "2020-02-02-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2014-01-01", + "servers/databases": "2018-06-01-preview", + "servers/elasticpools": "2018-06-01-preview", + "managedInstances": "2018-06-01-preview", + "managedInstances/databases": "2017-03-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftSqlShoebox", + "sourceMdmNamespace": "MicrosoftSql" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv3", + "mdsEnvironment": "prod" + } + ] + } + } + }, + "Microsoft.managedIdentity": { + "applicationId": "0a929f38-4ca4-4168-8d99-4a4fa344fb98" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Logic", + "namespace": "Microsoft.Logic", + "authorization": { + "applicationId": "7cd684f4-8a78-49b0-91ec-6a35d38739ba", + "roleDefinitionId": "cb3ef1fb-6e31-49e2-9d87-ed821053fe58" + }, + "resourceTypes": [ + { + "resourceType": "workflows", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany North", + "Germany West Central" + ], + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLogic" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "LogicApp", + "sourceMdmNamespace": "FlowMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLogic", + "onbehalfSupportedLogCategories": [ + "WorkflowRuntime" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/workflows", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany North", + "Germany West Central" + ], + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "North Central US" + ], + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany North", + "Germany West Central" + ], + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2017-07-01", + "2016-10-01", + "2016-06-01", + "2015-08-01-preview", + "2015-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "integrationAccounts", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Brazil South", + "Brazil Southeast", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "France South", + "Korea Central", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany North", + "Germany West Central" + ], + "apiVersions": [ + "2019-05-01", + "2018-07-01-preview", + "2016-06-01", + "2015-08-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLogic", + "onbehalfSupportedLogCategories": [ + "IntegrationAccountTrackingEvents" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "integrationServiceEnvironments", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "Canada Central", + "West US 2", + "UK South", + "UK West", + "France Central", + "South Africa North", + "UAE North" + ], + "apiVersions": [ + "2019-06-01-preview", + "2019-05-01", + "2018-07-01-preview", + "2018-03-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-07-01-preview", + "operations": "2016-06-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLogic" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "LogicApp", + "sourceMdmNamespace": "FlowISEMetrics" + } + ] + }, + "mdsMappingResourceIdOverridePathSelector": "properties.integrationServiceEnvironmentId" + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "integrationServiceEnvironments/managedApis", + "locations": [ + "North Central US", + "Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "West US", + "East US", + "East US 2", + "Japan West", + "Japan East", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "France Central", + "South Africa North", + "UAE North" + ], + "apiVersions": [ + "2019-06-01-preview", + "2019-05-01", + "2018-07-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-07-01-preview", + "operations": "2016-06-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLogic" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "LogicApp", + "sourceMdmNamespace": "FlowISEMetrics" + } + ] + }, + "mdsMappingResourceIdOverridePathSelector": "properties.integrationServiceEnvironmentId" + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "7cd684f4-8a78-49b0-91ec-6a35d38739ba" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-06-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "LogicApp", + "sourceMdmNamespace": "FlowMetrics" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Portal", + "namespace": "Microsoft.Portal", + "resourceTypes": [ + { + "resourceType": "dashboards", + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia Southeast", + "Australia East", + "West India", + "South India", + "Central India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "Switzerland West", + "Switzerland North" + ], + "apiVersions": [ + "2020-09-01-preview", + "2020-09-01-alpha", + "2019-01-01-preview", + "2018-10-01-preview", + "2015-08-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "tenantconfigurations", + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia Southeast", + "Australia East", + "West India", + "South India", + "Central India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "Switzerland West", + "Switzerland North" + ], + "apiVersions": [ + "2020-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "listTenantConfigurationViolations", + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia Southeast", + "Australia East", + "West India", + "South India", + "Central India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "Switzerland West", + "Switzerland North" + ], + "apiVersions": [ + "2020-09-01-preview", + "2019-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia Southeast", + "Australia East", + "West India", + "South India", + "Central India", + "Canada Central", + "Canada East" + ], + "apiVersions": [ + "2015-08-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "consoles", + "locations": [], + "apiVersions": [ + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/consoles", + "locations": [ + "West US", + "East US", + "Central India", + "North Europe", + "West Europe", + "South Central US", + "Southeast Asia", + "East US 2", + "Central US" + ], + "apiVersions": [ + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "userSettings", + "locations": [], + "apiVersions": [ + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/userSettings", + "locations": [ + "West US", + "East US", + "Central India", + "North Europe", + "West Europe", + "South Central US", + "Southeast Asia", + "East US 2", + "Central US" + ], + "apiVersions": [ + "2020-04-01-preview", + "2018-10-01", + "2017-12-01-preview", + "2017-08-01-preview", + "2017-01-01-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OperationsManagement", + "namespace": "Microsoft.OperationsManagement", + "authorization": { + "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77", + "roleDefinitionId": "aa249101-6816-4966-aafa-08175d795f14" + }, + "resourceTypes": [ + { + "resourceType": "solutions", + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia East", + "Australia Central", + "France Central", + "Korea Central", + "North Europe", + "Central Us", + "East Us 2", + "East Asia", + "West Us", + "South Central Us", + "North Central US", + "UK West", + "South Africa North", + "Brazil South", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Australia Central 2", + "Germany West Central", + "Japan West", + "UAE North", + "Brazil Southeast", + "Norway East" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-06-01", + "2019-11-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "35ffadb3-7fc1-497e-b61b-381d28e744cc" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-10-01", + "operations": "2020-07-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "AppConfig", + "sourceMdmNamespace": "AzConfig" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.AppConfiguration", + "onbehalfSupportedLogCategories": [ + "HttpRequest" + ] + } + ] + } + } + } + }, + "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": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "East US", + "East US 2", + "West US 2", + "South India", + "Central India", + "Japan East", + "Japan West", + "Switzerland North", + "Switzerland West", + "South Central US", + "West US", + "East Asia", + "Southeast Asia", + "North Europe", + "West Europe", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2018-10-31-preview", + "2018-10-31" + ], + "defaultApiVersion": "2018-10-31", + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WindowsIoT", + "namespace": "Microsoft.WindowsIoT", + "resourceTypes": [ + { + "resourceType": "DeviceServices", + "locations": [ + "West US", + "East US" + ], + "apiVersions": [ + "2019-06-01", + "2018-02-16-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "West US", + "East US", + "West Central US" + ], + "apiVersions": [ + "2019-06-01", + "2018-02-16-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforPostgreSQL", + "namespace": "Microsoft.DBforPostgreSQL", + "authorizations": [ + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "93efed00-6552-4119-833a-422b297199f9", + "roleDefinitionId": "a864a0a2-ab66-47a6-97a8-223dc1379f87" + }, + { + "applicationId": "5ed8fe41-c1bc-4c06-a531-d91e1f1c2fac", + "roleDefinitionId": "95173bdd-3b59-46f3-be65-7cee4193b078" + }, + { + "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serversv2", + "locations": [ + "East US 2", + "East US", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "West Europe", + "Southeast Asia", + "West US 2", + "North Europe" + ], + "apiVersions": [ + "2018-03-29-privatepreview" + ], + "metadata": { + "portal": { + "kinds": [] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "MicrosoftSqlElasticServersShoebox", + "sourceMdmNamespace": "MicrosoftOrcasBreadthServers" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "onbehalfSupportedLogCategories": [ + "PostgreSQLLogs" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serverGroupsv2", + "locations": [ + "East US 2", + "East US", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "West Europe", + "Southeast Asia", + "West US 2", + "North Europe" + ], + "apiVersions": [ + "2020-10-05-privatepreview" + ], + "metadata": { + "portal": { + "kinds": [] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDBForPGHyperShoeboxProd", + "sourceMdmNamespace": "CustomerFacingMetrics" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "onbehalfSupportedLogCategories": [ + "PostgreSQLLogs" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serverGroups", + "locations": [ + "East US 2", + "East US", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "West Europe", + "Southeast Asia", + "West US 2", + "North Europe" + ], + "apiVersions": [ + "2018-03-29-privatepreview" + ], + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "flexibleServers", + "locations": [ + "West US 2", + "East US", + "East US 2", + "West Europe", + "North Europe", + "Japan East", + "Southeast Asia", + "UK South", + "Central US" + ], + "apiVersions": [ + "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": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + } + ], + "metadata": { + "portal": { + "kinds": [] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDBForPGFlexShoeboxProd", + "sourceMdmNamespace": "CustomerFacingMetrics" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "onbehalfSupportedLogCategories": [ + "PostgreSQLLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "87bbf879-e67c-49da-a9e1-632ecff043f9" + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/capabilities", + "locations": [ + "East US 2", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Japan East", + "Southeast Asia", + "UK South", + "Central US" + ], + "apiVersions": [ + "2020-11-05-preview", + "2020-02-14-privatepreview", + "2020-02-14-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "East US 2", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Japan East", + "Southeast Asia", + "UK South", + "Central US" + ], + "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": "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": [ + "East US 2", + "East US", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "West Europe", + "Southeast Asia", + "West US 2", + "North Europe", + "Japan East", + "Central US" + ], + "apiVersions": [ + "2020-11-05-preview", + "2020-02-14-privatepreview", + "2020-02-14-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/performanceTiers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/topQueryStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/queryTexts", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/waitStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/resetQueryPerformanceInsightData", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/advisors", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateLinkResources", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnections", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnectionProxies", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/keys", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-12-01", + "serversv2": "2018-03-29-privatepreview", + "flexibleServers": "2020-02-14-privatepreview", + "serverGroupsv2": "2020-10-05-privatepreview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "AzureDBProduction", + "sourceMdmNamespace": "MicrosoftSqlElasticServers" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "onbehalfSupportedLogCategories": [ + "PostgreSQLLogs" + ] + } + ] + } + } + }, + "Microsoft.managedIdentity": { + "applicationId": "c39e7899-4b62-43a9-8a02-3f99028555f9" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DesktopVirtualization", + "namespace": "Microsoft.DesktopVirtualization", + "authorizations": [ + { + "applicationId": "50e95039-b200-4007-bc97-8d5790743a63", + "roleDefinitionId": "CAD30215-AD1C-43BF-BE90-7BFA8B493E62" + }, + { + "applicationId": "9cdead84-a844-4324-93f2-b2e6bb768d07" + }, + { + "applicationId": "a85cf173-4192-42f8-81fa-777a763e6e2c" + } + ], + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2019-01-23-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.DesktopVirtualization", + "onbehalfSupportedLogCategories": [ + "Feed" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "applicationgroups", + "locations": [ + "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": [ + "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": [ + "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": [ + "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": [ + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2019-01-23-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.DesktopVirtualization", + "onbehalfSupportedLogCategories": [ + "Connection", + "HostRegistration", + "AgentHealthStatus" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostpools/msixpackages", + "locations": [ + "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": [ + "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": [ + "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": [ + "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": [ + "North Europe", + "West Europe", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-14-preview", + "2020-11-10-preview", + "2020-11-02-preview", + "2020-10-19-preview", + "2020-09-21-preview", + "2019-12-10-preview", + "2019-09-24-preview", + "2019-01-23-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "build": "", + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-12-10-preview", + "operations": "2019-12-10-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.DesktopVirtualization", + "onbehalfSupportedLogCategories": [ + "Management", + "Checkpoint", + "Error" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Attestation", + "namespace": "Microsoft.Attestation", + "authorizations": [ + { + "applicationId": "c61423b7-1d1f-430d-b444-0eee53298103", + "roleDefinitionId": "7299b0b1-11da-4858-8943-7db197005959" + } + ], + "resourceTypes": [ + { + "resourceType": "attestationProviders", + "locations": [ + "East US 2", + "Central US", + "UK South", + "East US", + "Canada Central", + "Canada East", + "UK West", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "attestationProviders": "2018-09-01-preview", + "operations": "2018-09-01-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Attestation", + "onbehalfSupportedLogCategories": [ + "INF", + "WRN", + "ERR", + "AuditEvent" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "defaultProviders", + "locations": [ + "East US 2", + "Central US", + "UK South", + "East US", + "Canada Central", + "Canada East", + "UK West", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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": [ + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-10-01", + "2018-09-01-preview", + "2018-09-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "attestationProviders": "2018-09-01-preview", + "operations": "2018-09-01-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Attestation", + "onbehalfSupportedLogCategories": [ + "INF", + "WRN", + "ERR", + "AuditEvent" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.GuestConfiguration", + "namespace": "Microsoft.GuestConfiguration", + "authorizations": [ + { + "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9", + "roleDefinitionId": "9c6ffa40-421e-4dc0-9739-76b0699a11de" + } + ], + "resourceTypes": [ + { + "resourceType": "guestConfigurationAssignments", + "locations": [], + "apiVersions": [ + "2020-06-25", + "2018-11-20", + "2018-06-30-preview", + "2018-01-20-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "software", + "locations": [ + "East US 2", + "South Central US" + ], + "apiVersions": [ + "2018-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "softwareUpdates", + "locations": [ + "East US 2", + "South Central US" + ], + "apiVersions": [ + "2018-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "softwareUpdateProfile", + "locations": [ + "East US 2", + "South Central US" + ], + "apiVersions": [ + "2018-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-06-25", + "2018-11-20", + "2018-06-30-preview", + "2018-01-20-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftGuestConfiguration" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false + } + ] + }, + "logs": { + "mdsInfo": [ + { + "mdsEnvironment": "prod", + "serviceIdentity": "MicrosoftGuestConfiguration" + } + ] + }, + "version": "1.0" + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Relay", + "namespace": "Microsoft.Relay", + "authorizations": [ + { + "applicationId": "91bb937c-29c2-4275-982f-9465f0caf03d", + "roleDefinitionId": "6ea9e989-a5f4-4187-8d11-c8db3dd04da1" + }, + { + "applicationId": "80369ed6-5f11-4dd9-bef3-692475845e77" + } + ], + "resourceTypes": [ + { + "resourceType": "namespaces", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US 2", + "West US", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2018-01-01-preview", + "2017-04-01", + "2016-07-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "namespaces/authorizationrules", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/privateEndpointConnections", + "locations": [], + "apiVersions": [ + "2018-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/hybridconnections", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/hybridconnections/authorizationrules", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/wcfrelays", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/wcfrelays/authorizationrules", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01", + "2015-08-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-07-01" + ], + "defaultApiVersion": "2017-04-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-04-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.metricId", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "servicebus" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "servicebus", + "sourceMdmNamespace": "OperationQoSMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "servicebus", + "onbehalfSupportedLogCategories": [ + "HybridConnectionsLogs" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataShare", + "namespace": "Microsoft.DataShare", + "authorization": { + "applicationId": "799f1985-1517-4fe1-af2b-ba3d87d4996b", + "roleDefinitionId": "0146496b-e06f-439a-83be-49fac884edf5" + }, + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-11-01", + "operations": "2018-11-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataShare" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDataShareShoebox", + "sourceMdmNamespace": "RP" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataShare", + "onbehalfsupportedLogCategories": [ + "Shares", + "ShareSubcriptions", + "SentShareSnapshots", + "ReceivedShareSnapshots" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/shares", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/shares/datasets", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/shares/synchronizationSettings", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/shares/invitations", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/sharesubscriptions", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/shares/providersharesubscriptions", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/sharesubscriptions/datasetmappings", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/sharesubscriptions/triggers", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/sharesubscriptions/consumerSourceDataSets", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "listinvitations", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "Southeast Asia", + "UK South", + "West Central US", + "West US 2" + ], + "apiVersions": [ + "2018-11-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-09-01", + "2019-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/rejectInvitation", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/consumerInvitations", + "locations": [ + "Australia East", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview", + "2020-09-01", + "2019-11-01", + "2018-11-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "799f1985-1517-4fe1-af2b-ba3d87d4996b" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-11-01", + "operations": "2018-11-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataShare" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDataShareShoebox", + "sourceMdmNamespace": "RP" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SignalRService", + "namespace": "Microsoft.SignalRService", + "authorizations": [ + { + "applicationId": "cdad765c-f191-43ba-b9f5-7aef392f811d", + "roleDefinitionId": "346b504e-4aec-45d1-be25-a6e10f3cb4fe" + } + ], + "resourceTypes": [ + { + "resourceType": "SignalR", + "locations": [ + "Australia East", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-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 Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-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 Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-01-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US 2", + "East US", + "East US 2", + "West US", + "Central US" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-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 Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-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 Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-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 Central US", + "Southeast Asia", + "Switzerland North", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-05-01", + "2018-10-01", + "2018-03-01-preview" + ], + "defaultApiVersion": "2020-07-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-10-01", + "operations": "2018-10-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.SignalRService" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSignalRServiceShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.SignalRService", + "onbehalfSupportedLogCategories": [ + "AllLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "cdad765c-f191-43ba-b9f5-7aef392f811d" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforMySQL", + "namespace": "Microsoft.DBforMySQL", + "authorizations": [ + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "e6f9f783-1fdb-4755-acaf-abed6c642885", + "roleDefinitionId": "a864a0a2-ab66-47a6-97a8-223dc1379f87" + }, + { + "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "flexibleServers", + "locations": [ + "East US 2", + "West US 2", + "Brazil South", + "Southeast Asia", + "North Europe", + "AUSTRALIA EAST", + "JAPAN EAST", + "KOREA CENTRAL", + "UK SOUTH", + "WEST EUROPE", + "CANADA CENTRAL", + "CENTRAL US", + "EAST US" + ], + "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": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "EAST US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK SOUTH", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "JAPAN EAST", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "AUSTRALIA EAST", + "zones": [] + }, + { + "location": "CANADA CENTRAL", + "zones": [] + }, + { + "location": "Brazil South", + "zones": [] + }, + { + "location": "KOREA CENTRAL", + "zones": [] + } + ], + "metadata": { + "portal": { + "kinds": [] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-07-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDBForMySQLFlexShoeboxProd", + "sourceMdmNamespace": "CustomerFacingMetrics" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftOrcasBreadthServers", + "onbehalfSupportedLogCategories": [ + "MySqlSlowLogs", + "MySqlAuditLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "cb43afba-eb6b-4cef-bf00-758b6c233beb" + } + }, + "capabilities": "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": [ + "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", + "Southeast Asia", + "North Europe", + "AUSTRALIA EAST", + "JAPAN EAST", + "KOREA CENTRAL", + "UK SOUTH", + "WEST EUROPE", + "CANADA CENTRAL", + "CENTRAL US", + "EAST US" + ], + "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", + "Southeast Asia", + "North Europe", + "AUSTRALIA EAST", + "JAPAN EAST", + "KOREA CENTRAL", + "UK SOUTH", + "WEST EUROPE", + "CANADA CENTRAL", + "CENTRAL US", + "EAST US" + ], + "apiVersions": [ + "2020-07-01-privatepreview", + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/azureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/administratorOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/administratorAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/performanceTiers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "UAE North", + "Norway East", + "Switzerland North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/topQueryStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/queryTexts", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/waitStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/resetQueryPerformanceInsightData", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/advisors", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateLinkResources", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnections", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnectionProxies", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/keys", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/start", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/stop", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/upgrade", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-12-01", + "flexibleServers": "2020-07-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "AzureDBProduction", + "sourceMdmNamespace": "MicrosoftSqlElasticServers" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "onbehalfSupportedLogCategories": [ + "MySqlSlowLogs", + "MySqlAuditLogs" + ] + } + ] + } + } + }, + "Microsoft.managedIdentity": { + "applicationId": "ff39e39d-6b44-4bd0-8ef5-a4d02e0e53f6" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache", + "namespace": "Microsoft.Cache", + "authorization": { + "applicationId": "96231a05-34ce-4eb4-aa6a-70759cbb5e83", + "roleDefinitionId": "4f731528-ba85-45c7-acfb-cd0a9b3cf31b" + }, + "resourceTypes": [ + { + "resourceType": "Redis", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West US 2", + "West Central US", + "South India", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "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": [] + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftCache" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "RedisEnterpriseAzureMonitor", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "RedisEnterprise/privateEndpointConnectionProxies", + "locations": [ + "East US", + "West Europe", + "West US", + "East US 2", + "West US 2", + "South Central US", + "UK South", + "Southeast Asia", + "Australia East", + "North Europe", + "Central US" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2021-03-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-07-01", + "2018-03-01", + "2017-10-01", + "2017-02-01", + "2016-04-01", + "2015-08-01", + "2015-03-01", + "2014-04-01-preview", + "2014-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftCache" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "redisinsightsprod", + "sourceMdmNamespace": "ShoeBox" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network", + "namespace": "Microsoft.Network", + "authorizations": [ + { + "applicationId": "2cf9eb86-36b5-49dc-86ae-9a63135dfa8c", + "roleDefinitionId": "13ba9ab4-19f0-4804-adc4-14ece36cc7a1" + }, + { + "applicationId": "7c33bfcb-8d33-48d6-8e60-dc6404003489", + "roleDefinitionId": "ad6261e4-fa9a-4642-aa5f-104f1b67e9e3" + }, + { + "applicationId": "1e3e4475-288f-4018-a376-df66fd7fac5f", + "roleDefinitionId": "1d538b69-3d87-4e56-8ff8-25786fd48261" + }, + { + "applicationId": "a0be0c72-870e-46f0-9c49-c98333a996f7", + "roleDefinitionId": "7ce22727-ffce-45a9-930c-ddb2e56fa131" + }, + { + "applicationId": "486c78bf-a0f7-45f1-92fd-37215929e116", + "roleDefinitionId": "98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d" + }, + { + "applicationId": "19947cfd-0303-466c-ac3c-fcc19a7a1570", + "roleDefinitionId": "d813ab6c-bfb7-413e-9462-005b21f0ce09" + }, + { + "applicationId": "341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd", + "roleDefinitionId": "8141843c-c51c-4c1e-a5bf-0d351594b86c" + }, + { + "applicationId": "328fd23b-de6e-462c-9433-e207470a5727", + "roleDefinitionId": "79e29e06-4056-41e5-a6b2-959f1f47747e" + }, + { + "applicationId": "6d057c82-a784-47ae-8d12-ca7b38cf06b4", + "roleDefinitionId": "c27dd31e-c1e5-4ab0-93e1-a12ba34f182e" + }, + { + "applicationId": "b4ca0290-4e73-4e31-ade0-c82ecfaabf6a", + "roleDefinitionId": "18363e25-ff21-4159-ae8d-7dfecb5bd001" + }, + { + "applicationId": "79d7fb34-4bef-4417-8184-ff713af7a679", + "roleDefinitionId": "1c1f11ef-abfa-4abe-a02b-226771d07fc7" + } + ], + "resourceTypes": [ + { + "resourceType": "virtualNetworks", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-10-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "CNSec", + "onbehalfSupportedLogCategories": [ + "VMProtectionAlerts" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualNetworks/taggedTrafficConsumers", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "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": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "slbv2", + "sourceMdmNamespace": "NatService" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "publicIPAddresses", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "metricsFilterPathSelector": "sku.name", + "mdsInfo": [ + { + "serviceIdentity": "NetMon" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "CNS", + "sourceMdmNamespace": "ShoeboxProd" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "NetMon", + "onbehalfSupportedLogCategories": [ + "DDoSProtectionNotifications", + "DDoSMitigationFlowLogs", + "DDoSMitigationReports" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "customIpPrefixes", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "NetMon" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "CNS", + "sourceMdmNamespace": "BYOIP" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "NetMon", + "onbehalfSupportedLogCategories": [ + "BYOIPNotifications", + "BYOIPReports" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "networkInterfaces", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-10-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-04-01" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "VfpMdm", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "VNetMDMShoebox", + "sourceMdmNamespace": "VNetAzureMonitoring" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateEndpointRedirectMaps", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-10-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "NetMon", + "onbehalfSupportedLogCategories": [ + "LoadBalancerAlertEvents", + "LoadBalancerProbeHealthStatus" + ] + } + ] + }, + "metrics": { + "metricsFilterPathSelector": "sku.name", + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "slbv2", + "sourceMdmNamespace": "Health" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "networkSecurityGroups", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-10-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "LNMAgentService", + "onbehalfSupportedLogCategories": [ + "NetworkSecurityGroupEvent", + "NetworkSecurityGroupRuleCounter", + "NetworkSecurityGroupFlowEvent" + ] + } + ], + "categories": [ + { + "Name": "NetworkSecurityGroupFlowEvent", + "requiredFeatures": [ + "Microsoft.Network/AllowNsgFlowLogging" + ], + "excludeFromEventHub": true + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "applicationSecurityGroups", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "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": [] + } + ], + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "NetworkAnalytics", + "sourceMdmNamespace": "NodePluginHost" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "networkWatchers/flowLogs", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "NetAnalyticsPingMesh", + "sourceMdmNamespace": "PingMesh" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualNetworkGateways", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "metricsFilterPathSelector": "properties.gatewayType", + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "BrkGWTShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid", + "onbehalfSupportedLogCategories": [ + "GatewayDiagnosticLog", + "TunnelDiagnosticLog", + "RouteDiagnosticLog", + "IKEDiagnosticLog", + "P2SDiagnosticLog" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "localNetworkGateways", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2015-06-15" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2017-10-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "HybridGWShoeboxProd", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "applicationGateways", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-09-01" + }, + "metrics": { + "metricsFilterPathSelector": "properties.sku.tier", + "mdmInfo": [ + { + "sourceMdmAccount": "AppGWT", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureApplicationGatewayService", + "onbehalfSupportedLogCategories": [ + "ApplicationGatewayAccessLog", + "ApplicationGatewayPerformanceLog", + "ApplicationGatewayFirewallLog" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "applicationGatewayWebApplicationFirewallPolicies", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "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": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "dnszones", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-04-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2016-04-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2016-04-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "CloudDNSShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "dnsOperationResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnsOperationStatuses", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "getDnsResourceReference", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "internalNotify", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/A", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/AAAA", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/CNAME", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/PTR", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/MX", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/TXT", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/SRV", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/SOA", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/NS", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/CAA", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/recordsets", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "dnszones/all", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01-preview", + "2017-10-01", + "2017-09-15-preview", + "2017-09-01", + "2016-04-01", + "2015-05-04-preview" + ], + "defaultApiVersion": "2018-05-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "PrivateDnsShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateDnsZones/virtualNetworkLinks", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateDnsOperationResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsOperationStatuses", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZonesInternal", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01" + ], + "defaultApiVersion": "2020-01-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/A", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/AAAA", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/CNAME", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/PTR", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/MX", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/TXT", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/SRV", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/SOA", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "privateDnsZones/all", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01", + "2020-01-01", + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "virtualNetworks/privateDnsZoneLinks", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "trafficmanagerprofiles", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01", + "2015-11-01", + "2015-04-28-preview" + ], + "defaultApiVersion": "2018-08-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "TrafficManagerShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "TrafficManager", + "onbehalfSupportedLogCategories": [ + "ProbeHealthStatusEvents" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "trafficmanagerprofiles/heatMaps", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-08-01", + "capabilities": "None" + }, + { + "resourceType": "checkTrafficManagerNameAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01", + "2015-11-01", + "2015-04-28-preview" + ], + "defaultApiVersion": "2018-08-01", + "capabilities": "None" + }, + { + "resourceType": "trafficManagerUserMetricsKeys", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-08-01", + "2018-04-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-08-01", + "capabilities": "None" + }, + { + "resourceType": "trafficManagerGeographicHierarchies", + "locations": [ + "global" + ], + "apiVersions": [ + "2018-08-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2017-05-01", + "2017-03-01" + ], + "defaultApiVersion": "2018-08-01", + "capabilities": "None" + }, + { + "resourceType": "expressRouteCircuits", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01", + "2017-08-01", + "2017-06-01", + "2017-04-01", + "2017-03-01", + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "metricsFilterPathSelector": "properties.globalReachEnabled", + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureERShoeboxProd", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid", + "onbehalfSupportedLogCategories": [ + "PeeringRouteLog" + ] + } + ] + }, + "apiVersions": { + "bastionHosts": "2019-08-01" + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "expressRouteServiceProviders", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01", + "2018-04-01", + "2018-03-01", + "2018-02-01", + "2018-01-01", + "2017-11-01", + "2017-10-01", + "2017-09-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "BrkGWTShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid", + "onbehalfSupportedLogCategories": [ + "GatewayDiagnosticLog", + "TunnelDiagnosticLog", + "RouteDiagnosticLog", + "IKEDiagnosticLog" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "p2sVpnGateways", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "BrkGWTShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid", + "onbehalfSupportedLogCategories": [ + "GatewayDiagnosticLog", + "IKEDiagnosticLog", + "P2SDiagnosticLog" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "expressRouteGateways", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureERShoeboxProd", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "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", + "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-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01" + ], + "defaultApiVersion": "2020-04-01", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "328fd23b-de6e-462c-9433-e207470a5727" + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "ipGroups", + "locations": [ + "UAE North", + "Australia Central 2", + "UAE Central", + "Germany North", + "Central India", + "Korea South", + "Switzerland North", + "Switzerland West", + "Japan West", + "France South", + "South Africa West", + "West India", + "Canada East", + "South India", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "East Asia", + "Southeast Asia", + "Korea Central", + "Brazil South", + "Japan East", + "UK West", + "West US", + "East US", + "North Europe", + "West Europe", + "South Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "East US 2", + "West US 2", + "North Central US", + "Canada Central", + "France Central", + "West Central US", + "Central US" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "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": [ + "2020-11-01", + "2020-08-01" + ], + "defaultApiVersion": "2020-08-01", + "capabilities": "None" + }, + { + "resourceType": "locations/nfvOperations", + "locations": [], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "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": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-06-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFirewall" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureFirewallShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFirewall", + "onbehalfSupportedLogCategories": [ + "AzureFirewallApplicationRule", + "AzureFirewallNetworkRule", + "AzureFirewallDnsProxy" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "azureFirewallFqdnTags", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "VNetMDMShoebox", + "sourceMdmNamespace": "VNetAzureMonitoring" + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/privateLinkServices", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01", + "2018-07-01", + "2018-06-01", + "2018-05-01" + ], + "defaultApiVersion": "2020-03-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "frontdoorOperationResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-11-01", + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2019-03-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-07-01", + "capabilities": "None" + }, + { + "resourceType": "checkFrontdoorNameAvailability", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-07-01", + "2020-05-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-07-01", + "capabilities": "None" + }, + { + "resourceType": "frontdoors", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-07-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureFrontdoorShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor", + "onbehalfSupportedLogCategories": [ + "FrontdoorAccessLog", + "FrontdoorWebApplicationFirewallLog" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "frontdoors/frontendEndpoints", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-07-01", + "capabilities": "None" + }, + { + "resourceType": "frontdoors/frontendEndpoints/customHttpsConfiguration", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-07-01", + "2020-05-01", + "2020-04-01", + "2020-01-01", + "2019-08-01", + "2019-05-01", + "2019-04-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-07-01", + "capabilities": "None" + }, + { + "resourceType": "frontdoorWebApplicationFirewallPolicies", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-11-01", + "2020-04-01", + "2019-10-01", + "2019-03-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-11-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "frontdoorWebApplicationFirewallManagedRuleSets", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-11-01", + "2020-04-01", + "2019-10-01", + "2019-03-01" + ], + "defaultApiVersion": "2020-11-01", + "capabilities": "None" + }, + { + "resourceType": "networkExperimentProfiles", + "locations": [ + "global", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West US", + "West US 2", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2019-11-01" + ], + "defaultApiVersion": "2019-11-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/bareMetalTenants", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "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" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureBastionHostService" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "BrkBastionHost", + "sourceMdmNamespace": "BrkBastion" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureBastionHostService", + "onbehalfSupportedLogCategories": [ + "BastionAuditLogs" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualRouters", + "locations": [ + "UAE North", + "Australia Central 2", + "UAE Central", + "Germany North", + "Central India", + "Korea South", + "Switzerland North", + "Switzerland West", + "Japan West", + "France South", + "South Africa West", + "West India", + "Canada East", + "South India", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "East Asia", + "Southeast Asia", + "Korea Central", + "Brazil South", + "Japan East", + "UK West", + "West US", + "East US", + "North Europe", + "West Europe", + "West Central US", + "South Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "East US 2", + "West US 2", + "North Central US", + "Canada Central", + "France Central", + "Central US" + ], + "apiVersions": [ + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-04-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureERShoeboxProd", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "networkVirtualAppliances", + "locations": [ + "UAE North", + "Australia Central 2", + "UAE Central", + "Germany North", + "Central India", + "Korea South", + "Switzerland North", + "Switzerland West", + "Japan West", + "France South", + "South Africa West", + "West India", + "Canada East", + "South India", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "East Asia", + "Southeast Asia", + "Korea Central", + "Brazil South", + "Japan East", + "UK West", + "West US", + "East US", + "North Europe", + "West Europe", + "West Central US", + "South Central US", + "Australia East", + "Australia Central", + "Australia Southeast", + "UK South", + "East US 2", + "West US 2", + "North Central US", + "Canada Central", + "France Central", + "Central US" + ], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-04-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureHybrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureERShoeboxProd", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "ipAllocations", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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": "networkVirtualApplianceSkus", + "locations": [], + "apiVersions": [ + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01" + ], + "defaultApiVersion": "2020-04-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-09-01", + "trafficmanagerprofiles": "2018-08-01", + "secureGateways": "2018-04-01", + "azureFirewalls": "2018-06-01", + "frontdoors": "2019-04-01", + "expressRouteCircuits": "2019-04-01", + "bastionHosts": "2019-08-01", + "networkWatchers/connectionMonitors": "2017-09-01", + "vpnGateways": "2019-11-01", + "p2SVpnGateways": "2019-11-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "AppGWT", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "2cf9eb86-36b5-49dc-86ae-9a63135dfa8c" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Web", + "namespace": "Microsoft.Web", + "authorization": { + "applicationId": "abfa0a7c-a6b6-4736-8310-5855508787cd", + "roleDefinitionId": "f47ed98b-b063-4a5b-9e10-4b9b44fa7735" + }, + "resourceTypes": [ + { + "resourceType": "publishingUsers", + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "East Asia (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "2020-10-01" + ], + "capabilities": "None" + }, + { + "resourceType": "staticSites", + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2016-03-01", + "staticSites": "2019-08-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "WAWS Shoebox", + "sourceMdmNamespace": "Microsoft/Web/StaticSites" + } + ] + } + } + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/previewStaticSiteWorkflowFile", + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "defaultApiVersion": "2020-06-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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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": [ + "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 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": [ + "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 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": [ + "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", + "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": [ + "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", + "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": [ + "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", + "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": [ + "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", + "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": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "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", + "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": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-09-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "metadata": { + "portal": { + "kinds": [ + { + "kind": "entitlement", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "functionapp", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/DynamicAppServicePlan.svg" + } + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.mdmId", + "metrics": { + "metricsFilterPathSelector": "sku.tier", + "mdmInfo": [ + { + "sourceMdmAccount": "WAWS Shoebox", + "sourceMdmNamespace": "Microsoft/Web/AppServicePlans" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sites", + "locations": [ + "South Central US", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Africa North", + "West US", + "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": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-08-01", + "2016-03-01", + "2015-11-01", + "2015-08-01-preview", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2015-01-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "metadata": { + "portal": { + "kinds": [ + { + "kind": "gateway", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "microservice", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "apiApp", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "api", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/apiapps.svg" + }, + { + "kind": "api,entitlement", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/apiapps.svg" + }, + { + "kind": "entitlement", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webapp.svg", + "blade": { + "name": "EntitlementAppBlade", + "extension": "WebsitesExtension" + } + }, + { + "kind": "mobileapp", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/mobileapps.svg" + }, + { + "kind": "mobileapp,entitlement", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/mobileapps.svg", + "blade": { + "name": "EntitlementAppBlade", + "extension": "WebsitesExtension" + } + }, + { + "kind": "webjob", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webjobs.svg" + }, + { + "kind": "webjob,entitlement", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/webjobs.svg", + "blade": { + "name": "EntitlementAppBlade", + "extension": "WebsitesExtension" + } + }, + { + "kind": "functionapp", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/Functions.svg", + "blade": { + "name": "FunctionsIFrameBlade", + "extension": "WebsitesExtension" + } + }, + { + "kind": "functionappdev", + "icon": "https://appsvcstorage.blob.core.windows.net/portalicons/Functions.svg", + "blade": { + "name": "FunctionsIFrameBlade", + "extension": "WebsitesExtension" + } + } + ] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sites/slots", + "locations": [ + "South Central US", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Africa North", + "West US", + "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": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-11-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-08-01", + "2016-03-01", + "2015-11-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2015-01-01", + "2014-11-01", + "2014-06-01", + "2014-04-01-preview", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "metadata": { + "portal": { + "kinds": [ + { + "kind": "microservice", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "apiApp", + "browseConfig": { + "visibility": "hidden" + } + }, + { + "kind": "gateway", + "browseConfig": { + "visibility": "hidden" + } + } + ] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "runtimes", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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", + "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": [ + "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", + "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": [ + "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" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2016-03-01", + "hostingEnvironments": "2019-01-01" + }, + "mdsMappingResourceIdOverridePathSelector": "id", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Web", + "onbehalfSupportedLogCategories": [ + "AppServiceEnvironmentPlatformLogs" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostingEnvironments/multiRolePools", + "locations": [ + "South Central US", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Africa North", + "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": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2019-02-01", + "2018-11-01", + "2018-08-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-09-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.mdmId", + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "sourceMdmAccount": "WAWS Shoebox", + "sourceMdmNamespace": "Microsoft/Web/AppServiceEnvironments" + } + ] + } + } + } + }, + "capabilities": "None" + }, + { + "resourceType": "hostingEnvironments/workerPools", + "locations": [ + "South Central US", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Africa North", + "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": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2019-02-01", + "2018-11-01", + "2018-08-01", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-09-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.mdmId", + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "sourceMdmAccount": "WAWS Shoebox", + "sourceMdmNamespace": "Microsoft/Web/AppServiceEnvironments" + } + ] + } + } + } + }, + "capabilities": "None" + }, + { + "resourceType": "kubeEnvironments", + "locations": [ + "North Central US (Stage)" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2019-02-01", + "2019-01-01", + "2018-11-01", + "2018-08-01", + "2018-05-01-preview", + "2018-02-01", + "2017-08-01", + "2016-09-01", + "2016-03-01", + "2015-08-01", + "2015-07-01", + "2015-06-01", + "2015-05-01", + "2015-04-01", + "2015-02-01", + "2014-11-01", + "2014-06-01", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-09-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "metadata": {}, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "deploymentLocations", + "locations": [ + "Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "Korea Central", + "Korea South", + "West US", + "East US", + "Japan West", + "Japan East", + "East Asia", + "East US 2", + "North Central US", + "South Central US", + "Brazil South", + "Australia East", + "Australia Southeast", + "West India", + "Central India", + "South India", + "Canada Central", + "Canada East", + "West Central US", + "UK West", + "UK South", + "West US 2", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "North Central US (Stage)", + "France Central", + "South Africa North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "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", + "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": [ + "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": [ + "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", + "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": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "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", + "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": [ + "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", + "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": [ + "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", + "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": [ + "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 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": [ + "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", + "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": [ + "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", + "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": [ + "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" + } + ], + "metadata": { + "dnsSuffix": "azurewebsites.net", + "Microsoft.managedIdentity": { + "applicationId": "abfa0a7c-a6b6-4736-8310-5855508787cd" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.defaultHostName", + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "sourceMdmAccount": "WAWS Shoebox", + "sourceMdmNamespace": "Microsoft/Web/WebApps" + } + ] + }, + "logs": { + "logFilterPathSelector": "kind", + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Web", + "onbehalfSupportedLogCategories": [ + "FunctionAppLogs", + "AppServiceHTTPLogs", + "AppServiceFileAuditLogs", + "AppServiceAuditLogs", + "AppServiceConsoleLogs", + "AppServicePlatformLogs", + "AppServiceIPSecAuditLogs", + "AppServiceAntivirusScanAuditLogs", + "AppServiceAppLogs" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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": [] + } + ], + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "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": [] + } + ], + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId" + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "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": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-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" + ], + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + } + ], + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af" + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "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" + ], + "apiVersions": [ + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-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" + ], + "apiVersions": [ + "2020-12-01", + "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" + ], + "apiVersions": [ + "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": [] + } + ], + "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" + ], + "apiVersions": [ + "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": [] + } + ], + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.hostId" + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356" + }, + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.vmId", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "AzComputeShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ManagedIdentity", + "namespace": "Microsoft.ManagedIdentity", + "resourceTypes": [ + { + "resourceType": "Identities", + "locations": [ + "South Africa North", + "South Africa West", + "UAE North", + "Australia Central", + "Australia East", + "Australia Southeast", + "Canada Central", + "Canada East", + "Brazil South", + "Central India", + "West India", + "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", + "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", + "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" + ], + "apiVersions": [ + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2017-04-26-preview", + "2017-03-15-preview", + "2017-03-03-preview", + "2017-01-01-preview", + "2015-11-01-preview", + "2015-03-20" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-03-01-preview", + "operations": "2020-03-01-preview" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.OperationalInsights", + "onbehalfSupportedLogCategories": [ + "Audit" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2017-04-26-preview" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "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", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East" + ], + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "d2a0a418-0aac-4541-82b2-b3142c89da77" + }, + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-03-01-preview", + "workspaces": "2020-03-01-preview", + "operations": "2020-03-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.OperationalInsights" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "OmsShoeboxMetrics", + "sourceMdmNamespace": "OmsShoeboxMetrics" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Advisor", + "namespace": "Microsoft.Advisor", + "authorization": { + "applicationId": "c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7", + "roleDefinitionId": "8a63b04c-3731-409b-9765-f1175c047872" + }, + "resourceTypes": [ + { + "resourceType": "suppressions", + "locations": [], + "apiVersions": [ + "2020-01-01", + "2017-04-19", + "2017-03-31", + "2016-07-12-preview", + "2016-05-09-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "configurations", + "locations": [], + "apiVersions": [ + "2020-01-01", + "2017-04-19", + "2017-03-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "recommendations", + "locations": [], + "apiVersions": [ + "2020-01-01", + "2017-04-19", + "2017-03-31", + "2016-07-12-preview", + "2016-05-09-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "generateRecommendations", + "locations": [], + "apiVersions": [ + "2020-01-01", + "2017-04-19", + "2017-03-31", + "2016-07-12-preview", + "2016-05-09-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-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" + } + ], + "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": [ + "2019-06-01", + "2019-03-01", + "2018-02-01-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "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": [ + "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": [ + "2020-06-01-preview" + ], + "defaultApiVersion": "2020-06-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2020-06-01-preview", + "2019-12-01-preview", + "2019-12-01", + "2019-01-01", + "2018-06-01-preview", + "2018-01-01", + "2017-03-01", + "2016-10-10", + "2016-07-07", + "2015-09-15", + "2014-02-14" + ], + "defaultApiVersion": "2019-12-01", + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "ApiManagement" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "ApiManagementProd", + "sourceMdmNamespace": "Proxy" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "ApiManagement", + "onbehalfSupportedLogCategories": [ + "GatewayLogs" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "8602e328-9b72-4f2d-a4ae-1387d013a2b3" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-12-01", + "operations": "2019-12-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "ApiManagement" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "ApiManagementProd", + "sourceMdmNamespace": "Proxy" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "ApiManagement", + "onbehalfSupportedLogCategories": [ + "GatewayLogs" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Authorization", + "namespace": "Microsoft.Authorization", + "authorizations": [ + { + "applicationId": "de926fbf-e23b-41f9-ae15-c943a9cfa630" + }, + { + "applicationId": "01fc33a7-78ba-4d2f-a4b7-768e336e890e" + } + ], + "resourceTypes": [ + { + "resourceType": "roleAssignments", + "locations": [], + "apiVersions": [ + "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": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operationStatus", + "locations": [], + "apiVersions": [ + "2020-05-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.managedIdentity": { + "applicationId": "1dcb1bc7-c721-498e-b2fa-bcddcea44171" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Batch", + "namespace": "Microsoft.Batch", + "authorization": { + "applicationId": "ddbf3205-c6bd-46ae-8127-60eb93363864", + "roleDefinitionId": "b7f84953-1d03-4eab-9ea4-45f065258ff8" + }, + "resourceTypes": [ + { + "resourceType": "batchAccounts", + "locations": [ + "West Europe", + "East US", + "East US 2", + "West US", + "North Central US", + "Brazil South", + "North Europe", + "Central US", + "East Asia", + "Japan East", + "Australia Southeast", + "Japan West", + "Korea South", + "Korea Central", + "Southeast Asia", + "South Central US", + "Australia East", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Germany West Central", + "Switzerland North", + "Norway East", + "Brazil Southeast" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2021-01-01", + "2020-09-01", + "2020-05-01", + "2020-03-01-preview", + "2020-03-01", + "2019-08-01", + "2019-04-01", + "2018-12-01", + "2017-09-01", + "2017-05-01", + "2017-01-01", + "2015-12-01", + "2015-09-01", + "2015-07-01", + "2014-05-01-privatepreview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureBatch" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "BatchProdShoebox", + "sourceMdmNamespace": "BatchShoeboxMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureBatch", + "onbehalfSupportedLogCategories": [ + "ServiceLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "ddbf3205-c6bd-46ae-8127-60eb93363864", + "delegationAppIds": [ + "ddbf3205-c6bd-46ae-8127-60eb93363864" + ] + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cdn", + "namespace": "Microsoft.Cdn", + "authorizations": [], + "resourceTypes": [ + { + "resourceType": "profiles", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "metadata": { + "portal": { + "kinds": [ + { + "kind": "frontdoor", + "icon": "https://afdxportalprod.blob.core.windows.net/portalicons/frontdoor.svg", + "blade": { + "name": "ProfileBlade", + "extension": "Microsoft_Azure_Cdn" + } + }, + { + "kind": "cdn", + "icon": "https://afdxportalprod.blob.core.windows.net/portalicons/cdn.svg", + "blade": { + "name": "ProfileBlade", + "extension": "Microsoft_Azure_Cdn" + } + } + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-10-12" + }, + "metrics": { + "metricsFilterPathSelector": "sku.name", + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureFrontdoorShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "logFilterPathSelector": "sku.name", + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor", + "onbehalfSupportedLogCategories": [ + "AzureCdnAccessLog", + "FrontDoorHealthProbeLog", + "FrontDoorAccessLog", + "FrontDoorWebApplicationFirewallLog" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "profiles/endpoints", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-10-02" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureCdn", + "onbehalfSupportedLogCategories": [ + "CoreAnalytics" + ] + } + ] + }, + "regionLess": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "profiles/endpoints/origins", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "profiles/endpoints/origingroups", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31" + ], + "defaultApiVersion": "2019-12-31", + "capabilities": "None" + }, + { + "resourceType": "profiles/endpoints/customdomains", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operationresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/endpointresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/endpointresults/originresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/endpointresults/origingroupresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31" + ], + "defaultApiVersion": "2019-12-31", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/endpointresults/customdomainresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "checkResourceUsage", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "validateProbe", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "edgenodes", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US", + "West Central US" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2020-03-31", + "2019-12-31", + "2019-06-15-preview", + "2019-04-15", + "2018-04-02", + "2017-10-12", + "2017-04-02", + "2016-10-02", + "2016-04-02", + "2015-06-01" + ], + "defaultApiVersion": "2017-10-12", + "capabilities": "None" + }, + { + "resourceType": "CdnWebApplicationFirewallPolicies", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2019-06-15-preview" + ], + "defaultApiVersion": "2019-06-15-preview", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-06-15-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureFrontdoorShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor", + "onbehalfSupportedLogCategories": [ + "WebApplicationFirewallLogs" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "CdnWebApplicationFirewallManagedRuleSets", + "locations": [], + "apiVersions": [ + "2020-09-01", + "2020-04-15", + "2019-06-15-preview" + ], + "defaultApiVersion": "2019-06-15-preview", + "capabilities": "None" + }, + { + "resourceType": "profiles/afdendpoints", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "profiles/afdendpoints/routes", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/customdomains", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/origingroups", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/origingroups/origins", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/rulesets", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/rulesets/rules", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/secrets", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "profiles/securitypolicies", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/afdendpointresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/afdendpointresults/routeresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/customdomainresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/origingroupresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/origingroupresults/originresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/rulesetresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/rulesetresults/ruleresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/secretresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + }, + { + "resourceType": "operationresults/profileresults/securitypoliciesresults", + "locations": [ + "global", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "South Central US", + "South India", + "Southeast Asia", + "West Europe", + "West India", + "West US" + ], + "apiVersions": [ + "2020-09-01" + ], + "defaultApiVersion": "2020-09-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-10-02", + "CdnWebApplicationFirewallPolicies": "2019-06-15-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureFrontdoor" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureFrontdoorShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CertificateRegistration", + "namespace": "Microsoft.CertificateRegistration", + "authorization": { + "applicationId": "f3c21649-0979-4721-ac85-b0216b2cf413", + "roleDefinitionId": "933fba7e-2ed3-4da8-973d-8bd8298a9b40" + }, + "resourceTypes": [ + { + "resourceType": "certificateOrders", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "certificateOrders/certificates", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "validateCertificateRegistrationInformation", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-08-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicCompute", + "namespace": "Microsoft.ClassicCompute", + "resourceTypes": [ + { + "resourceType": "domainNames", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "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", + "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" + ], + "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" + ], + "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" + ], + "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", + "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", + "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/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" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "resourceTypes", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "moveSubscriptionResources", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01" + ], + "capabilities": "None" + }, + { + "resourceType": "validateSubscriptionMoveAvailability", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operationStatuses", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operatingSystems", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operatingSystemFamilies", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2014-06-01", + "operations": "2017-04-01" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "AzComputeShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicNetwork", + "namespace": "Microsoft.ClassicNetwork", + "resourceTypes": [ + { + "resourceType": "virtualNetworks", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Australia Central", + "Germany West Central", + "Norway East" + ], + "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", + "Australia Central", + "Germany West Central", + "Norway East" + ], + "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", + "Australia Central", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01" + ], + "defaultApiVersion": "2015-06-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.networkSecurityGroupId", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "LNMAgentService", + "onbehalfSupportedLogCategories": [ + "NetworkSecurityGroupFlowEvent" + ] + } + ], + "categories": [ + { + "Name": "NetworkSecurityGroupFlowEvent", + "requiredFeatures": [ + "Microsoft.Network/AllowNsgFlowLogging" + ], + "excludeFromEventHub": true + } + ] + } + } + } + }, + "capabilities": "SupportsLocation" + }, + { + "resourceType": "capabilities", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "expressRouteCrossConnections", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "expressRouteCrossConnections/peerings", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-10-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2015-06-01" + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicStorage", + "namespace": "Microsoft.ClassicStorage", + "resourceTypes": [ + { + "resourceType": "storageAccounts", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "East US 2 (Stage)", + "North Central US (Stage)", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "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", + "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" + ], + "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", + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "capabilities", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "storageAccounts/blobServices", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "storageAccounts/tableServices", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "storageAccounts/fileServices", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "storageAccounts/queueServices", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "vmImages", + "locations": [], + "apiVersions": [ + "2016-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "storageAccounts/vmImages", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-04-01-beta", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "publicImages", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "osImages", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "osPlatformImages", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2016-04-01-beta", + "2016-04-01", + "2015-12-01", + "2015-06-01", + "2014-06-01", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-11-01", + "operations": "2016-11-01" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "XStoreShoebox", + "sourceMdmNamespace": "XStore" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CognitiveServices", + "namespace": "Microsoft.CognitiveServices", + "authorizations": [ + { + "applicationId": "7d312290-28c8-473c-a0ed-8e53749b6d6d", + "roleDefinitionId": "5cb87f79-a7c3-4a95-9414-45b65974b51b" + } + ], + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany West Central" + ], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2017-04-18", + "2016-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkDomainAvailability", + "locations": [], + "apiVersions": [ + "2017-04-18" + ], + "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": [ + "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": [ + "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": [ + "2017-04-18" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-04-18" + }, + "metrics": { + "metricsFilterPathSelector": "kind", + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftCognitiveServices" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "CognitiveServicesShoebox", + "sourceMdmNamespace": "Microsoft.CognitiveServices" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "mdsEnvironment": "prod", + "serviceIdentity": "MicrosoftCognitiveServices", + "onbehalfSupportedLogCategories": [ + "Audit", + "RequestResponse", + "Trace" + ] + } + ] + }, + "regionless": true + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "7d312290-28c8-473c-a0ed-8e53749b6d6d" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DocumentDB", + "namespace": "Microsoft.DocumentDB", + "authorizations": [ + { + "applicationId": "57c0fc58-a83a-41d0-8ae9-08952659bdfd", + "roleDefinitionId": "FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282" + }, + { + "applicationId": "36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9", + "roleDefinitionId": "D5A795DE-916D-4818-B015-33C9E103E39B" + }, + { + "applicationId": "a232010e-820c-4083-83bb-3ace5fc29d0b", + "roleDefinitionId": "D5A795DE-916D-4818-B015-33C9E103E39B" + } + ], + "resourceTypes": [ + { + "resourceType": "databaseAccounts", + "locations": [ + "East US", + "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" + ], + "apiVersions": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "defaultApiVersion": "2020-06-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a232010e-820c-4083-83bb-3ace5fc29d0b" + }, + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftAzureCosmosDB", + "onbehalfSupportedLogCategories": [ + "DataPlaneRequests", + "MongoRequests" + ] + } + ] + }, + "mdsMappingResourceIdOverridePathSelector": "name" + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "databaseAccountNames", + "locations": [ + "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": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "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": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "operationResults", + "locations": [ + "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": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationsStatus", + "locations": [ + "East US", + "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" + ], + "apiVersions": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "East US", + "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" + ], + "apiVersions": [ + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "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": [ + "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": [ + "East US", + "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" + ], + "apiVersions": [ + "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": [ + "East US", + "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" + ], + "apiVersions": [ + "2020-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "restorableDatabaseAccounts", + "locations": [ + "East US", + "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" + ], + "apiVersions": [ + "2020-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cassandraClusters", + "locations": [ + "East US", + "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" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "defaultApiVersion": "2021-03-01-preview", + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-03-31", + "operations": "2016-03-31" + }, + "mdsMappingResourceIdOverridePathSelector": "name", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftAzureCosmosDB" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "DocumentDB", + "sourceMdmNamespace": "DocDB" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EventGrid", + "namespace": "Microsoft.EventGrid", + "authorizations": [ + { + "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7", + "roleDefinitionId": "7FE036D8-246F-48BF-A78F-AB3EE699C8F3" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/eventSubscriptions", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "eventSubscriptions", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "topics", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "domains", + "locations": [ + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2018-09-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "domains/topics", + "locations": [ + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2018-09-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "topicTypes", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationsStatus", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/topicTypes", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "extensionTopics", + "locations": [ + "West US 2", + "East US", + "West US", + "Central US", + "East US 2", + "West Central US", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operationResults", + "locations": [], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operationsStatus", + "locations": [], + "apiVersions": [ + "2020-10-15-preview", + "2020-06-01", + "2020-04-01-preview", + "2020-01-01-preview", + "2019-06-01", + "2019-02-01-preview", + "2019-01-01", + "2018-09-15-preview", + "2018-05-01-preview", + "2018-01-01", + "2017-09-15-preview", + "2017-06-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "systemTopics", + "locations": [ + "global", + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2020-04-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.EventGrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureEventGrid", + "sourceMdmNamespace": "resourceMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "eventgrid", + "onbehalfSupportedLogCategories": [ + "DeliveryFailures" + ] + } + ] + }, + "regionless": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "systemTopics/eventSubscriptions", + "locations": [ + "global", + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "partnerRegistrations", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "partnerNamespaces", + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "partnerTopics", + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "partnerTopics/eventSubscriptions", + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "partnerNamespaces/eventChannels", + "locations": [ + "West Central US", + "Central US", + "West US 2", + "East US", + "West US", + "East US 2", + "Australia East", + "Australia Southeast", + "Australia Central", + "Japan East", + "Japan West", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Central US", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "France Central", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2020-10-15-preview", + "2020-04-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2020-04-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.EventGrid" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureEventGrid", + "sourceMdmNamespace": "resourceMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "eventgrid", + "onbehalfSupportedLogCategories": [ + "DeliveryFailures", + "PublishFailures" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Devices", + "namespace": "Microsoft.Devices", + "authorizations": [ + { + "applicationId": "0cd79364-7a90-4354-9984-6e36c841418d", + "roleDefinitionId": "C121DF10-FE58-4BC4-97F9-8296879F7BBB" + }, + { + "applicationId": "29f411f1-b2cf-4043-8ac8-2185d7316811" + }, + { + "applicationId": "89d10474-74af-4874-99a7-c23c2f643083", + "roleDefinitionId": "7df22794-26e3-4f94-9d50-a4f0f6e1cb41" + } + ], + "resourceTypes": [ + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2020-08-31-preview", + "2020-08-31", + "2020-08-01", + "2020-07-10-preview", + "2020-06-15", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-11-04", + "2019-07-01-preview", + "2019-03-22-preview", + "2019-03-22", + "2018-12-01-preview", + "2018-04-01-preview", + "2018-04-01", + "2018-01-22", + "2017-07-01", + "2017-01-19", + "2016-02-03", + "2015-08-15-preview" + ], + "defaultApiVersion": "2020-01-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureIotHub" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDevicesShoebox", + "sourceMdmNamespace": "ShoeboxMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureIotHub", + "onbehalfSupportedLogCategories": [ + "Connections", + "DeviceTelemetry", + "C2DCommands", + "DeviceIdentityOperations", + "FileUploadOperations", + "Routes", + "D2CTwinOperations", + "C2DTwinOperations", + "TwinQueries", + "JobsOperations", + "DirectMethods", + "DistributedTracing", + "DeviceStreams" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "IotHubs/eventGridFilters", + "locations": [ + "West US", + "East US", + "West US 2", + "West Central US", + "East US 2", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "UK South", + "UK West", + "South India", + "Central India", + "Canada Central", + "Canada East", + "Brazil South", + "South Central US", + "Korea South", + "Korea Central", + "France Central", + "North Central US", + "Australia Central", + "Australia Central 2", + "Germany North", + "Germany West Central", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North" + ], + "apiVersions": [ + "2018-07-31", + "2018-01-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "ProvisioningServices", + "locations": [ + "East US", + "West US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast", + "Japan West", + "Japan East", + "UK West", + "UK South", + "East US 2", + "Central US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "Australia Central", + "Australia Central 2", + "France Central", + "France South", + "Canada East", + "Canada Central", + "Korea South", + "Korea Central", + "Central India", + "South India", + "Brazil South" + ], + "apiVersions": [ + "2020-03-01", + "2020-01-01", + "2018-01-22", + "2017-11-15", + "2017-08-21-preview" + ], + "defaultApiVersion": "2020-01-01", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "0cd79364-7a90-4354-9984-6e36c841418d" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureIotDps" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDevicesShoebox", + "sourceMdmNamespace": "ShoeboxMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureIotDps", + "onbehalfSupportedLogCategories": [ + "DeviceOperations", + "ServiceOperations" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "IotHubs/securitySettings", + "locations": [ + "West US", + "North Europe", + "East Asia", + "East US", + "West Europe", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "West US 2", + "West Central US", + "East US 2", + "Central US", + "UK South", + "UK West", + "South India", + "Central India", + "Canada Central", + "Canada East", + "Brazil South", + "South Central US", + "Korea South", + "Korea Central", + "France Central", + "North Central US", + "Australia Central", + "Australia Central 2", + "Germany North", + "Germany West Central", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North" + ], + "apiVersions": [ + "2019-09-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "89d10474-74af-4874-99a7-c23c2f643083" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2018-04-01", + "IotHubs": "2018-04-01", + "ProvisioningServices": "2018-01-22", + "ElasticPools": "2018-01-22-preview", + "ElasticPools/IotHubTenants": "2018-01-22-preview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDevicesShoebox", + "sourceMdmNamespace": "ShoeboxMetrics" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataLakeStore", + "namespace": "Microsoft.DataLakeStore", + "authorization": { + "applicationId": "e9f49c6b-5ce5-44c8-925d-015017e9f7ad", + "roleDefinitionId": "17eb9cca-f08a-4499-b2d3-852d175f614f" + }, + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe", + "Australia East" + ], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "defaultApiVersion": "2016-11-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/firewallRules", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe", + "Australia East" + ], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/eventGridFilters", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe", + "Australia East" + ], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capability", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.accountId", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataLake" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureDataLake", + "sourceMdmNamespace": "Microsoft.DataLakeStore" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataLake", + "onbehalfSupportedLogCategories": [ + "Audit", + "Requests" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "e9f49c6b-5ce5-44c8-925d-015017e9f7ad" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DomainRegistration", + "namespace": "Microsoft.DomainRegistration", + "authorization": { + "applicationId": "ea2f600a-4980-45b7-89bf-d34da487bda1", + "roleDefinitionId": "54d7f2e3-5040-48a7-ae90-eebf629cfa0b" + }, + "resourceTypes": [ + { + "resourceType": "domains", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "domains/domainOwnershipIdentifiers", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "topLevelDomains", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "checkDomainAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "listDomainRecommendations", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "validateDomainRegistrationInformation", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "generateSsoRequest", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-08-01", + "2018-02-01", + "2015-04-01", + "2015-02-01" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EventHub", + "namespace": "Microsoft.EventHub", + "authorizations": [ + { + "applicationId": "80369ed6-5f11-4dd9-bef3-692475845e77", + "roleDefinitionId": "eb8e1991-5de0-42a6-a64b-29b059341b7b" + }, + { + "applicationId": "6201d19e-14fb-4472-a2d6-5634a5c97568" + } + ], + "resourceTypes": [ + { + "resourceType": "namespaces", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "2018-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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/eventhubs", + "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/eventhubs/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/eventhubs/consumergroups", + "locations": [], + "apiVersions": [ + "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": "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/disasterrecoveryconfigs", + "locations": [], + "apiVersions": [ + "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" + }, + { + "resourceType": "availableClusterRegions", + "locations": [], + "apiVersions": [ + "2018-01-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-01-01-preview" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-04-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.metricId", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "servicebus" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "servicebus", + "sourceMdmNamespace": "ServiceBusMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "servicebus", + "onbehalfSupportedLogCategories": [ + "ArchiveLogs", + "OperationalLogs", + "AutoScaleLogs", + "KafkaCoordinatorLogs", + "EventHubVNetConnectionEvent", + "CustomerManagedKeyUserLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "6201d19e-14fb-4472-a2d6-5634a5c97568" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HDInsight", + "namespace": "Microsoft.HDInsight", + "authorizations": [ + { + "applicationId": "9191c4da-09fe-49d9-a5f1-d41cbe92ad95", + "roleDefinitionId": "d102a6f3-d9cb-4633-8950-1243b975886c", + "managedByRoleDefinitionId": "346da55d-e1db-4a5a-89db-33ab3cdb6fc6" + }, + { + "applicationId": "7865c1d2-f040-46cc-875f-831a1ef6a28a", + "roleDefinitionId": "e27c0895-d168-46d5-8b65-870eb2350378" + } + ], + "resourceTypes": [ + { + "resourceType": "clusters", + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East" + ], + "apiVersions": [ + "2018-06-01-preview", + "2015-03-01-preview" + ], + "defaultApiVersion": "2015-03-01-preview", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftHDInsight" + } + ], + "metricsFilterPathSelector": "properties.clusterDefinition.kind", + "mdmInfo": [ + { + "sourceMdmAccount": "HdInsight", + "sourceMdmNamespace": "HdInsightIaasCluster" + } + ] + }, + "mdsMappingResourceIdOverridePathSelector": "name" + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "clusters/applications", + "locations": [ + "East US 2", + "South Central US", + "Australia Southeast", + "Central India", + "West Central US", + "West US 2", + "Canada East", + "Canada Central", + "Brazil South", + "UK South", + "UK West", + "East Asia", + "Australia East", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "North Central US", + "Central US", + "Southeast Asia", + "East US", + "Korea South", + "Korea Central", + "West US", + "South India", + "France Central", + "UAE North", + "UAE Central", + "Switzerland North", + "Switzerland West", + "South Africa North", + "Germany West Central", + "Brazil Southeast", + "Norway East" + ], + "apiVersions": [ + "2018-06-01-preview", + "2015-03-01-preview" + ], + "defaultApiVersion": "2015-03-01-preview", + "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": [ + "2018-06-01-preview", + "2015-03-01-preview" + ], + "defaultApiVersion": "2015-03-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "9191c4da-09fe-49d9-a5f1-d41cbe92ad95" + }, + "createdDate": "2015-06-02", + "updatedDate": "2018-02-08", + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "metricsFilterPathSelector": "properties.clusterDefinition.kind", + "mdmInfo": [ + { + "sourceMdmAccount": "HdInsight", + "sourceMdmNamespace": "HdInsightIaasCluster" + } + ] + }, + "apiVersions": { + "default": "2015-03-01-preview" + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.KeyVault", + "namespace": "Microsoft.KeyVault", + "authorizations": [ + { + "applicationId": "cfa8b339-82a2-471a-a3c9-0fc0be7a4093", + "roleDefinitionId": "1cf9858a-28a2-4228-abba-94e606305b95" + }, + { + "applicationId": "589d5083-6f11-4d30-a62a-a4b316a14abf" + } + ], + "resourceTypes": [ + { + "resourceType": "vaults", + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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": [ + "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": [ + "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" + ], + "apiVersions": [ + "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": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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": [ + "2020-04-01-preview" + ], + "defaultApiVersion": "2020-04-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2015-06-01" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureKeyVault", + "mdsEnvironment": "prod", + "onbehalfSupportedLogCategories": [ + "AuditEvent" + ] + } + ] + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureKeyVault" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftKeyVaultShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Media", + "namespace": "Microsoft.Media", + "authorization": { + "applicationId": "374b2a64-3b6b-436b-934c-b820eacca870", + "roleDefinitionId": "aab70789-0cec-44b5-95d7-84b64c9487af" + }, + "resourceTypes": [ + { + "resourceType": "mediaservices", + "locations": [ + "Japan West", + "Japan East", + "East Asia", + "Southeast Asia", + "West Europe", + "North Europe", + "East US", + "West US", + "Australia East", + "Australia Southeast", + "East US 2", + "Central US", + "Brazil South", + "Central India", + "West India", + "South India", + "North Central US", + "South Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West", + "UAE Central", + "UAE North", + "Germany West Central", + "Germany North", + "Switzerland West", + "Switzerland North", + "Norway East" + ], + "apiVersions": [ + "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": "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-05-01", + "2018-07-01" + ], + "defaultApiVersion": "2018-07-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview", + "2018-02-05", + "2015-10-01", + "2015-04-01" + ], + "defaultApiVersion": "2018-07-01", + "capabilities": "None" + }, + { + "resourceType": "checknameavailability", + "locations": [], + "apiVersions": [ + "2015-10-01", + "2015-04-01" + ], + "defaultApiVersion": "2015-10-01", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-05-01", + "2018-07-01", + "2018-06-01-preview", + "2018-03-30-preview" + ], + "defaultApiVersion": "2018-07-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-07-01", + "operations": "2018-07-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Media" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftMediaServicesShoebox", + "sourceMdmNamespace": "MicrosoftMediaStreamingEndpoint" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Media", + "onbehalfSupportedLogCategories": [ + "KeyDeliveryRequests" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "374b2a64-3b6b-436b-934c-b820eacca870" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MachineLearning", + "namespace": "Microsoft.MachineLearning", + "authorization": { + "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385", + "roleDefinitionId": "1cc297bc-1829-4524-941f-966373421033" + }, + "resourceTypes": [ + { + "resourceType": "Workspaces", + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "West Central US" + ], + "apiVersions": [ + "2016-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "webServices", + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "South Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "South Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationsStatus", + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "commitmentPlans", + "locations": [ + "South Central US", + "West Europe", + "Southeast Asia", + "Japan East", + "East US 2", + "West Central US" + ], + "apiVersions": [ + "2017-01-01", + "2016-05-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.NotificationHubs", + "namespace": "Microsoft.NotificationHubs", + "resourceTypes": [ + { + "resourceType": "namespaces", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "namespaces/notificationHubs", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNamespaceAvailability", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operationResults", + "locations": [ + "Australia East", + "Australia Southeast", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Germany West Central", + "Australia Central", + "Australia Central 2" + ], + "apiVersions": [ + "2017-04-01", + "2016-03-01", + "2014-09-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "NotificationHubs", + "sourceMdmNamespace": "HubMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "NotificationHubs", + "onbehalfSupportedLogCategories": [ + "OperationalLogs" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage", + "namespace": "Microsoft.Storage", + "authorizations": [ + { + "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b", + "roleDefinitionId": "070ab87f-0efc-4423-b18b-756f3bdb0236" + }, + { + "applicationId": "e406a681-f3d4-42a8-90b6-c2b029497af1" + } + ], + "resourceTypes": [ + { + "resourceType": "deletedAccounts", + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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": [] + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b" + }, + "portal": { + "kinds": [ + { + "kind": "BlobStorage", + "icon": "\u003Csvg viewBox=\u00270 0 50 50\u0027 class=\u0027msportalfx-svg-placeholder\u0027 role=\u0027img\u0027 xmlns:svg=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 focusable=\u0027false\u0027\u003E\u003Cpath d=\u0027M0,44.8c0,1,0.8,1.9,1.8,1.9h46.3c1,0,1.9-0.8,1.9-1.9l0-33.1H0V44.8z\u0027 class=\u0027msportalfx-svg-c03\u0027\u003E\u003C/path\u003E\u003Cpath d=\u0027M48.1,4H1.8C0.8,4,0,4.9,0,5.9v5.7h50l0-5.7C50,4.9,49.2,4,48.1,4\u0027 class=\u0027msportalfx-svg-c04\u0027\u003E\u003C/path\u003E\u003Cpath opacity=\u00270.8\u0027 d=\u0027M38,21.2v-2.4H22.8l-3.6-3.6H9.7v26.3c0,0.8,0.6,1.4,1.4,1.4l0,0h27.2c0.8,0,1.4-0.6,1.4-1.4 V21.2H38z\u0027 class=\u0027msportalfx-svg-c01\u0027\u003E\u003C/path\u003E\u003Cpath d=\u0027M12.5,21.2v20.3c0,0.8-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4V15.2h9.6l3.6,3.6H38v2.4H12.5z\u0027 class=\u0027msportalfx-svg-c10\u0027\u003E\u003C/path\u003E\u003Cpath opacity=\u00270.2\u0027 d=\u0027M2,4C0.9,4,0,4.9,0,6v7.3v3.3v28c0,1.1,0.9,2,2,2h2.2L43.6,4H2z\u0027 class=\u0027msportalfx-svg-c01\u0027\u003E\u003C/path\u003E\u003C/svg\u003E" + } + ] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada East", + "Canada Central", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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-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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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-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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-12-01", + "operations": "2016-12-01" + }, + "metrics": { + "metricsFilterPathSelector": "sku.tier", + "mdsInfo": [ + { + "serviceIdentity": "XStore" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "XStoreShoebox", + "sourceMdmNamespace": "XStore" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Xstore", + "onbehalfSupportedLogCategories": [ + "StorageRead", + "StorageWrite", + "StorageDelete" + ] + } + ] + } + } + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceHealth", + "namespace": "Microsoft.ResourceHealth", + "authorizations": [ + { + "applicationId": "8bdebf23-c0fe-4187-a378-717ad86f6a53", + "roleDefinitionId": "cc026344-c8b1-4561-83ba-59eba84b27cc" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilityStatuses", + "locations": [], + "apiVersions": [ + "2020-05-01-preview", + "2020-05-01", + "2018-08-01-rc", + "2018-08-01-preview", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01", + "2017-07-01", + "2015-01-01" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "childAvailabilityStatuses", + "locations": [], + "apiVersions": [ + "2018-11-06-beta", + "2018-08-01-rc", + "2018-08-01-preview", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01-beta", + "2017-07-01-rc", + "2017-07-01-preview", + "2017-07-01-beta", + "2015-01-01-rc", + "2015-01-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "childResources", + "locations": [], + "apiVersions": [ + "2018-11-06-beta", + "2018-08-01-rc", + "2018-08-01-preview", + "2018-07-01-rc", + "2018-07-01-preview", + "2018-07-01-beta", + "2017-07-01-rc", + "2017-07-01-preview", + "2017-07-01-beta", + "2015-01-01-rc", + "2015-01-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "events", + "locations": [], + "apiVersions": [ + "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" + }, + { + "resourceType": "notifications", + "locations": [ + "Australia Southeast" + ], + "apiVersions": [ + "2016-09-01", + "2016-06-01" + ], + "capabilities": "SupportsExtension" + } + ], + "metadata": { + "supportedResourceTypes": [ + "Microsoft.Cache/Redis", + "Microsoft.ClassicCompute/virtualMachines", + "Microsoft.Compute/virtualMachines", + "Microsoft.Sql/servers/databases", + "Microsoft.Web/sites", + "Microsoft.media/mediaservices", + "Microsoft.Network/virtualnetworkgateways", + "Microsoft.Network/connections", + "Microsoft.Search/Searchservices", + "Microsoft.Notificationhubs/namespaces", + "Microsoft.Cdn/profiles", + "Microsoft.Documentdb/databaseaccounts", + "Microsoft.DataLakeStore/accounts", + "Microsoft.DataLakeAnalytics/accounts", + "Microsoft.DataShare/accounts", + "Microsoft.Web/serverFarms", + "Microsoft.StreamAnalytics/streamingjobs", + "Microsoft.CognitiveServices/accounts", + "Microsoft.EventHub/namespaces", + "Microsoft.ServiceBus/namespaces", + "Microsoft.OperationalInsights/workspaces", + "Microsoft.ApiManagement/service", + "Microsoft.Devices/IotHubs", + "Microsoft.Network/LoadBalancers", + "Microsoft.Network/expressRouteCircuits", + "Microsoft.Network/trafficmanagerprofiles", + "Microsoft.Storage/storageAccounts", + "Microsoft.AnalysisServices/servers", + "Microsoft.KeyVault/vaults", + "Microsoft.DataMigration/services", + "Microsoft.MachineLearning/webServices", + "Microsoft.ServiceFabric/clusters", + "Microsoft.HdInsight/clusters", + "Microsoft.PowerBIDedicated/capacities", + "Microsoft.DataFactory/factories", + "Microsoft.IoTCentral/IoTApps", + "Microsoft.Sql/managedInstances/databases", + "Microsoft.DBforMariaDB/servers", + "Microsoft.DBforMySQL/servers", + "Microsoft.DBforPostgreSQL/servers", + "Microsoft.Network/applicationGateways", + "Microsoft.Network/frontdoors", + "Microsoft.Batch/batchAccounts", + "microsoft.Kusto/Clusters", + "microsoft.ContainerService/managedClusters", + "Microsoft.RecoveryServices/vaults", + "Microsoft.Compute/hostGroups/hosts", + "Microsoft.ClassicCompute/DomainNames", + "Microsoft.AppPlatform/Spring", + "Microsoft.Compute/virtualMachineScaleSets", + "Microsoft.HybridCompute/machines", + "Microsoft.DigitalTwins/DigitalTwinsInstances", + "Microsoft.Synapse/workspaces", + "Microsoft.Network/bastionHosts" + ], + "Microsoft.IdMapping": { + "vmId": "properties.roleId", + "roleId": "properties.vmId" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PolicyInsights", + "namespace": "Microsoft.PolicyInsights", + "authorizations": [ + { + "applicationId": "1d78a85d-813d-46f0-b496-dd72f50a3ec0", + "roleDefinitionId": "63d2b225-4c34-4641-8768-21a1f7c68ce8" + }, + { + "applicationId": "8cae6e77-e04e-42ce-b5cb-50d82bce26b1", + "roleDefinitionId": "4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7" + } + ], + "resourceTypes": [ + { + "resourceType": "policyEvents", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview", + "2018-04-04", + "2017-12-12-preview", + "2017-10-17-preview", + "2017-08-09-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "policyStates", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview", + "2018-04-04", + "2017-12-12-preview", + "2017-10-17-preview", + "2017-08-09-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview", + "2018-04-04", + "2017-12-12-preview", + "2017-10-17-preview", + "2017-08-09-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "asyncOperationResults", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2018-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "remediations", + "locations": [], + "apiVersions": [ + "2019-07-01", + "2018-07-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "policyTrackedResources", + "locations": [], + "apiVersions": [ + "2018-07-01-preview" + ], + "capabilities": "SupportsExtension" + } + ], + "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" + } + ], + "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" + ], + "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 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", + "West Central US" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2019-08-01", + "2017-08-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "settings", + "locations": [ + "Central US", + "East US" + ], + "apiVersions": [ + "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" + } + ], + "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" + ], + "apiVersions": [ + "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/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" + ], + "apiVersions": [ + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/disasterrecoveryconfigs", + "locations": [], + "apiVersions": [ + "2018-01-01-preview", + "2017-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "namespaces/disasterrecoveryconfigs/checkNameAvailability", + "locations": [], + "apiVersions": [ + "2017-04-01", + "2015-08-01", + "2014-09-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2018-01-01-preview", + "2017-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "locations": [], + "apiVersions": [ + "2018-01-01-preview", + "2017-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-04-01" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-04-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.metricId", + "metrics": { + "metricsFilterPathSelector": "sku.tier", + "mdsInfo": [ + { + "serviceIdentity": "servicebus" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "servicebus", + "sourceMdmNamespace": "ServiceBusMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "servicebus", + "onbehalfSupportedLogCategories": [ + "OperationalLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "eb070ea5-bd17-41f1-ad68-5851f6e71774" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StorSimple", + "namespace": "Microsoft.StorSimple", + "resourceTypes": [ + { + "resourceType": "managers", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "Brazil South", + "East Asia", + "Southeast Asia", + "West Central US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2019-05-13", + "2017-06-01", + "2017-05-15", + "2017-01-01", + "2016-10-01", + "2016-06-01", + "2015-03-15", + "2014-09-01" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "West Central US", + "Southeast Asia" + ], + "apiVersions": [ + "2019-05-13", + "2016-10-01", + "2016-06-01", + "2015-03-15", + "2014-09-01" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.visualstudio", + "namespace": "microsoft.visualstudio", + "authorization": { + "applicationId": "499b84ac-1321-427f-aa17-267ca6975798", + "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8" + }, + "resourceTypes": [ + { + "resourceType": "account", + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "None" + }, + { + "resourceType": "account/project", + "locations": [ + "East Asia", + "Southeast Asia", + "Australia East", + "Brazil South", + "Canada Central", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "West India", + "Central India", + "South India", + "Central US", + "East US", + "East US 2", + "North Central US", + "South Central US", + "West Central US", + "UK South", + "West US", + "West US 2" + ], + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "account/extension", + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "apiVersions": [ + "2014-04-01-preview", + "2014-02-26" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "North Central US", + "South Central US", + "West Central US", + "East US", + "East US 2", + "West US", + "Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "West India", + "Central India", + "South India", + "West US 2", + "Canada Central", + "UK South" + ], + "apiVersions": [ + "2014-04-01-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/84codes.CloudAMQP", + "namespace": "84codes.CloudAMQP", + "resourceTypes": [ + { + "resourceType": "servers", + "locations": [ + "East US 2", + "Central US", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2016-08-01" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-08-01" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-08-01" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-08-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Conexlink.MyCloudIT", + "namespace": "Conexlink.MyCloudIT", + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "Central US" + ], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/LiveArena.Broadcast", + "namespace": "LiveArena.Broadcast", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US", + "North Europe", + "Japan West", + "Japan East", + "East Asia", + "West Europe", + "East US", + "Southeast Asia", + "Central US" + ], + "apiVersions": [ + "2016-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-06-15" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Mailjet.Email", + "namespace": "Mailjet.Email", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US", + "West Europe" + ], + "apiVersions": [ + "2017-10-01", + "2017-02-03" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-07-01", + "2017-10-01", + "2017-05-29", + "2017-02-03", + "2016-11-01", + "2016-07-01" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2017-10-01", + "2017-02-03", + "2016-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2017-10-01", + "2017-02-03", + "2016-11-01" + ], + "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" + ], + "apiVersions": [ + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "defaultApiVersion": "2020-01-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" + ], + "apiVersions": [ + "2020-01-01", + "2017-06-01" + ], + "defaultApiVersion": "2020-01-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" + ], + "apiVersions": [ + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "defaultApiVersion": "2020-01-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" + ], + "apiVersions": [ + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "defaultApiVersion": "2020-01-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" + ], + "apiVersions": [ + "2020-01-01", + "2017-06-01", + "2017-01-01" + ], + "defaultApiVersion": "2020-01-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-06-01", + "operations": "2017-06-01" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AADDOMAINSERVICES", + "onbehalfSupportedLogCategories": [ + "AccountManagement", + "PolicyChange", + "LogonLogoff", + "PrivilegeUse", + "SystemSecurity", + "ObjectAccess", + "DirectoryServiceAccess", + "AccountLogon", + "DetailTracking" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.aadiam", + "namespace": "microsoft.aadiam", + "authorizations": [ + { + "applicationId": "1b912ec3-a9dd-4c4d-a53e-76aa7adb28d7", + "roleDefinitionId": "c4cfa0e8-3cb5-4ced-9c3c-efaad3348120" + } + ], + "resourceTypes": [ + { + "resourceType": "azureADMetrics", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-07-01-preview", + "2020-07-01" + ], + "defaultApiVersion": "2020-07-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateLinkForAzureAD", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "defaultApiVersion": "2020-03-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "tenants", + "locations": [ + "West US" + ], + "apiVersions": [ + "2017-04-01", + "2017-03-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-01", + "2016-02-01", + "2015-11-01", + "2015-01-01" + ], + "defaultApiVersion": "2017-04-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-04-01", + "operations": "2017-04-01" + }, + "mdsMappingResourceIdOverridePathSelector": "properties.tenantId", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AadLogConnectorProd", + "onbehalfSupportedLogCategories": [ + "Signin" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "West US" + ], + "apiVersions": [ + "2017-04-01", + "2017-03-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-01", + "2016-02-01", + "2015-11-01", + "2015-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "diagnosticSettings", + "locations": [], + "apiVersions": [ + "2017-04-01-preview", + "2017-04-01" + ], + "defaultApiVersion": "2017-04-01-preview", + "capabilities": "None" + }, + { + "resourceType": "diagnosticSettingsCategories", + "locations": [], + "apiVersions": [ + "2017-04-01-preview", + "2017-04-01" + ], + "defaultApiVersion": "2017-04-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-04-01", + "operations": "2017-04-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.aadiam" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "AzureADMetrics", + "sourceMdmNamespace": "TenantMetric/PROD" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Addons", + "namespace": "Microsoft.Addons", + "authorization": { + "applicationId": "24d3987b-be4a-48e0-a3e7-11c186f39e41", + "roleDefinitionId": "8004BAAB-A4CB-4981-8571-F7E44D039D93" + }, + "resourceTypes": [ + { + "resourceType": "supportProviders", + "locations": [ + "West Central US", + "South Central US", + "East US", + "West Europe" + ], + "apiVersions": [ + "2018-03-01", + "2017-05-15" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West Central US", + "South Central US", + "East US", + "West Europe" + ], + "apiVersions": [ + "2018-03-01", + "2017-05-15" + ], + "capabilities": "None" + }, + { + "resourceType": "operationResults", + "locations": [ + "West Central US", + "South Central US", + "East US", + "West Europe" + ], + "apiVersions": [ + "2018-03-01", + "2017-05-15" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ADHybridHealthService", + "namespace": "Microsoft.ADHybridHealthService", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "addsservices", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "configuration", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "agents", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "aadsupportcases", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "reports", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servicehealthmetrics", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "logs", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "anonymousapiusers", + "locations": [ + "West US" + ], + "apiVersions": [ + "2014-01-01" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AgFoodPlatform", + "namespace": "Microsoft.AgFoodPlatform", + "authorizations": [ + { + "applicationId": "e420dc86-d66f-4069-a2d0-be2f937bd272", + "roleDefinitionId": "c9511e72-16f4-4804-9bed-d3f21cbe122f" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "East US", + "West Central US" + ], + "apiVersions": [ + "2020-05-12-preview" + ], + "defaultApiVersion": "2020-05-12-preview", + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "East US", + "West Central US" + ], + "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" + } + ], + "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 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", + "East US" + ], + "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 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", + "East US" + ], + "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 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", + "East US" + ], + "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 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", + "East US", + "South Central US" + ], + "apiVersions": [ + "2020-12-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AnalysisServices", + "namespace": "Microsoft.AnalysisServices", + "authorization": { + "applicationId": "4ac7d521-0382-477b-b0f8-7e1d95f85ca2", + "roleDefinitionId": "490d5987-bcf6-4be6-b6b2-056a78cb693a" + }, + "resourceTypes": [ + { + "resourceType": "servers", + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "defaultApiVersion": "2017-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "defaultApiVersion": "2017-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "defaultApiVersion": "2017-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "defaultApiVersion": "2017-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "West US", + "North Europe", + "South Central US", + "West Europe", + "West Central US", + "Southeast Asia", + "East US 2", + "North Central US", + "Brazil South", + "Canada Central", + "Australia Southeast", + "Japan East", + "UK South", + "West India", + "West US 2", + "Central US", + "East US", + "Australia East" + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "defaultApiVersion": "2017-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US 2", + "West Central US", + "West US 2" + ], + "apiVersions": [ + "2017-08-01-beta", + "2017-08-01", + "2017-07-14", + "2016-05-16" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-08-01" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-08-01" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "AsPaaS", + "sourceMdmNamespace": "SystemCounters" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "ASAzureRP" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "ASAzureRP", + "onbehalfSupportedLogCategories": [ + "Service", + "Engine" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AnyBuild", + "namespace": "Microsoft.AnyBuild", + "authorizations": [ + { + "applicationId": "16f9e0a0-ac78-4c2c-a55a-f3855317a63a", + "roleDefinitionId": "6fc3ed3a-fa07-4e79-9ac0-2db46b294d31" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-08-26" + ], + "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": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-08-26" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AppAssessment", + "namespace": "Microsoft.AppAssessment", + "authorizations": [ + { + "applicationId": "f9c691e6-93b3-4d57-944c-afcc737f9abf", + "roleDefinitionId": "1dc07278-9fb7-4aa4-bf32-bbb5a0a0c0bd" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "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" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AppPlatform", + "namespace": "Microsoft.AppPlatform", + "authorizations": [ + { + "applicationId": "03b39d0f-4213-4864-a245-b1476ec03169" + }, + { + "applicationId": "584a29b4-7876-4445-921e-71e427d4f4b3" + }, + { + "applicationId": "b61cc489-e138-4a69-8bf3-c2c5855c8784", + "roleDefinitionId": "462ddd96-910a-44f5-adfa-644d99942778" + }, + { + "applicationId": "e8de9221-a19c-4c81-b814-fd37c6caf9d2" + }, + { + "applicationId": "366cbfa5-46b3-47fb-9d70-55fb923b4833", + "roleDefinitionId": "d63d711d-1c1a-41d9-905a-fb87b28d47d9" + } + ], + "resourceTypes": [ + { + "resourceType": "Spring", + "locations": [ + "West Europe", + "East US", + "West US 2", + "Southeast Asia", + "Central US", + "Australia East", + "UK South", + "North Europe", + "South Central US", + "East US 2", + "Canada Central", + "North Central US", + "West US", + "UAE North", + "Central India", + "Korea Central", + "East Asia" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01-preview", + "2020-07-01", + "2019-05-01-preview" + ], + "defaultApiVersion": "2019-05-01-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-11-01-preview", + "2020-07-01", + "2019-05-01-preview" + ], + "defaultApiVersion": "2019-05-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2020-11-01-preview", + "2020-07-01", + "2019-05-01-preview" + ], + "defaultApiVersion": "2019-05-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-05-01-preview", + "operations": "2019-05-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "Microservices4SpringMetrics", + "sourceMdmNamespace": "ServiceMetrics" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Microservices4Spring" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Microservices4Spring", + "onbehalfSupportedLogCategories": [ + "ApplicationConsole", + "SystemLogs" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "0a0ae72b-f728-4dde-abe9-1e3e72a7a92c" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Automanage", + "namespace": "Microsoft.Automanage", + "authorizations": [ + { + "applicationId": "9ae330ab-d710-466b-851c-c828e7340846" + }, + { + "applicationId": "d828acde-4b48-47f5-a6e8-52460104a052", + "roleDefinitionId": "111e90e1-c9ec-40f6-b898-c0964578da58" + } + ], + "resourceTypes": [ + { + "resourceType": "configurationProfileAssignments", + "locations": [ + "Central US", + "East US", + "East US 2", + "South Central US", + "West US", + "West US 2", + "West Central US", + "North Europe", + "West Europe", + "Canada Central", + "Japan East", + "UK South", + "Australia Southeast", + "Australia East" + ], + "apiVersions": [ + "2020-06-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" + ], + "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" + ], + "apiVersions": [ + "2020-06-30-preview" + ], + "defaultApiVersion": "2020-06-30-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "Central US", + "East US 2", + "East US", + "North Central US", + "South Central US", + "West US 2", + "West Central US", + "West US" + ], + "apiVersions": [ + "2020-06-30-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftAutomanage" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false + } + ] + }, + "logs": { + "mdsInfo": [ + { + "mdsEnvironment": "test", + "serviceIdentity": "MicrosoftAutomanage" + } + ] + }, + "version": "1.0" + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "e935b4a5-8968-416d-8414-caed51c782a9" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Automation", + "namespace": "Microsoft.Automation", + "authorizations": [ + { + "applicationId": "fc75330b-179d-49af-87dd-3b1acf6827fa", + "roleDefinitionId": "95fd5de3-d071-4362-92bf-cf341c1de832" + } + ], + "resourceTypes": [ + { + "resourceType": "automationAccounts", + "locations": [ + "Japan East", + "East US 2", + "West Europe", + "South Africa North", + "UK West", + "Switzerland North", + "Brazil Southeast", + "Norway East", + "Germany West Central", + "UAE North", + "Switzerland West", + "Japan West", + "UAE Central", + "Australia Central 2", + "South India", + "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" + ], + "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", + "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", + "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": [ + "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", + "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", + "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", + "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", + "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", + "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", + "Southeast Asia", + "South Central US", + "North Central US", + "East Asia", + "Central US", + "West US", + "Australia Central", + "Australia East", + "Korea Central", + "East US", + "West US 2", + "Brazil South", + "UK South", + "West Central US", + "North Europe", + "Canada Central", + "Australia Southeast", + "Central India", + "France Central" + ], + "apiVersions": [ + "2020-01-13-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "fc75330b-179d-49af-87dd-3b1acf6827fa" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftAutomation" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "MicrosoftAutomationProdShoebox", + "sourceMdmNamespace": "JobCount" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "mdsEnvironment": "prod", + "onbehalfSupportedLogCategories": [ + "JobLogs", + "JobStreams", + "DscNodeStatus" + ], + "serviceIdentity": "MicrosoftAutomation" + } + ] + }, + "version": "1.0" + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AutonomousDevelopmentPlatform", + "namespace": "Microsoft.AutonomousDevelopmentPlatform", + "authorizations": [ + { + "applicationId": "dad37da6-229d-4bc0-8b94-fee8600589db", + "roleDefinitionId": "5cbfe752-1a6e-4926-b68f-0475c305f85e", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635" + }, + { + "applicationId": "150c8903-2280-4ab6-8708-b080044d94c6", + "roleDefinitionId": "5cbfe752-1a6e-4926-b68f-0475c305f85e" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2020-07-01-preview" + ], + "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" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AutonomousSystems", + "namespace": "Microsoft.AutonomousSystems", + "authorizations": [ + { + "applicationId": "a967240f-810b-4f79-85e5-25870cc69cbb", + "roleDefinitionId": "47b23f55-5e18-4fc7-a69a-f9b79a9811ea", + "managedByRoleDefinitionId": "6ee14824-e3a8-4536-ad65-346e3406f3c4" + } + ], + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "defaultApiVersion": "2020-05-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/validateCreateRequest", + "locations": [ + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "defaultApiVersion": "2020-05-01-preview", + "capabilities": "None" + }, + { + "resourceType": "workspaces/operationresults", + "locations": [ + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "defaultApiVersion": "2020-05-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a967240f-810b-4f79-85e5-25870cc69cbb" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AVS", + "namespace": "Microsoft.AVS", + "authorizations": [ + { + "applicationId": "608f9929-9737-432e-860f-4e1c1821052f", + "roleDefinitionId": "a12e1b40-7eca-4c51-be1d-d8bc564dcfdd", + "allowedThirdPartyExtensions": [ + { + "name": "VMCP" + } + ] + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkTrialAvailability", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkQuotaAvailability", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-07-17-preview", + "2020-03-20" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.AVS" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "AVSShoebox2", + "sourceMdmNamespace": "Vsphere.Cluster.ClusterServices" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateClouds/clusters", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast 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", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/hcxEnterpriseSites", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/globalReachConnections", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/addons", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/dhcpConfigurations", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/portMirroringProfiles", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/segments", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/vmGroups", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/gateways", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/virtualMachines", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/dnsServices", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/workloadNetworks/dnsZones", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-17-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-03-20", + "operations": "2020-03-20" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.AVS" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "AVSShoebox2", + "sourceMdmNamespace": "Vsphere.Datastore.Disk" + } + ] + } + } + } + }, + "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": [ + "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": [ + "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": [ + "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": [ + "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" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-03-02-preview", + "2019-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2020-12-08-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sqlServerInstances", + "locations": [ + "Australia East", + "UK South", + "East US 2", + "Central US", + "East US", + "North Europe", + "Southeast Asia", + "West Europe", + "West US 2" + ], + "apiVersions": [ + "2020-12-08-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureCIS", + "namespace": "Microsoft.AzureCIS", + "authorizations": [], + "resourceTypes": [ + { + "resourceType": "autopilotEnvironments", + "locations": [ + "Australia East", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "Southeast Asia", + "South Central US", + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureData", + "namespace": "Microsoft.AzureData", + "authorizations": [ + { + "applicationId": "bb55177b-a7d9-4939-a257-8ab53a3b2bc6", + "roleDefinitionId": "f83de625-af9e-4458-ac9c-e5d62b05fd06" + }, + { + "applicationId": "a12e8ccb-0fcd-46f8-b6a1-b9df7a9d7231", + "roleDefinitionId": "f83de625-af9e-4458-ac9c-e5d62b05fd06" + } + ], + "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": "dataControllers", + "locations": [ + "Japan East", + "Australia East", + "Korea Central", + "North Europe", + "UK South", + "France Central", + "East US", + "East US 2", + "Central US", + "West Europe", + "Southeast Asia", + "West US 2" + ], + "apiVersions": [ + "2020-09-08-preview", + "2019-07-24-preview" + ], + "defaultApiVersion": "2020-09-08-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "postgresInstances", + "locations": [ + "Japan East", + "Australia East", + "Korea Central", + "North Europe", + "UK South", + "France Central", + "East US", + "East US 2", + "Central US", + "West Europe", + "Southeast Asia", + "West US 2" + ], + "apiVersions": [ + "2020-09-08-preview", + "2019-07-24-preview" + ], + "defaultApiVersion": "2020-09-08-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sqlManagedInstances", + "locations": [ + "Japan East", + "Australia East", + "Korea Central", + "North Europe", + "UK South", + "France Central", + "East US", + "East US 2", + "Central US", + "West Europe", + "Southeast Asia", + "West US 2" + ], + "apiVersions": [ + "2020-09-08-preview", + "2019-07-24-preview" + ], + "defaultApiVersion": "2020-09-08-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sqlServerInstances", + "locations": [ + "East US", + "East US 2", + "Central US", + "West Europe", + "Southeast Asia", + "West US 2", + "Australia East", + "North Europe", + "UK South" + ], + "apiVersions": [ + "2020-09-08-preview", + "2019-07-24-preview" + ], + "defaultApiVersion": "2020-09-08-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.AzureStack", + "namespace": "Microsoft.AzureStack", + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Global" + ], + "apiVersions": [ + "2017-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "registrations", + "locations": [ + "West Central US", + "Global" + ], + "apiVersions": [ + "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" + }, + { + "applicationId": "1322e676-dee7-41ee-a874-ac923822781c", + "roleDefinitionId": "e91a9804-9f4d-4501-bf85-03bd4ea78451" + } + ], + "resourceTypes": [ + { + "resourceType": "clusters", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-10-01" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-11-01-preview", + "2020-10-01", + "2020-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-11-01-preview", + "2020-10-01" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "East US 2 EUAP", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-10-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BareMetalInfrastructure", + "namespace": "Microsoft.BareMetalInfrastructure", + "authorization": { + "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39", + "roleDefinitionId": "4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635" + }, + "resourceTypes": [ + { + "resourceType": "bareMetalInstances", + "locations": [ + "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": [ + "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": [ + "West US", + "West US 2", + "East US", + "East US 2", + "South Central US", + "West Europe", + "North Europe", + "Japan East", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-08-06-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BatchAI", + "namespace": "Microsoft.BatchAI", + "authorization": { + "applicationId": "9fcb3732-5f52-4135-8c08-9d4bbaf203ea", + "roleDefinitionId": "703B89C7-CE2C-431B-BDD8-FA34E39AF696", + "managedByRoleDefinitionId": "90B8E153-EBFF-4073-A95F-4DAD56B14C78" + }, + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ViennaAzureMonitor", + "sourceMdmNamespace": "vienna" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices", + "onbehalfSupportedLogCategories": [ + "BaiJobEvent", + "BaiClusterNodeEvent", + "BaiClusterEvent" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/clusters", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/fileservers", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/experiments", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ViennaAzureMonitor", + "sourceMdmNamespace": "vienna" + } + ] + } + } + } + }, + "capabilities": "None" + }, + { + "resourceType": "workspaces/experiments/jobs", + "locations": [ + "West US" + ], + "apiVersions": [ + "2018-05-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ViennaAzureMonitor", + "sourceMdmNamespace": "vienna" + } + ] + } + } + } + }, + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "West US 2", + "West Europe", + "East US 2", + "North Europe", + "Australia East", + "West Central US", + "Southeast Asia", + "South Central US", + "West US" + ], + "apiVersions": [ + "2018-05-01", + "2018-03-01", + "2017-09-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-05-01", + "operations": "2018-05-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ViennaAzureMonitor", + "sourceMdmNamespace": "vienna" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices", + "onbehalfSupportedLogCategories": [ + "BaiJobEvent", + "BaiClusterNodeEvent", + "BaiClusterEvent" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Billing", + "namespace": "Microsoft.Billing", + "authorizations": [ + { + "applicationId": "80dbdb39-4f33-4799-8b6f-711b5e3e61b6", + "roleDefinitionId": "acdc79db-513f-461d-a542-61908d543bdc" + } + ], + "resourceTypes": [ + { + "resourceType": "billingPeriods", + "locations": [], + "apiVersions": [ + "2018-03-01-preview", + "2017-04-24-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "invoices", + "locations": [], + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview", + "2018-03-01-preview", + "2017-04-24-preview", + "2017-02-27-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "enrollmentAccounts", + "locations": [], + "apiVersions": [ + "2018-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingRoleDefinitions", + "locations": [], + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "billingRoleAssignments", + "locations": [], + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "createBillingRoleAssignment", + "locations": [], + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "billingAccounts/createBillingRoleAssignment", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/billingProfiles/createBillingRoleAssignment", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingPermissions", + "locations": [], + "apiVersions": [ + "2018-11-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "billingAccounts/billingRoleDefinitions", + "locations": [], + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/billingRoleAssignments", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/billingPermissions", + "locations": [], + "apiVersions": [ + "2020-05-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-11-01-privatepreview", + "2020-05-01", + "2019-10-01-preview", + "2018-11-01-preview", + "2018-06-30", + "2018-05-31" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/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": [ + "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-05-01", + "2019-10-01-preview", + "2018-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "billingAccounts/billingProfiles/invoices", + "locations": [], + "apiVersions": [ + "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": [ + "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-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-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": [ + "2019-10-01-preview", + "2018-11-01-preview" + ], + "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" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Bing", + "namespace": "Microsoft.Bing", + "authorizations": [ + { + "applicationId": "c19490b5-c092-426f-b1a2-674b279d4975", + "roleDefinitionId": "7963cd60-9634-4abc-9a64-2482a3ef6373" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/skus", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/usages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "West US", + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-10" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Blockchain", + "namespace": "Microsoft.Blockchain", + "authorizations": [ + { + "applicationId": "78827f38-7b69-4d5e-a627-d6fdd9c759a0", + "roleDefinitionId": "9c68eaf3-8315-4e5c-b857-641b16b21f8f" + }, + { + "applicationId": "049d4938-2ef2-4274-aa8f-630fc9bc33d1", + "roleDefinitionId": "c6dd0893-0495-488a-ac21-ee5f1ba89769" + }, + { + "applicationId": "911e905a-a50e-4c94-9f7c-48bb12f549ed" + } + ], + "resourceTypes": [ + { + "resourceType": "watchers", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2019-06-01-preview" + ], + "defaultApiVersion": "2019-06-01-preview", + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "blockchainMembers", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/watcherOperationResults", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2019-06-01-preview" + ], + "defaultApiVersion": "2019-06-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East", + "West Central US" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/blockchainMemberOperationResults", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/listConsortiums", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "Southeast Asia", + "West Europe", + "North Europe", + "West US 2", + "Japan East", + "West Central US" + ], + "apiVersions": [ + "2018-06-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-06-01-preview", + "operations": "2018-06-01-preview" + }, + "metrics": { + "metricsFilterPathSelector": "kind", + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftBlockchainShoebox", + "sourceMdmNamespace": "NodeMetrics" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Blockchain" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Blockchain", + "onbehalfSupportedLogCategories": [ + "BlockchainApplication", + "Proxy", + "FabricOrderer", + "FabricPeer" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BlockchainTokens", + "namespace": "Microsoft.BlockchainTokens", + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [ + "West US" + ], + "apiVersions": [ + "2019-07-19-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Blueprint", + "namespace": "Microsoft.Blueprint", + "authorizations": [ + { + "applicationId": "f71766dc-90d9-4b7d-bd9d-4499c4331c3f", + "roleDefinitionId": "cb180127-cf6d-4672-9e75-e29a487f9658" + } + ], + "resourceTypes": [ + { + "resourceType": "blueprints", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "blueprints/artifacts", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "blueprints/versions", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "blueprints/versions/artifacts", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "blueprintAssignments", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsExtension" + }, + { + "resourceType": "blueprintAssignments/operations", + "locations": [], + "apiVersions": [ + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "blueprintAssignments/assignmentOperations", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-11-01-preview", + "2018-11-01-alpha", + "2017-11-11-preview", + "2017-11-11-alpha" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "f71766dc-90d9-4b7d-bd9d-4499c4331c3f" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.BotService", + "namespace": "Microsoft.BotService", + "authorizations": [ + { + "applicationId": "f3723d34-6ff5-4ceb-a148-d99dcd2511fc", + "roleDefinitionId": "71213c26-43ed-41d8-9905-3c12971517a3" + }, + { + "applicationId": "27a762be-14e7-4f92-899c-151877d6d497", + "roleDefinitionId": "aab320d1-5b9b-4748-982e-be803163df77" + }, + { + "applicationId": "5b404cf4-a79d-4cfe-b866-24bf8e1a4921", + "roleDefinitionId": "3d07f186-e6fa-4974-ac88-b88eeda6370a" + }, + { + "applicationId": "ce48853e-0605-4f77-8746-d70ac63cc6bc", + "roleDefinitionId": "d5b49851-91ee-42df-9dc4-00b3a3b4d96b" + }, + { + "applicationId": "e6650347-047f-4e51-9386-839384472ea5", + "roleDefinitionId": "a9b54502-e245-45bc-bd0f-aa7e1074afdc" + } + ], + "resourceTypes": [ + { + "resourceType": "botServices", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-06-02", + "operations": "2020-06-02" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "BotServices", + "onbehalfSupportedLogCategories": [ + "BotRequest", + "DependencyRequest" + ] + } + ] + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "BotServices" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "BotFrameworkPlatform", + "sourceMdmNamespace": "Metrics" + } + ] + }, + "regionLess": true + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "botServices/channels", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "capabilities": "None" + }, + { + "resourceType": "botServices/connections", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "capabilities": "None" + }, + { + "resourceType": "listAuthServiceProviders", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Global" + ], + "apiVersions": [ + "2020-06-02", + "2018-07-12", + "2017-12-01" + ], + "defaultApiVersion": "2020-06-02", + "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" + } + ], + "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": "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": [ + "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": [ + "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" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cascade", + "namespace": "Microsoft.Cascade", + "authorizations": [], + "resourceTypes": [ + { + "resourceType": "sites", + "locations": [ + "West US", + "North Europe" + ], + "apiVersions": [ + "2020-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "West US", + "Japan East", + "North Europe" + ], + "apiVersions": [ + "2020-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Operations", + "locations": [ + "West US", + "Japan East", + "North Europe" + ], + "apiVersions": [ + "2020-11-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ChangeAnalysis", + "namespace": "Microsoft.ChangeAnalysis", + "authorizations": [ + { + "applicationId": "2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8", + "roleDefinitionId": "f5a6bd90-af71-455c-9030-c486e8c42c95" + }, + { + "applicationId": "3edcf11f-df80-41b2-a5e4-7e213cca30d1", + "roleDefinitionId": "f5a6bd90-af71-455c-9030-c486e8c42c95" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-04-01-preview", + "2019-04-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "resourceChanges", + "locations": [], + "apiVersions": [ + "2020-04-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "changes", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "SupportsExtension" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationIds": [ + "2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8", + "3edcf11f-df80-41b2-a5e4-7e213cca30d1" + ] + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Chaos", + "namespace": "Microsoft.Chaos", + "authorizations": [ + { + "applicationId": "ecad3f28-c75d-4414-94e0-a5e1de4df79e", + "roleDefinitionId": "16f6458e-a375-4d8d-934e-5c9933967cb4" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-03-05-preview", + "2021-02-12-preview", + "2021-01-21-preview", + "2020-11-30-preview", + "2020-09-23-preview", + "2020-09-14-preview", + "2020-06-18-preview", + "2020-05-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "ecad3f28-c75d-4414-94e0-a5e1de4df79e" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicInfrastructureMigrate", + "namespace": "Microsoft.ClassicInfrastructureMigrate", + "authorization": { + "applicationId": "5e5abe2b-83cd-4786-826a-a05653ebb103", + "roleDefinitionId": "766c4d9b-ef83-4f73-8352-1450a506a69b" + }, + "resourceTypes": [ + { + "resourceType": "classicInfrastructureResources", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "West India", + "South India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "Australia Central", + "Australia Central 2", + "Germany North", + "Germany West Central", + "Norway East", + "Norway West", + "South Africa North", + "South Africa West", + "Switzerland North", + "Switzerland West", + "UAE Central", + "UAE North" + ], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ClassicSubscription", + "namespace": "Microsoft.ClassicSubscription", + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2017-09-01", + "2017-06-01" + ], + "defaultApiVersion": "2017-06-01", + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Codespaces", + "namespace": "Microsoft.Codespaces", + "authorizations": [ + { + "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6", + "roleDefinitionId": "59cd8abb-1e79-437f-9a05-4bca235c4c35" + }, + { + "applicationId": "48ef7923-268f-473d-bcf1-07f0997961f4", + "roleDefinitionId": "59cd8abb-1e79-437f-9a05-4bca235c4c35" + } + ], + "resourceTypes": [ + { + "resourceType": "plans", + "locations": [ + "West Europe", + "East US", + "West Us 2", + "Southeast Asia" + ], + "apiVersions": [ + "2020-07-10-beta", + "2020-07-10-alpha", + "2020-06-16-beta", + "2020-06-16-alpha", + "2020-06-16" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-07-10-privatepreview", + "2020-07-10-beta", + "2020-07-10-alpha", + "2020-06-16-privatepreview", + "2020-06-16-beta", + "2020-06-16-alpha", + "2020-06-16" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-07-10-privatepreview", + "2020-07-10-beta", + "2020-07-10-alpha", + "2020-06-16-privatepreview", + "2020-06-16-beta", + "2020-06-16-alpha", + "2020-06-16" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub", + "Microsoft.ManagedIdentity": { + "applicationId": "5e40b565-3ac2-4fbc-871e-068b78151bb0" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Commerce", + "namespace": "Microsoft.Commerce", + "resourceTypes": [ + { + "resourceType": "UsageAggregates", + "locations": [], + "apiVersions": [ + "2015-06-01-preview", + "2015-03-31" + ], + "capabilities": "None" + }, + { + "resourceType": "RateCard", + "locations": [], + "apiVersions": [ + "2016-08-31-preview", + "2015-06-01-preview", + "2015-05-15" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2015-06-01-preview", + "2015-03-31" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Communication", + "namespace": "Microsoft.Communication", + "authorizations": [ + { + "applicationId": "632ec9eb-fad7-4cbd-993a-e72973ba2acc", + "roleDefinitionId": "6c5c31b0-3a00-47ea-9555-f233670ba313" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "CommunicationServices", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "CommunicationServices/eventGridFilters", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "capabilities": "None" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "CheckNameAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Confluent", + "namespace": "Microsoft.Confluent", + "authorizations": [ + { + "applicationId": "1448fd13-7e74-41f4-b6e3-17e485d8ac2e", + "roleDefinitionId": "4db34280-b0be-4827-aa5b-418391409cee" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None" + }, + { + "resourceType": "agreements", + "locations": [], + "apiVersions": [ + "2020-03-01-preview", + "2020-03-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedCache", + "namespace": "Microsoft.ConnectedCache", + "authorizations": [], + "resourceTypes": [ + { + "resourceType": "CacheNodes", + "locations": [ + "West US" + ], + "apiVersions": [ + "2019-12-04-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedVMwarevSphere", + "namespace": "Microsoft.ConnectedVMwarevSphere", + "authorizations": [ + { + "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7", + "roleDefinitionId": "a27a5b7c-3d1a-4e97-b0ad-195eef808eb6" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "East US 2 EUAP", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "VCenters/InventoryItems", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/HybridIdentityMetadata", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Consumption", + "namespace": "Microsoft.Consumption", + "authorizations": [ + { + "applicationId": "c5b17a4f-cc6f-4649-9480-684280a2af3a", + "roleDefinitionId": "4a2e6ae9-2713-4cc9-a3b3-312899d687c3" + } + ], + "resourceTypes": [ + { + "resourceType": "Forecasts", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "AggregatedCost", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "tenants", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "ReservationRecommendations", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01-preview", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "ReservationRecommendationDetails", + "locations": [], + "apiVersions": [ + "2019-10-01" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "ReservationSummaries", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01-preview", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "ReservationTransactions", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Balances", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Marketplaces", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Pricesheets", + "locations": [], + "apiVersions": [ + "2020-01-01-preview", + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "ReservationDetails", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01-preview", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-11-30", + "2017-06-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Budgets", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-04-01-preview", + "2019-03-01-preview", + "2019-01-01-preview", + "2019-01-01", + "2018-12-01-preview", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-12-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "CostTags", + "locations": [], + "apiVersions": [ + "2019-11-01", + "2019-10-01", + "2019-05-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-05-31", + "2018-03-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Tags", + "locations": [], + "apiVersions": [ + "2019-11-01", + "2019-10-01", + "2019-05-01", + "2019-04-01-preview", + "2019-03-01-preview", + "2019-01-01", + "2018-12-01-preview", + "2018-10-01", + "2018-08-31", + "2018-08-01-preview", + "2018-06-30", + "2018-05-31", + "2018-03-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Terms", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2019-01-01", + "2018-10-01", + "2018-08-31", + "2018-06-30", + "2018-03-31", + "2018-01-31", + "2017-12-30-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "UsageDetails", + "locations": [], + "apiVersions": [ + "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": [ + "2019-10-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "events", + "locations": [], + "apiVersions": [ + "2019-10-01", + "2018-11-01-preview", + "2018-10-01", + "2018-08-31" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "lots", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "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": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "West Central US", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "West Central US", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "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": [ + "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": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "2020-11-01", + "2019-12-01", + "2018-10-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/deleteVirtualNetworkOrSubnets", + "locations": [ + "West Central US", + "West US", + "East US", + "West Europe", + "West US 2", + "North Europe", + "Southeast Asia", + "East US 2", + "Central US", + "Australia East", + "UK South", + "South Central US", + "Central India", + "Brazil South", + "South India", + "North Central US", + "East Asia", + "Canada Central", + "Japan East", + "Korea Central", + "France Central", + "Switzerland North", + "Germany West Central", + "UAE North" + ], + "apiVersions": [ + "2020-11-01", + "2019-12-01", + "2018-12-01", + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9" + }, + "vnetSupportRegions": [ + "eastus2euap", + "westcentralus", + "centraluseuap", + "westus", + "westeurope", + "australiaeast", + "eastus", + "japaneast", + "northeurope", + "southeastasia", + "eastus2", + "westus2", + "centralus", + "southcentralus", + "canadacentral", + "koreacentral", + "francecentral" + ], + "gpuRegionalSkus": [ + { + "location": "eastus", + "skus": [ + "V100", + "P100", + "K80" + ] + }, + { + "location": "southcentralus", + "skus": [ + "V100", + "P100", + "K80" + ] + }, + { + "location": "westus2", + "skus": [ + "V100", + "P100", + "K80" + ] + }, + { + "location": "westeurope", + "skus": [ + "V100", + "P100", + "K80" + ] + }, + { + "location": "northeurope", + "skus": [ + "K80" + ] + }, + { + "location": "centralindia", + "skus": [ + "V100" + ] + }, + { + "location": "southeastasia", + "skus": [ + "V100", + "P100" + ] + } + ], + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-12-01-preview", + "operations": "2017-12-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.ContainerInstance" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftContainerInstanceShoebox", + "sourceMdmNamespace": "AzureMonitoringMetrics" + } + ] + } + } + } + }, + "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": [ + "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": [ + "2020-12-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "OperationStatus", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "OperationResults", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "SupportsExtension" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CostManagementExports", + "namespace": "Microsoft.CostManagementExports", + "authorizations": [ + { + "applicationId": "e5408ad0-c4e2-43aa-b6f2-3b4951286d99", + "roleDefinitionId": "5e4888b3-2747-4e5b-9897-ec0865b91bcf" + } + ], + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CustomerLockbox", + "namespace": "Microsoft.CustomerLockbox", + "authorizations": [ + { + "applicationId": "a0551534-cfc9-4e1f-9a7a-65093b32bb38", + "roleDefinitionId": "114bcfb6-5524-4d80-948a-d8a9937bc3e5" + }, + { + "applicationId": "01fc33a7-78ba-4d2f-a4b7-768e336e890e" + }, + { + "applicationId": "d8c767ef-3e9a-48c4-aef9-562696539b39" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "TenantOptedIn", + "locations": [], + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "EnableLockbox", + "locations": [], + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "DisableLockbox", + "locations": [], + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "requests", + "locations": [], + "apiVersions": [ + "2018-02-28-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.CustomProviders", + "namespace": "Microsoft.CustomProviders", + "authorization": { + "applicationId": "bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5", + "roleDefinitionId": "FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7" + }, + "resourceTypes": [ + { + "resourceType": "resourceProviders", + "locations": [ + "Australia East", + "Australia Southeast", + "East US", + "West US 2", + "West Europe", + "North Europe", + "Canada Central", + "Canada East" + ], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "associations", + "locations": [], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "Australia East", + "Australia Southeast", + "East US", + "West US 2", + "West Europe", + "North Europe", + "Canada Central", + "Canada East" + ], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-09-01-preview", + "operations": "2018-09-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.CustomProviders" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftCustomProvidersShoebox", + "sourceMdmNamespace": "MgmtExpWebApi" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.CustomProviders", + "onbehalfSupportedLogCategories": [ + "AuditLogs" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.D365CustomerInsights", + "namespace": "Microsoft.D365CustomerInsights", + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-06-10-privatepreview", + "2020-06-10-preview", + "2020-06-10-beta" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-06-10-preview", + "operations": "2020-06-10-preview" + }, + "mdmInfo": [ + { + "sourceMdmAccount": "Customer360Prod", + "sourceMdmNamespace": "Customer360Prod" + }, + { + "sourceMdmAccount": "Customer360PPE", + "sourceMdmNamespace": "Customer360PPPE" + } + ], + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.D365CustomerInsights", + "onbehalfSupportedLogCategories": [ + "Audit", + "Operational" + ] + } + ] + }, + "regionLess": true + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataBox", + "namespace": "Microsoft.DataBox", + "authorizations": [ + { + "applicationId": "5613cb5c-a7c9-4099-8034-511fd7616cb2", + "roleDefinitionId": "382D72D1-63DC-4243-9B99-CB69FDD473D8", + "managedByRoleDefinitionId": "f4c0a4f9-768c-4927-ab83-d319111d6ef4" + } + ], + "resourceTypes": [ + { + "resourceType": "jobs", + "locations": [ + "West US", + "West Europe", + "Southeast Asia", + "East Asia", + "South India", + "Australia East", + "Canada Central", + "Korea Central", + "Japan East", + "South Africa North", + "Brazil South", + "UAE Central", + "UK South" + ], + "apiVersions": [ + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "2020-11-01", + "2020-04-01", + "2019-09-01", + "2018-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "5613cb5c-a7c9-4099-8034-511fd7616cb2" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataBoxEdge", + "namespace": "Microsoft.DataBoxEdge", + "authorizations": [ + { + "applicationId": "2368d027-f996-4edb-bf48-928f98f2ab8c" + } + ], + "resourceTypes": [ + { + "resourceType": "DataBoxEdgeDevices", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview", + "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": "2020-12-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "DataBoxEdgeDevices/checkNameAvailability", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview", + "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", + "2020-12-01", + "2020-09-01-preview", + "2020-09-01", + "2020-07-01-preview", + "2020-07-01", + "2020-06-01", + "2020-05-01-preview", + "2020-01-01", + "2019-08-01", + "2019-07-01", + "2019-03-01", + "2018-07-01", + "2017-09-01" + ], + "capabilities": "None" + }, + { + "resourceType": "availableSkus", + "locations": [], + "apiVersions": [ + "2021-02-01-preview", + "2020-09-01-preview", + "2020-09-01", + "2020-07-01-preview", + "2020-05-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-09-01", + "operations": "2017-09-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.DataBoxEdge" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDataBoxEdgeShoebox", + "sourceMdmNamespace": "Gateway" + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "7894de8a-09af-4805-bc2e-4b19797c0d95" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Databricks", + "namespace": "Microsoft.Databricks", + "authorizations": [ + { + "applicationId": "d9327919-6775-4843-9037-3fb0fb0473cb", + "roleDefinitionId": "f31567d0-b61f-43c2-97a5-a98cdc3bfcb6", + "managedByRoleDefinitionId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635" + }, + { + "applicationId": "2ff814a6-3304-4ab8-85cb-cd0e6f879c1d", + "roleDefinitionId": "f31567d0-b61f-43c2-97a5-a98cdc3bfcb6", + "managedByRoleDefinitionId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635" + } + ], + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "West US", + "East US 2", + "West Europe", + "East US", + "North Europe", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "West US 2", + "Central US", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "West India", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North" + ], + "apiVersions": [ + "2018-04-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-04-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "DatabrickAuditLogs" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "spearfishgenevahotpath", + "sourceMdmNamespace": "Canary" + } + ] + }, + "logs": { + "logFilterPathSelector": "sku.name", + "mdsInfo": [ + { + "serviceIdentity": "DatabrickAuditLogs", + "onbehalfSupportedLogCategories": [ + "dbfs", + "clusters", + "accounts", + "jobs", + "notebook", + "ssh", + "workspace", + "secrets", + "sqlPermissions", + "tables", + "instancePools" + ] + } + ] + } + } + } + }, + "capabilities": "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", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North" + ], + "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", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North" + ], + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "Korea South", + "Korea Central", + "South Africa North", + "South Africa West", + "Switzerland North", + "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", + "UAE North", + "Brazil South", + "France Central" + ], + "apiVersions": [ + "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", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North" + ], + "apiVersions": [ + "2018-04-01", + "2018-03-15", + "2018-03-01", + "2017-09-01-preview", + "2017-08-01-preview", + "2016-09-01-preview" + ], + "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", + "Korea South", + "South Africa West", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North" + ], + "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", + "Korea South", + "South Africa West", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North" + ], + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationIds": [ + "d9327919-6775-4843-9037-3fb0fb0473cb", + "2ff814a6-3304-4ab8-85cb-cd0e6f879c1d" + ] + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-04-01", + "operations": "2018-03-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "DatabrickAuditLogs" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "spearfishgenevahotpath", + "sourceMdmNamespace": "Canary" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataCatalog", + "namespace": "Microsoft.DataCatalog", + "authorization": { + "applicationId": "213f5f78-fb30-46c7-9e98-91c720a1c026", + "roleDefinitionId": "D55E2225-A6AB-481C-A5BE-1B7687C293FA" + }, + "resourceTypes": [ + { + "resourceType": "catalogs", + "locations": [ + "East US", + "West US", + "Australia East", + "West Europe", + "North Europe", + "Southeast Asia", + "West Central US" + ], + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "West Europe" + ], + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West Europe" + ], + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/jobs", + "locations": [ + "East US", + "West US", + "Australia East", + "West Europe", + "North Europe", + "Southeast Asia", + "West Central US" + ], + "apiVersions": [ + "2016-03-30", + "2015-07-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "213f5f78-fb30-46c7-9e98-91c720a1c026" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-12-01-preview", + "operations": "2018-12-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataCatalogGen2" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDataCatalogShoebox", + "sourceMdmNamespace": "ADCAnalytics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataCollaboration", + "namespace": "Microsoft.DataCollaboration", + "authorization": { + "applicationId": "2cc451ba-a8ec-496f-bdff-591f5ae2876c", + "roleDefinitionId": "fdf757e9-19df-4152-a1ae-5e719161cd12" + }, + "resourceTypes": [ + { + "resourceType": "listinvitations", + "locations": [ + "East US", + "Australia East", + "West US 2", + "UK South", + "Southeast Asia", + "East US 2", + "West Europe" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "Australia East" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "East US", + "Australia East", + "Southeast Asia" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/consumerInvitations/reject", + "locations": [ + "East US", + "Australia East", + "West US 2", + "UK South", + "Southeast Asia", + "East US 2", + "West Europe" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/consumerInvitations", + "locations": [ + "East US", + "Australia East", + "West US 2", + "UK South", + "Southeast Asia", + "East US 2", + "West Europe" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Australia East" + ], + "apiVersions": [ + "2020-05-04-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "2cc451ba-a8ec-496f-bdff-591f5ae2876c" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-05-04-preview", + "operations": "2020-05-04-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataCollaboration" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDataCollaborationShoebox", + "sourceMdmNamespace": "RP" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataFactory", + "namespace": "Microsoft.DataFactory", + "authorizations": [ + { + "applicationId": "0947a342-ab4a-43be-93b3-b8243fc161e5", + "roleDefinitionId": "f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da" + }, + { + "applicationId": "5d13f7d7-0567-429c-9880-320e9555e5fc", + "roleDefinitionId": "956a8f20-9168-4c71-8e27-3c0460ac39a4" + } + ], + "resourceTypes": [ + { + "resourceType": "dataFactories", + "locations": [ + "West US", + "North Europe", + "East US", + "West Central US" + ], + "apiVersions": [ + "2015-10-01", + "2015-09-01", + "2015-08-01", + "2015-07-01-preview", + "2015-05-01-preview", + "2015-01-01-preview", + "2014-04-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftDatafactory" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "factories", + "locations": [ + "East US", + "East US 2", + "Central US", + "South Central US", + "Japan East", + "Canada Central", + "Australia East", + "Switzerland North", + "Germany West Central", + "Central India", + "France Central", + "Korea Central", + "Brazil South", + "West Europe", + "North Europe", + "UK South", + "West Central US", + "West US", + "West US 2", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-06-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftDatafactory", + "onbehalfSupportedLogCategories": [ + "ActivityRuns", + "PipelineRuns", + "TriggerRuns", + "SandboxPipelineRuns", + "SandboxActivityRuns", + "SSISPackageEventMessages", + "SSISPackageExecutableStatistics", + "SSISPackageEventMessageContext", + "SSISPackageExecutionComponentPhases", + "SSISPackageExecutionDataStatistics", + "SSISIntegrationRuntimeLogs" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "factories/integrationRuntimes", + "locations": [ + "East US", + "East US 2", + "West US 2", + "West US", + "Central US", + "South Central US", + "Japan East", + "Central India", + "Brazil South", + "France Central", + "Korea Central", + "Australia East", + "Switzerland North", + "Germany West Central", + "Canada Central", + "West Central US", + "North Europe", + "UK South", + "West Europe", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "dataFactories/diagnosticSettings", + "locations": [ + "North Europe", + "East US", + "West US", + "West Central US" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "dataFactories/metricDefinitions", + "locations": [ + "North Europe", + "East US", + "West US", + "West Central US" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "checkDataFactoryNameAvailability", + "locations": [], + "apiVersions": [ + "2015-05-01-preview", + "2015-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkAzureDataFactoryNameAvailability", + "locations": [ + "West US", + "North Europe", + "East US", + "West Central US" + ], + "apiVersions": [ + "2015-10-01", + "2015-09-01", + "2015-08-01", + "2015-07-01-preview", + "2015-05-01-preview", + "2015-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "dataFactorySchema", + "locations": [ + "West US", + "North Europe", + "East US", + "West Central US" + ], + "apiVersions": [ + "2015-10-01", + "2015-09-01", + "2015-08-01", + "2015-07-01-preview", + "2015-05-01-preview", + "2015-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US", + "North Europe", + "East US", + "West Central US" + ], + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview", + "2017-03-01-preview", + "2015-10-01", + "2015-09-01", + "2015-08-01", + "2015-07-01-preview", + "2015-05-01-preview", + "2015-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/configureFactoryRepo", + "locations": [ + "East US", + "East US 2", + "West US 2", + "West US", + "Central US", + "South Central US", + "Japan East", + "Australia East", + "Switzerland North", + "Germany West Central", + "Canada Central", + "Central India", + "Brazil South", + "France Central", + "Korea Central", + "West Europe", + "North Europe", + "UK South", + "West Central US", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "2018-06-01", + "2017-09-01-preview" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/getFeatureValue", + "locations": [ + "East US", + "East US 2", + "West Europe", + "North Europe", + "UK South", + "West Central US", + "West US", + "Central US", + "South Central US", + "Japan East", + "Australia East", + "Switzerland North", + "Germany West Central", + "Canada Central", + "Central India", + "Brazil South", + "France Central", + "Korea Central", + "West US 2", + "Southeast Asia", + "East Asia", + "North Central US", + "South Africa North", + "Australia Southeast", + "South India", + "Canada East", + "UK West", + "Japan West", + "Norway East", + "UAE North" + ], + "apiVersions": [ + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "0947a342-ab4a-43be-93b3-b8243fc161e5" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2015-01-01-preview", + "factories": "2017-09-01-preview", + "operations": "2017-03-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", + "sourceMdmNamespace": "ADFMetrics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataLakeAnalytics", + "namespace": "Microsoft.DataLakeAnalytics", + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "defaultApiVersion": "2016-11-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/dataLakeStoreAccounts", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/storageAccounts", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/storageAccounts/containers", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/storageAccounts/containers/listSasTokens", + "locations": [ + "East US 2", + "North Europe", + "Central US", + "West Europe" + ], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capability", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-11-01-preview", + "2016-11-01", + "2015-10-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.accountId", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataLake" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzureDataLake", + "sourceMdmNamespace": "Microsoft.DataLakeAnalytics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDataLake", + "onbehalfSupportedLogCategories": [ + "Audit", + "Requests" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataMigration", + "namespace": "Microsoft.DataMigration", + "authorization": { + "applicationId": "a4bad4aa-bf02-4631-9f78-a64ffdba8150", + "roleDefinitionId": "b831a21d-db98-4760-89cb-bef871952df1", + "managedByRoleDefinitionId": "6256fb55-9e59-4018-a9e1-76b11c0a4c89" + }, + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2018-07-15-preview", + "2018-04-19", + "2018-03-31-preview", + "2018-03-15-preview", + "2017-11-15-privatepreview", + "2017-11-15-preview", + "2017-04-15-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "services", + "locations": [ + "West Central US", + "Brazil South", + "West Europe", + "Australia East", + "East US", + "East US 2", + "Canada Central", + "East Asia", + "Central India", + "West India", + "Japan East", + "Korea South", + "North Central US", + "Australia Southeast", + "Canada East", + "Central US", + "South India", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "UK South", + "West US 2", + "South Africa North", + "UAE North", + "France Central" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + } + ], + "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-01-01", + "2020-01-01-alpha" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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-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-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-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-01-01", + "2020-01-01-alpha" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "d1e197ea-4f63-403a-93b0-8fa96dfc37f5" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DBforMariaDB", + "namespace": "Microsoft.DBforMariaDB", + "authorizations": [ + { + "applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", + "roleDefinitionId": "c13b7b9c-2ed1-4901-b8a8-16f35468da29" + }, + { + "applicationId": "123cd850-d9df-40bd-94d5-c9f07b7fa203" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "metadata": { + "portal": { + "kinds": [] + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "servers/recoverableServers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central US", + "Central India", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/virtualNetworkRules", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/azureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/performanceTiers", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/securityAlertPoliciesOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/recommendedActionSessionsOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/topQueryStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/queryTexts", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/waitStatistics", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/resetQueryPerformanceInsightData", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/advisors", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateLinkResources", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnections", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/privateEndpointConnectionProxies", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2018-06-01-privatepreview", + "2018-06-01-preview", + "2018-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/serverKeyOperationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/start", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "servers/stop", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-01-01-privatepreview", + "2020-01-01-preview", + "2020-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-06-01-preview" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "AzureDBProduction", + "sourceMdmNamespace": "MicrosoftSqlElasticServers" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "mdsEnvironment": "prod" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftSqlAzureTelemetryv2", + "onbehalfSupportedLogCategories": [ + "MySqlSlowLogs", + "MySqlAuditLogs" + ] + } + ] + } + } + }, + "Microsoft.managedIdentity": { + "applicationId": "d4776935-e3c2-491d-b2a1-cb3cd1ec579e" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeploymentManager", + "namespace": "Microsoft.DeploymentManager", + "authorizations": [ + { + "applicationId": "5b306cba-9c71-49db-96c3-d17ca2379c4d" + } + ], + "resourceTypes": [ + { + "resourceType": "artifactSources", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serviceTopologies", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serviceTopologies/services", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "serviceTopologies/services/serviceUnits", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "steps", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "rollouts", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operationResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "global" + ], + "apiVersions": [ + "2019-11-01-preview", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-09-01-preview" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "5b306cba-9c71-49db-96c3-d17ca2379c4d" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeviceUpdate", + "namespace": "Microsoft.DeviceUpdate", + "authorizations": [ + { + "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78", + "roleDefinitionId": "a7c9caf5-ee6d-4cdd-94e0-917c34a027ec" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-03-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "East US 2 EUAP", + "West US", + "West US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts", + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78" + }, + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/instances", + "locations": [ + "West US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-03-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-03-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-03-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevOps", + "namespace": "Microsoft.DevOps", + "authorizations": [ + { + "applicationId": "499b84ac-1321-427f-aa17-267ca6975798", + "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8" + }, + { + "applicationId": "4c3095a7-cc8a-4028-8301-c68ea6c2b42e", + "roleDefinitionId": "d637ba3a-8a38-41ec-a9e3-5e4a619e7530" + } + ], + "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" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "deploymentdetails", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevSpaces", + "namespace": "Microsoft.DevSpaces", + "resourceTypes": [ + { + "resourceType": "controllers", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "controllers/listConnectionDetails", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2020-05-01", + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkContainerHostMapping", + "locations": [ + "West Europe", + "Canada Central", + "Central US", + "West US 2", + "East US 2" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "eda7eafb-df85-4c80-a4bc-15a30dd106d5" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevTestLab", + "namespace": "Microsoft.DevTestLab", + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2018-10-15-preview", + "2018-09-15", + "2017-04-26-preview", + "2016-05-15", + "2015-05-21-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Diagnostics", + "namespace": "Microsoft.Diagnostics", + "authorizations": [ + { + "applicationId": "5b534afd-fdc0-4b38-a77f-af25442e3149", + "roleDefinitionId": "27d9fedd-5b4c-44b5-a9da-724fa33445c8" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-07-01-privatepreview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DigitalTwins", + "namespace": "Microsoft.DigitalTwins", + "authorizations": [ + { + "applicationId": "0b07f429-9f4b-4714-9392-cc5e8e80c8b0" + }, + { + "applicationId": "91ff567f-bb4f-4719-91d7-d983057bc0d6", + "roleDefinitionId": "fa0ab6ed-58e5-4f2f-81af-0b9ffc364bdc" + }, + { + "applicationId": "c115998b-3d59-49b4-b55b-042a9ba1dbfe", + "roleDefinitionId": "07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "digitalTwinsInstances", + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-12-01", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "91ff567f-bb4f-4719-91d7-d983057bc0d6" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDigitalTwins" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDigitalTwinsShoebox", + "sourceMdmNamespace": "ShoeboxMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureDigitalTwins", + "onbehalfSupportedLogCategories": [ + "DigitalTwinsOperation", + "ModelsOperation", + "EventRoutesOperation", + "QueryOperation" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "digitalTwinsInstances/operationResults", + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, + { + "resourceType": "digitalTwinsInstances/endpoints", + "locations": [ + "West Central US", + "West US 2", + "North Europe", + "Australia East", + "West Europe", + "East US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West Central US" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-31", + "2020-03-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2020-12-01", + "digitalTwinsInstances": "2020-12-01" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftDigitalTwinsShoebox", + "sourceMdmNamespace": "ShoeboxMetrics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EnterpriseKnowledgeGraph", + "namespace": "Microsoft.EnterpriseKnowledgeGraph", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US 2", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2018-12-03" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US 2", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2018-12-03" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US 2", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2018-12-03" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US 2", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2018-12-03" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "operations": "2018-12-03" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.EnterpriseKnowledgeGraph" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestUS2", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxNorthEurope", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestEurope", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS2", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxSoutheastAsia", + "sourceMdmNamespace": "Proxy" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestUS2", + "sourceMdmNamespace": "Tool" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxNorthEurope", + "sourceMdmNamespace": "Tool" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxWestEurope", + "sourceMdmNamespace": "Tool" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS", + "sourceMdmNamespace": "Tool" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxEastUS2", + "sourceMdmNamespace": "Tool" + }, + { + "sourceMdmAccount": "MicrosoftEnterpriseKnowledgeGraphShoeboxSoutheastAsia", + "sourceMdmNamespace": "Tool" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.EnterpriseKnowledgeGraph", + "onbehalfSupportedLogCategories": [ + "AuditEvent", + "DataIssue", + "Configuration" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Experimentation", + "namespace": "Microsoft.Experimentation", + "authorizations": [ + { + "applicationId": "e00d2f8a-f6c8-46e4-b379-e66082e28ca8", + "roleDefinitionId": "d3a360d9-17f9-410e-9465-5c914c8cf570", + "managedByRoleDefinitionId": "fa096ccd-4e8f-49de-9594-64449b3ac6b3" + }, + { + "applicationId": "b998f6f8-79d0-4b6a-8c25-5791dbe49ad0", + "roleDefinitionId": "69e94dda-0a4a-440b-b24e-21880bdd5174" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2019-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2019-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2019-11-01-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ExtendedLocation", + "namespace": "Microsoft.ExtendedLocation", + "authorizations": [ + { + "applicationId": "bc313c14-388c-4e7d-a58e-70017303ee3b", + "roleDefinitionId": "a775b938-2819-4dd0-8067-01f6e3b06392" + }, + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "0981f4e0-04a7-4e31-bd2b-b2ac2fc6ba4e" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-07-15-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "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.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": [ + "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": [ + "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": [ + "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": [ + "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": [ + "West US", + "West US 2", + "East US", + "East US 2", + "West Europe", + "North Europe", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Southeast Asia", + "South Central US", + "UK South" + ], + "apiVersions": [ + "2017-11-03-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "cc5476ec-3074-44d1-8461-711f5d9b0e39" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HealthBot", + "namespace": "Microsoft.HealthBot", + "authorizations": [ + { + "applicationId": "6db4d6bb-6649-4dc2-84b7-0b5c6894031e", + "roleDefinitionId": "d42334cd-b979-4a22-accc-650d0d157676" + } + ], + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-12-08" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-12-08" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-12-08" + ], + "capabilities": "None" + }, + { + "resourceType": "healthBots", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-12-08" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HealthcareApis", + "namespace": "Microsoft.HealthcareApis", + "authorizations": [ + { + "applicationId": "4f6778d8-5aef-43dc-a1ff-b073724b9495" + }, + { + "applicationId": "3274406e-4e0a-4852-ba4f-d7226630abb7", + "roleDefinitionId": "e39edba5-cde8-4529-ba1f-159138220220" + }, + { + "applicationId": "894b1496-c6e0-4001-b69c-81b327564ca4", + "roleDefinitionId": "c69c1f48-8535-41e7-9667-539790b1c663" + }, + { + "applicationId": "75e725bf-66ce-4cea-9b9a-5c4caae57f33" + } + ], + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-09-16", + "operations": "2019-09-16" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.HealthcareApis", + "onbehalfSupportedLogCategories": [ + "AuditLogs" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "services/privateEndpointConnectionProxies", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "services/privateEndpointConnections", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "services/privateLinkResources", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "services/iomtconnectors", + "locations": [ + "West US 2", + "UK South", + "East US 2", + "UK West", + "North Central US", + "Australia East", + "Southeast Asia", + "East US", + "West Europe", + "South Central US", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "services/iomtconnectors/connections", + "locations": [ + "West US 2", + "UK South", + "East US 2", + "UK West", + "North Central US", + "Australia East", + "Southeast Asia", + "East US", + "West Europe", + "South Central US", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "services/iomtconnectors/mappings", + "locations": [ + "West US 2", + "UK South", + "East US 2", + "UK West", + "North Central US", + "Australia East", + "Southeast Asia", + "East US", + "West Europe", + "South Central US", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2021-01-11", + "2020-05-01-preview", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "UK West", + "North Central US", + "West US 2", + "Australia East", + "Southeast Asia", + "UK South", + "East US", + "West Europe", + "South Central US", + "East US 2", + "North Europe", + "West Central US", + "Japan East", + "Germany West Central" + ], + "apiVersions": [ + "2021-01-11", + "2020-03-30", + "2020-03-15", + "2019-09-16", + "2018-08-20-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-09-16", + "operations": "2019-09-16" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.HealthcareApis" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftHealthcareApisShoebox", + "sourceMdmNamespace": "Shoebox2" + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "53af30df-f192-4c0e-8092-9bd45604aedd" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridCompute", + "namespace": "Microsoft.HybridCompute", + "authorizations": [ + { + "applicationId": "8c420feb-03df-47cc-8a05-55df0cf3064b", + "roleDefinitionId": "83eeb1c6-47f8-4da2-bbc3-42a7ac767360" + }, + { + "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1", + "roleDefinitionId": "f32ad452-2b05-4296-bee4-fc9056ed85fa" + } + ], + "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", + "UK South" + ], + "apiVersions": [ + "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", + "UK South" + ], + "apiVersions": [ + "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-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", + "UK South" + ], + "apiVersions": [ + "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", + "UK South" + ], + "apiVersions": [ + "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-01-28-preview", + "2020-08-15-preview", + "2020-08-02", + "2020-07-30-preview", + "2020-03-11-preview", + "2019-12-12", + "2019-08-02-preview", + "2019-03-18-preview" + ], + "defaultApiVersion": "2020-08-02", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "eec53b1f-b9a4-4479-acf5-6b247c6a49f2" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridData", + "namespace": "Microsoft.HybridData", + "authorization": { + "applicationId": "621269cf-1195-44a3-a835-c613d103dd15", + "roleDefinitionId": "00320cd4-8823-47f2-bbe4-5c9da031311d" + }, + "resourceTypes": [ + { + "resourceType": "dataManagers", + "locations": [ + "West US", + "North Europe", + "West Europe", + "East US", + "West US 2", + "West Central US", + "Southeast Asia" + ], + "apiVersions": [ + "2019-06-01", + "2016-06-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-06-01", + "2016-06-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HybridNetwork", + "namespace": "Microsoft.HybridNetwork", + "authorizations": [ + { + "applicationId": "b8ed041c-aa91-418e-8f47-20c70abc2de1", + "roleDefinitionId": "b193432e-9b7e-4885-b2c0-052afdceace3" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-01-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US 2 EUAP", + "West Central US", + "West Europe", + "East US" + ], + "apiVersions": [ + "2020-01-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ImportExport", + "namespace": "Microsoft.ImportExport", + "authorization": { + "applicationId": "7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a", + "roleDefinitionId": "9f7aa6bb-9454-46b6-8c01-a4b0f33ca151" + }, + "resourceTypes": [ + { + "resourceType": "jobs", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-08-01", + "2016-11-01", + "2016-07-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2016-11-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-08-01", + "2016-11-01", + "2016-07-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2016-11-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-08-01", + "2016-11-01", + "2016-07-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2016-11-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-08-01", + "2016-11-01", + "2016-07-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2016-11-01" + } + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IndustryDataLifecycle", + "namespace": "Microsoft.IndustryDataLifecycle", + "authorizations": [ + { + "applicationId": "3072002f-3e97-4979-91f2-09fe40da755d", + "roleDefinitionId": "23694dec-6164-410e-b12d-691a3c92ae59" + } + ], + "resourceTypes": [ + { + "resourceType": "custodianCollaboratives/termsOfUseDocuments", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "defaultApiVersion": "2020-01-12-preview", + "capabilities": "None" + }, + { + "resourceType": "custodianCollaboratives/collaborativeImage", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "defaultApiVersion": "2020-01-12-preview", + "capabilities": "None" + }, + { + "resourceType": "custodianCollaboratives/invitations", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "custodianCollaboratives/invitations/termsOfUseDocuments", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "memberCollaboratives", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "defaultApiVersion": "2020-01-12-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "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/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": [ + "2020-01-12-preview" + ], + "defaultApiVersion": "2020-01-12-preview", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-01-12-preview", + "operations": "2020-01-12-preview" + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "3072002f-3e97-4979-91f2-09fe40da755d" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IntelligentITDigitalTwin", + "namespace": "Microsoft.IntelligentITDigitalTwin", + "authorizations": [ + { + "applicationId": "dfbed8b2-492a-414e-b2f0-482534e87bc5", + "roleDefinitionId": "0922588a-ac0c-4eb6-8d8f-afbeb8edf466" + } + ], + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-12-01-privatepreview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IoTCentral", + "namespace": "Microsoft.IoTCentral", + "authorizations": [ + { + "applicationId": "9edfcdd9-0bc5-4bd4-b287-c3afc716aac7" + } + ], + "resourceTypes": [ + { + "resourceType": "IoTApps", + "locations": [ + "West Europe", + "West US", + "East US 2", + "North Europe", + "East US", + "Central US", + "West Central US", + "Australia", + "Asia Pacific", + "Europe", + "Japan", + "UK", + "United States" + ], + "apiVersions": [ + "2018-09-01", + "2017-07-01-privatepreview" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2018-09-01", + "2017-07-01-privatepreview" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "checkSubdomainAvailability", + "locations": [], + "apiVersions": [ + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-09-01", + "2017-07-01-privatepreview" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + }, + { + "resourceType": "appTemplates", + "locations": [], + "apiVersions": [ + "2018-09-01" + ], + "defaultApiVersion": "2018-09-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-09-01", + "operations": "2018-09-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.IoTCentral" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "MicrosoftIotSaasShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + }, + "regionLess": true + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.IoTSecurity", + "namespace": "Microsoft.IoTSecurity", + "authorizations": [ + { + "applicationId": "cfbd4387-1a16-4945-83c0-ec10e46cd4da", + "roleDefinitionId": "d5d6ff70-e29a-4cec-b30b-4bd7ebcdcbaa" + } + ], + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "defenderSettings", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "description": "Microsoft Defender for IoT Manifest" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Kubernetes", + "namespace": "Microsoft.Kubernetes", + "authorizations": [ + { + "applicationId": "64b12d6e-6549-484c-8cc6-6281839ba394", + "roleDefinitionId": "1d1d44cf-68a1-4def-a2b6-cd7efc3515af" + }, + { + "applicationId": "359431ad-ece5-496b-8768-be4bbfd82f36", + "roleDefinitionId": "1b5c71b7-9814-4b40-b62a-23018af874d8" + }, + { + "applicationId": "0000dab9-8b21-4ba2-807f-1743968cef00", + "roleDefinitionId": "1b5c71b7-9814-4b40-b62a-23018af874d8" + }, + { + "applicationId": "8edd93e1-2103-40b4-bd70-6e34e586362d", + "roleDefinitionId": "eb67887a-31e8-4e4e-bf5b-14ff79351a6f" + } + ], + "resourceTypes": [ + { + "resourceType": "connectedClusters", + "locations": [ + "West Europe", + "East US", + "West Central US", + "South Central US", + "Southeast Asia", + "UK South", + "East US 2", + "West US 2", + "Australia East", + "North Europe" + ], + "apiVersions": [ + "2021-04-01-preview", + "2021-03-01", + "2020-01-01-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "de742ffc-b441-4542-8646-7e805426b824" + } + }, + "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" + ], + "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" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "de742ffc-b441-4542-8646-7e805426b824" + }, + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.KubernetesConfiguration", + "namespace": "Microsoft.KubernetesConfiguration", + "authorizations": [ + { + "applicationId": "c699bf69-fb1d-4eaf-999b-99e6b2ae4d85", + "roleDefinitionId": "90155430-a360-410f-af5d-89dc284d85c6" + }, + { + "applicationId": "03db181c-e9d3-4868-9097-f0b728327182", + "roleDefinitionId": "DE2ADB97-42D8-49C8-8FCF-DBB53EF936AC" + }, + { + "applicationId": "a0f92522-89de-4c5e-9a75-0044ccf66efd", + "roleDefinitionId": "b3429810-7d5c-420e-8605-cf280f3099f2" + } + ], + "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" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview", + "2020-07-01-preview", + "2019-11-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview", + "2020-07-01-preview", + "2019-11-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "03b7be2d-167c-44b4-b5c4-f00f5e60e5d7" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Kusto", + "namespace": "Microsoft.Kusto", + "authorizations": [ + { + "applicationId": "2746ea77-4702-4b45-80ca-3c97e680e8b7", + "roleDefinitionId": "dd9d4347-f397-45f2-b538-85f21c90037c" + } + ], + "resourceTypes": [ + { + "resourceType": "clusters", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "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-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" + ] + } + ], + "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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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", + "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-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": [ + "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", + "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-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": [ + "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" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "2746ea77-4702-4b45-80ca-3c97e680e8b7" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-05-15", + "operations": "2019-05-15" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Kusto" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "Kusto", + "sourceMdmNamespace": "MdmEngineMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Kusto", + "onbehalfSupportedLogCategories": [ + "SucceededIngestion", + "FailedIngestion", + "IngestionBatching", + "Command", + "Query", + "TableUsageStatistics", + "TableDetails" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.LabServices", + "namespace": "Microsoft.LabServices", + "authorization": { + "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f", + "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525", + "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525" + }, + "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": [], + "apiVersions": [ + "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": [ + "2019-01-01-preview", + "2018-10-15", + "2017-12-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.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": "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-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": "2018-03-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "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-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/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-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-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-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-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-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-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-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-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-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/linkedServices", + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US" + ], + "apiVersions": [ + "2020-09-01-preview", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity" + }, + { + "resourceType": "workspaces/labelingJobs", + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US" + ], + "apiVersions": [ + "2021-03-01-preview", + "2020-09-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "0736f41a-0425-4b46-bdb5-1563eff02385" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-11-19", + "operations": "2018-11-19" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "ViennaAzureMonitor", + "sourceMdmNamespace": "vienna" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MachineLearningServices", + "onbehalfSupportedLogCategories": [ + "AmlComputeJobEvent", + "AmlComputeClusterNodeEvent", + "AmlComputeClusterEvent", + "AmlComputeCpuGpuUtilization", + "AmlRunStatusChangedEvent" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Maintenance", + "namespace": "Microsoft.Maintenance", + "authorization": { + "applicationId": "f18474f2-a66a-4bb0-a3c9-9b8d892092fa", + "roleDefinitionId": "2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5" + }, + "resourceTypes": [ + { + "resourceType": "maintenanceConfigurations", + "locations": [ + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "West Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Australia Central 2", + "South Africa North", + "South Africa West", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "France South", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "Switzerland North", + "Switzerland West" + ], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2020-07-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.maintenance": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-01-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzDeployer" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "AzDeployer", + "sourceMdmNamespace": "LogMetric" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzDeployer", + "onbehalfSupportedLogCategories": [ + "error", + "warning", + "AuditEvents" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ManagedServices", + "namespace": "Microsoft.ManagedServices", + "authorization": { + "applicationId": "66c6d0d1-f2e7-4a18-97a9-ed10f3347016", + "roleDefinitionId": "1e86f807-6ec0-40b3-8b5f-686b7e43a0a2" + }, + "resourceTypes": [ + { + "resourceType": "registrationDefinitions", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "registrationAssignments", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "marketplaceRegistrationDefinitions", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operationStatuses", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2019-09-01", + "2019-06-01", + "2019-04-01-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Management", + "namespace": "Microsoft.Management", + "authorization": { + "applicationId": "f2c304cf-8e7e-4c3f-8164-16299ad9d272", + "roleDefinitionId": "c1cf3708-588a-4647-be7f-f400bbe214cf" + }, + "resourceTypes": [ + { + "resourceType": "resources", + "locations": [], + "apiVersions": [ + "2017-11-01-preview", + "2017-08-31-preview", + "2017-06-30-preview", + "2017-05-31-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managementGroups", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "2020-10-01", + "2020-05-01", + "2020-02-01", + "2019-11-01", + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "Global", + "West US 2", + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-02-01-preview", + "2018-05-01", + "2017-01-01-preview" + ], + "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/eventGridFilters", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2018-05-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-02-01-preview", + "2018-05-01", + "2017-01-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-05-01", + "operations": "2018-05-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftLocationBasedServices" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "MicrosoftLocationBasedServicesShoebox", + "sourceMdmNamespace": "ServiceOperations" + } + ] + }, + "regionless": true + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Marketplace", + "namespace": "Microsoft.Marketplace", + "authorizations": [ + { + "applicationId": "a0e1e353-1a3e-42cf-a8ea-3a9746eec58c" + }, + { + "applicationId": "87df0fbf-e22d-4d7c-bc30-f59ca7460837" + }, + { + "applicationId": "a5ce81bb-67c7-4043-952a-22004782adb5" + } + ], + "resourceTypes": [ + { + "resourceType": "register", + "locations": [], + "apiVersions": [ + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privategalleryitems", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "products", + "locations": [], + "apiVersions": [ + "2018-08-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offers", + "locations": [], + "apiVersions": [ + "2018-08-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "macc", + "locations": [], + "apiVersions": [ + "2018-08-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers/offers", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers/offers/plans", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers/offers/plans/configs", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers/offers/plans/configs/importImage", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "offerTypes/publishers/offers/plans/agreements", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "listAvailableOffers", + "locations": [], + "apiVersions": [ + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "publishers", + "locations": [], + "apiVersions": [ + "2019-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "publishers/offers", + "locations": [], + "apiVersions": [ + "2019-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "publishers/offers/amendments", + "locations": [], + "apiVersions": [ + "2019-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStoreClient", + "locations": [], + "apiVersions": [ + "2018-08-01-beta", + "2018-03-01-beta" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores", + "locations": [], + "apiVersions": [ + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/offers", + "locations": [], + "apiVersions": [ + "2020-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/requestApprovals/query", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/requestApprovals/withdrawPlan", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/RequestApprovals", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/queryNotificationsState", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/offers/acknowledgeNotification", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "privateStores/AdminRequestApprovals", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MarketplaceApps", + "namespace": "Microsoft.MarketplaceApps", + "resourceTypes": [ + { + "resourceType": "classicDevServices", + "locations": [ + "Northwest US", + "East Asia", + "Southeast Asia", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "Central US", + "North Europe", + "West Europe", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "Canada Central", + "Canada East" + ], + "apiVersions": [ + "2017-11-01" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2017-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2017-11-01" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2017-11-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MarketplaceOrdering", + "namespace": "Microsoft.MarketplaceOrdering", + "resourceTypes": [ + { + "resourceType": "agreements", + "locations": [ + "South Central US", + "West US" + ], + "apiVersions": [ + "2021-01-01", + "2015-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-01-01", + "2015-06-01" + ], + "capabilities": "None" + }, + { + "resourceType": "offertypes", + "locations": [ + "South Central US", + "West US" + ], + "apiVersions": [ + "2021-01-01", + "2015-06-01" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Migrate", + "namespace": "Microsoft.Migrate", + "authorizations": [ + { + "applicationId": "e3bfd6ac-eace-4438-9dc1-eed439e738de", + "roleDefinitionId": "e88f4159-1d71-4b12-8ef0-38c039cb051e" + }, + { + "applicationId": "51df634f-ddb4-4901-8a2d-52f6393a796b", + "roleDefinitionId": "d7568dc2-2265-41f7-9c0f-1e9c7862ca62" + } + ], + "resourceTypes": [ + { + "resourceType": "projects", + "locations": [ + "West Central US", + "East US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia" + ], + "apiVersions": [ + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrateprojects", + "locations": [ + "Central US", + "East Asia", + "Southeast Asia", + "North Europe", + "West Europe", + "West US 2", + "Australia Southeast", + "UK South", + "UK West", + "Canada Central", + "Central India", + "South India", + "Japan East", + "Japan West", + "Brazil South", + "Korea South", + "Korea Central", + "France Central", + "Switzerland North", + "Australia East" + ], + "apiVersions": [ + "2020-06-01-preview", + "2020-05-01", + "2019-06-01", + "2018-09-01-preview" + ], + "defaultApiVersion": "2018-09-01-preview", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "e3bfd6ac-eace-4438-9dc1-eed439e738de" + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "assessmentProjects", + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East" + ], + "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": "2019-10-01-preview", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "c1044a71-fd4a-42f0-9ba3-bd810cae7cb3" + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "West Central US" + ], + "apiVersions": [ + "2019-10-01", + "2019-05-01", + "2018-06-30-preview", + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "West Central US", + "East US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia" + ], + "apiVersions": [ + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/assessmentOptions", + "locations": [ + "West Central US", + "East US", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia" + ], + "apiVersions": [ + "2018-02-02", + "2017-11-11-preview", + "2017-09-25-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/rmsOperationResults", + "locations": [ + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East", + "Japan East" + ], + "apiVersions": [ + "2021-01-01", + "2019-10-01-preview" + ], + "defaultApiVersion": "2019-10-01-preview", + "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" + ], + "apiVersions": [ + "2021-03-01-preview", + "2021-01-01", + "2020-05-01", + "2019-12-02-preview", + "2019-02-28-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-05-01", + "operations": "2020-05-01" + }, + "mdsMappingResourceIdOverridePathSelector": "", + "metrics": { + "metricsFilterPathSelector": "", + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MixedReality" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "SpatialAnchorsShoebox", + "sourceMdmNamespace": "SACustomer" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "remoteRenderingAccounts", + "locations": [ + "East US 2", + "East US", + "Southeast Asia", + "West Europe", + "West US 2", + "Japan East", + "Australia East", + "North Europe", + "South Central US", + "UK South" + ], + "apiVersions": [ + "2021-03-01-preview", + "2021-01-01", + "2020-04-06-preview", + "2019-12-02-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-04-06-preview", + "operations": "2020-04-06-preview" + }, + "mdsMappingResourceIdOverridePathSelector": "", + "metrics": { + "metricsFilterPathSelector": "", + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MixedReality" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "RemoteRenderingShoebox", + "sourceMdmNamespace": "RRCustomer" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "objectAnchorsAccounts", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "c7ddd9b4-5172-4e28-bd29-1e0792947d18" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-02-28-preview", + "operations": "2019-02-28-preview" + }, + "mdsMappingResourceIdOverridePathSelector": "", + "metrics": { + "metricsFilterPathSelector": "", + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.MixedReality" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "DefaultShoebox", + "sourceMdmNamespace": "DefaultCustomer" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MobileNetwork", + "namespace": "Microsoft.MobileNetwork", + "authorizations": [ + { + "applicationId": "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" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.NetApp", + "namespace": "Microsoft.NetApp", + "authorizations": [ + { + "applicationId": "12fb057d-b751-47cd-857c-f2934bb677b4", + "roleDefinitionId": "e4796bef-6b6d-4cbc-ba1e-27f1a308d860" + }, + { + "applicationId": "608f9929-9737-432e-860f-4e1c1821052f", + "roleDefinitionId": "3db66429-be98-4b0c-8ad6-20dc5cb960e4" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East US", + "East US 2", + "Germany North", + "Germany West Central", + "Japan East", + "Japan West", + "North Europe", + "Norway East", + "Norway West", + "South Central US", + "South India", + "Southeast Asia", + "UAE Central", + "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": [ + "2020-12-01", + "2020-11-01", + "2020-10-01", + "2020-09-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-03-01", + "2020-02-01", + "2019-11-01", + "2019-10-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-05-01", + "2017-08-15" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "12fb057d-b751-47cd-857c-f2934bb677b4" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-08-15", + "operations": "2017-08-15" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.NetApp" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftNetAppShoebox2", + "sourceMdmNamespace": "NetAppUsageAndMetrics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ObjectStore", + "namespace": "Microsoft.ObjectStore", + "resourceTypes": [ + { + "resourceType": "osNamespaces", + "locations": [ + "West US" + ], + "apiVersions": [ + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.OffAzure", + "namespace": "Microsoft.OffAzure", + "authorizations": [ + { + "applicationId": "728a93e3-065d-4678-93b1-3cc281223341", + "roleDefinitionId": "b9967bf7-a345-4af8-95f0-49916f760fc6" + } + ], + "resourceTypes": [ + { + "resourceType": "VMwareSites", + "locations": [ + "Central US", + "West Europe", + "UK South", + "UK West", + "North Europe", + "West US 2", + "Southeast Asia", + "East Asia", + "Central India", + "South India", + "Canada Central", + "Australia Southeast", + "Japan West", + "Japan East", + "Brazil South", + "Korea Central", + "Korea South", + "France Central", + "Switzerland North", + "Australia East" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "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" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Peering", + "namespace": "Microsoft.Peering", + "resourceTypes": [ + { + "resourceType": "peerings", + "locations": [ + "Japan East", + "Japan West", + "Korea Central", + "East Asia", + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Southeast Asia", + "West India", + "South India", + "East US", + "East US 2", + "North Central US", + "South Central US", + "Canada Central", + "West US", + "West US 2", + "West Central US", + "Canada East", + "West Europe", + "UK South", + "UK West", + "North Europe", + "France Central", + "France South", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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": [ + "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": [ + "2020-10-01", + "2020-04-01", + "2020-01-01-preview" + ], + "defaultApiVersion": "2020-04-01", + "capabilities": "None" + }, + { + "resourceType": "peeringServiceLocations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": "operations", + "locations": [], + "apiVersions": [ + "2020-10-01", + "2020-04-01", + "2020-01-01-preview", + "2019-09-01-preview", + "2019-08-01-preview" + ], + "defaultApiVersion": "2020-04-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-04-01", + "operations": "2020-04-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftPeering" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftPeeringShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerBI", + "namespace": "Microsoft.PowerBI", + "authorizations": [ + { + "applicationId": "00000009-0000-0000-c000-000000000000", + "roleDefinitionId": "d2079c0c-4a98-48b1-b511-eae3fc2003ab" + } + ], + "resourceTypes": [ + { + "resourceType": "workspaceCollections", + "locations": [ + "South Central US", + "North Central US", + "East US 2", + "West US", + "West Europe", + "North Europe", + "Brazil South", + "Southeast Asia", + "Australia Southeast", + "Canada Central", + "Japan East", + "UK South", + "West India" + ], + "apiVersions": [ + "2016-01-29" + ], + "defaultApiVersion": "2016-01-29", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2016-01-29" + ], + "defaultApiVersion": "2016-01-29", + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "South Central US", + "North Central US", + "East US 2", + "West US", + "West Europe", + "North Europe", + "Brazil South", + "Southeast Asia", + "Australia Southeast", + "Canada Central", + "Japan East", + "UK South", + "West India" + ], + "apiVersions": [ + "2016-01-29" + ], + "defaultApiVersion": "2016-01-29", + "capabilities": "None" + }, + { + "resourceType": "privateLinkServicesForPowerBI", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateLinkServicesForPowerBI/operationResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2020-06-01", + "2016-01-29" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-01-29", + "operations": "2016-01-29" + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "PBIDedicatedRP", + "onbehalfSupportedLogCategories": [ + "Engine" + ] + } + ], + "regionless": true + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerBIDedicated", + "namespace": "Microsoft.PowerBIDedicated", + "authorizations": [ + { + "applicationId": "4ac7d521-0382-477b-b0f8-7e1d95f85ca2", + "roleDefinitionId": "490d5987-bcf6-4be6-b6b2-056a78cb693a" + }, + { + "applicationId": "cb4dc29f-0bf4-402a-8b30-7511498ed654", + "roleDefinitionId": "e03b0682-208e-4ddd-841f-66fb49a5c930" + } + ], + "resourceTypes": [ + { + "resourceType": "capacities", + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "South Africa North", + "Switzerland North", + "Switzerland West", + "Canada East", + "South Africa West", + "UK West", + "Central US", + "Central India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "defaultApiVersion": "2017-01-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "autoScaleVCores", + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "South Africa North", + "Switzerland North", + "Switzerland West", + "Canada East", + "South Africa West", + "UK West", + "Central US", + "Central India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-01-01" + ], + "defaultApiVersion": "2021-01-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2017-01-01-preview" + ], + "defaultApiVersion": "2017-01-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations/checkNameAvailability", + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "Switzerland North", + "Switzerland West", + "Canada East", + "UK West", + "Central US", + "Central India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Africa North", + "South Central US", + "Southeast Asia", + "South Africa West", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "defaultApiVersion": "2017-01-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "Switzerland North", + "Switzerland West", + "Canada East", + "UK West", + "Central US", + "Central India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "South Africa North", + "South Africa West", + "West US 2" + ], + "apiVersions": [ + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "defaultApiVersion": "2017-01-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "Australia Southeast", + "Brazil South", + "Canada Central", + "Norway East", + "Norway West", + "UAE North", + "UAE Central", + "Germany West Central", + "Germany North", + "France Central", + "France South", + "Korea Central", + "Korea South", + "Japan West", + "Switzerland North", + "Switzerland West", + "Canada East", + "UK West", + "Central US", + "Central India", + "Australia East", + "East Asia", + "East US", + "East US 2", + "West India", + "Japan East", + "West Central US", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2", + "South Africa North", + "South Africa West" + ], + "apiVersions": [ + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "defaultApiVersion": "2017-01-01-preview", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2021-01-01", + "2018-09-01-preview", + "2017-10-01", + "2017-01-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2017-01-01-preview" + }, + "metrics": { + "metricsFilterPathSelector": "sku.name", + "mdmInfo": [ + { + "sourceMdmAccount": "PBIDedicated", + "sourceMdmNamespace": "SystemCounters" + } + ], + "mdsInfo": [ + { + "serviceIdentity": "PBIDedicatedRP" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "PBIDedicatedRP", + "onbehalfSupportedLogCategories": [ + "Engine" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.PowerPlatform", + "namespace": "Microsoft.PowerPlatform", + "authorization": { + "applicationId": "e64bd61e-5424-451f-b666-e02ee2878437", + "roleDefinitionId": "51598b27-f396-476b-b212-90d7da526159" + }, + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-10-30", + "2020-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "enterprisePolicies", + "locations": [], + "apiVersions": [ + "2020-10-30" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ProjectBabylon", + "namespace": "Microsoft.ProjectBabylon", + "authorizations": [ + { + "applicationId": "73c2949e-da2d-457a-9607-fcc665198967", + "roleDefinitionId": "1BC09725-0C9B-4F57-A3D0-FCCF4EB40120", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2019-10-01-preview" + ], + "defaultApiVersion": "2019-10-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "73c2949e-da2d-457a-9607-fcc665198967" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-10-01-preview", + "operations": "2019-10-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "ProjectBabylon" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftProjectBabylonShoebox", + "sourceMdmNamespace": "CatalogAnalytics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ProviderHub", + "namespace": "Microsoft.ProviderHub", + "resourceTypes": [ + { + "resourceType": "providerRegistrations", + "locations": [], + "apiVersions": [ + "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": [ + "2020-11-20", + "2020-06-01-preview", + "2019-10-01", + "2019-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "providerRegistrations/resourceTypeRegistrations", + "locations": [], + "apiVersions": [ + "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": [ + "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": [ + "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": [ + "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", + "East US 2" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-12-01-preview", + "operations": "2020-12-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "ProjectBabylon" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftAzurePurviewShoebox", + "sourceMdmNamespace": "CatalogAnalytics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "ProjectBabylon", + "onbehalfSupportedLogCategories": [ + "ScanStatusLogEvent" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "setDefaultAccount", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "capabilities": "None" + }, + { + "resourceType": "removeDefaultAccount", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "capabilities": "None" + }, + { + "resourceType": "getDefaultAccount", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Brazil South", + "Canada Central", + "South Central US", + "Central India", + "East US 2" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "73c2949e-da2d-457a-9607-fcc665198967" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-12-01-preview", + "operations": "2020-12-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "ProjectBabylon" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftAzurePurviewShoebox", + "sourceMdmNamespace": "CatalogAnalytics" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Quantum", + "namespace": "Microsoft.Quantum", + "authorizations": [ + { + "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc", + "roleDefinitionId": "915bd376-2da8-411d-9906-895a54086a66" + } + ], + "resourceTypes": [ + { + "resourceType": "Workspaces", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "West Central US" + ], + "apiVersions": [ + "2019-11-04-preview" + ], + "defaultApiVersion": "2019-11-04-preview", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc" + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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" + ], + "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" + ], + "apiVersions": [ + "2019-11-04-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/checkNameAvailability", + "locations": [], + "apiVersions": [ + "2019-11-04-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc" + }, + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.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" + ], + "apiVersions": [ + "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-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": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2018-12-20-preview" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2018-07-10" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-07-10" + } + ], + "capabilities": "SupportsExtension" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2016-08-10", + "operations": "2016-08-10" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureRecoveryServices" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureRecoveryServices", + "onbehalfSupportedLogCategories": [ + "AzureBackupReport", + "CoreAzureBackup", + "AddonAzureBackupJobs", + "AddonAzureBackupAlerts", + "AddonAzureBackupPolicy", + "AddonAzureBackupStorage", + "AddonAzureBackupProtectedInstance", + "AzureSiteRecoveryJobs", + "AzureSiteRecoveryEvents", + "AzureSiteRecoveryReplicatedItems", + "AzureSiteRecoveryReplicationStats", + "AzureSiteRecoveryRecoveryPoints", + "AzureSiteRecoveryReplicationDataUploadRate", + "AzureSiteRecoveryProtectedDiskDataChurn" + ] + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "56d7070a-0115-4bfe-8398-033c18db3871" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RedHatOpenShift", + "namespace": "Microsoft.RedHatOpenShift", + "authorizations": [ + { + "applicationId": "f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875", + "roleDefinitionId": "640c5ac9-6f32-4891-94f4-d20f7aa9a7e6", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635", + "managedByAuthorization": { + "allowManagedByInheritance": true + } + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-04-30", + "2019-12-31-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "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", + "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", + "Southeast Asia", + "Switzerland North", + "Switzerland West", + "UAE North", + "UK South", + "UK West", + "West Europe", + "West US 2", + "West US" + ], + "apiVersions": [ + "2020-04-30" + ], + "defaultApiVersion": "2020-04-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-04-30", + "2019-12-31-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceConnector", + "namespace": "Microsoft.ResourceConnector", + "authorizations": [ + { + "applicationId": "585fc3c3-9a59-4720-8319-53cce041a605", + "roleDefinitionId": "008e7b93-7712-4d05-83ce-a9fcc80300e9" + }, + { + "applicationId": "d22ea4d1-2678-4a7b-aa5e-f340c2a7d993", + "roleDefinitionId": "7c812eee-67c9-4a05-a1b1-c0ac88fd1067" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-09-15-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-02-01", + "2020-07-15-privatepreview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "e0a56fdf-acc9-427b-b9f2-763bb3e8724e" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ResourceGraph", + "namespace": "Microsoft.ResourceGraph", + "authorization": { + "applicationId": "509e4652-da8d-478d-a730-e9d4a1996ca4" + }, + "resourceTypes": [ + { + "resourceType": "resources", + "locations": [ + "East US" + ], + "apiVersions": [ + "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": [ + "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" + ], + "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" + ], + "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": [ + "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": [ + "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", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "Central India", + "South India", + "Japan East", + "Korea Central", + "North Europe", + "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", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "Central India", + "South India", + "Japan East", + "Korea Central", + "North Europe", + "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", + "East US 2", + "East US", + "Central US", + "North Central US", + "France Central", + "UK South", + "Central India", + "South India", + "Japan East", + "Korea Central", + "North Europe", + "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": [ + "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": [ + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "endpoints": { + "galleryEndpoint": "https://gallery.azure.com", + "graphEndpoint": "https://graph.windows.net/", + "portalEndpoint": "https://portal.azure.com", + "graphAudience": "https://graph.windows.net/", + "authentication": { + "loginEndpoint": "https://login.windows.net", + "audiences": [ + "https://management.core.windows.net/", + "https://management.azure.com/" + ], + "tenant": "common", + "identityProvider": "AAD" + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "3b990c8b-9607-4c2a-8b04-1d41985facca" + } + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SaaS", + "namespace": "Microsoft.SaaS", + "authorizations": [ + { + "applicationId": "f738ef14-47dc-4564-b53b-45069484ccc7", + "roleDefinitionId": "b131dd2d-387a-4cae-bb9b-3d021f80d1e6" + }, + { + "applicationId": "20e940b3-4c77-4b0b-9a53-9e16a1b010a7" + } + ], + "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": "checkModernEligibility", + "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.ScVmm", + "namespace": "Microsoft.ScVmm", + "authorizations": [ + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "4fe6d683-8411-4247-8525-b6b5b8a80669" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-06-05-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "West US 2", + "East US 2 EUAP", + "West Europe" + ], + "apiVersions": [ + "2020-06-05-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-06-05-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Search", + "namespace": "Microsoft.Search", + "authorization": { + "applicationId": "408992c7-2af6-4ff1-92e3-65b73d2b5092", + "roleDefinitionId": "20FA3191-87CF-4C3D-9510-74CCB594A310" + }, + "resourceTypes": [ + { + "resourceType": "searchServices", + "locations": [ + "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": [ + "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": [ + "2020-08-01-Preview", + "2020-08-01", + "2020-03-13", + "2019-10-01-Preview", + "2015-08-19" + ], + "capabilities": "None" + }, + { + "resourceType": "resourceHealthMetadata", + "locations": [ + "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": [ + "2020-08-01-Preview", + "2020-08-01", + "2020-03-13", + "2019-10-01-Preview", + "2015-08-19" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-01-Preview", + "2020-08-01", + "2020-03-13", + "2019-10-01-Preview", + "2015-08-19", + "2015-02-28" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "7a9069fc-325f-43a6-a3b2-2bd000d8cc08" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "AzureSearch" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": false, + "sourceMdmAccount": "azsearchshoeboxprod", + "sourceMdmNamespace": "Microsoft.Search" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "AzureSearch", + "onbehalfSupportedLogCategories": [ + "OperationLogs" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SecurityDetonation", + "namespace": "Microsoft.SecurityDetonation", + "authorizations": [ + { + "applicationId": "29820072-374d-49b8-945a-3941d7e9b468", + "roleDefinitionId": "4ddf1807-30b0-464a-9d16-a8822daf866b" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Australia Southeast", + "Australia Central 2", + "Central US", + "East US", + "East US 2", + "West US", + "West US 2", + "North Central US", + "South Central US", + "West Central US", + "East Asia", + "Southeast Asia", + "Brazil South", + "Japan East", + "Japan West", + "North Europe", + "West Europe", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "France South", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "South Africa West", + "UAE Central", + "Switzerland West", + "Germany North", + "Norway West" + ], + "apiVersions": [ + "2020-07-01-preview", + "2019-08-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2020-07-01-preview", + "operations": "2020-07-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.SecurityDetonation" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSecurityDetonationShoeboxCentralUS", + "sourceMdmNamespace": "DaaSRPProd" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SecurityInsights", + "namespace": "Microsoft.SecurityInsights", + "authorizations": [ + { + "applicationId": "98785600-1bb7-4fb9-b9fa-19afe2c8a360", + "roleDefinitionId": "ef1c46aa-ae81-4091-ab83-f75f28efb7b8" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "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" + ], + "apiVersions": [ + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "watchlists", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West" + ], + "apiVersions": [ + "2019-01-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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "managedclusters/nodetypes", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedclusters/applicationTypes", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedclusters/applicationTypes/versions", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedclusters/applications", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "managedclusters/applications/services", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/managedClusterOperations", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/managedClusterOperationResults", + "locations": [ + "East Asia", + "North Europe", + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "74cb6831-0dbb-4be1-8206-fd4df301cdc2" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceFabricMesh", + "namespace": "Microsoft.ServiceFabricMesh", + "authorizations": [ + { + "applicationId": "d10de03d-5ba3-497a-90e6-7ff8c9736059", + "roleDefinitionId": "BC13595A-E262-4621-929E-56FF90E6BF18" + } + ], + "resourceTypes": [ + { + "resourceType": "applications", + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-09-01-preview", + "operations": "2018-09-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.ServiceFabricMesh" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftServiceFabricMeshShoebox", + "sourceMdmNamespace": "SFMeshProd" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "networks", + "locations": [ + "East US", + "East US 2", + "West US", + "West US 2", + "South Central US", + "Central US", + "France Central", + "West Europe", + "North Europe", + "UK South", + "UK West", + "Australia East", + "East Asia", + "Southeast Asia", + "Korea Central", + "West India", + "Brazil South", + "Japan East", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "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", + "Norway East", + "South Africa North", + "Switzerland North", + "Central India", + "UAE North", + "Germany West Central", + "North Central US" + ], + "apiVersions": [ + "2018-09-01-preview", + "2018-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2018-09-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "d10de03d-5ba3-497a-90e6-7ff8c9736059" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-09-01-preview", + "operations": "2018-09-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.ServiceFabricMesh" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftServiceFabricMeshShoebox", + "sourceMdmNamespace": "SFMeshProd" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServicesHub", + "namespace": "Microsoft.ServicesHub", + "authorizations": [ + { + "applicationId": "9ed4cd8c-9a98-405f-966b-38ab1b0c24a3" + } + ], + "resourceTypes": [ + { + "resourceType": "connectors", + "locations": [ + "Australia East", + "Australia Southeast", + "Canada Central", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Japan East", + "Korea Central", + "North Europe", + "Southeast Asia", + "South Central US", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2019-08-15-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "supportOfferingEntitlement", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-08-15-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Singularity", + "namespace": "Microsoft.Singularity", + "authorizations": [ + { + "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + } + ], + "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": "None" + }, + { + "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 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", + "East US" + ], + "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 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", + "East US" + ], + "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 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", + "East US" + ], + "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 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", + "East US", + "South Central US" + ], + "apiVersions": [ + "2020-12-01-preview", + "2020-03-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3" + } + }, + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01", + "2016-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-21-preview", + "2019-07-01", + "2018-09-01-preview", + "2018-06-01", + "2018-03-01", + "2018-02-01", + "2017-12-01", + "2017-09-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "f7da168b-7d8a-4c9d-a1fa-5daaf05e32c2" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.SqlVirtualMachine", + "namespace": "Microsoft.SqlVirtualMachine", + "authorizations": [ + { + "applicationId": "bd93b475-f9e2-476e-963d-b2daf143ffb9", + "roleDefinitionId": "f96bd990-ffdf-4c17-8ee3-77454d9c3f5d" + } + ], + "resourceTypes": [ + { + "resourceType": "SqlVirtualMachineGroups", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2017-03-01-preview" + ], + "defaultApiVersion": "2017-03-01-preview", + "capabilities": "None" + } + ], + "metadata": { + "ProviderDescrption": "Provisions and maintains always on clusters for Sql VMs" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StorageCache", + "namespace": "Microsoft.StorageCache", + "authorizations": [ + { + "applicationId": "4392ab71-2ce2-4b0d-8770-b352745c73f5", + "roleDefinitionId": "e27430df-bd6b-4f3a-bd6d-d52ad1a7d075" + } + ], + "resourceTypes": [ + { + "resourceType": "caches", + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.StorageCache" + } + ] + } + } + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "caches/storageTargets", + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "usageModels", + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/ascoperations", + "locations": [ + "Australia East", + "Canada Central", + "Central US", + "East Asia", + "East US", + "East US 2", + "Korea Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "UK South", + "West Europe", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01", + "2020-03-01", + "2019-11-01", + "2019-08-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "4392ab71-2ce2-4b0d-8770-b352745c73f5" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2021-03-01", + "operations": "2021-03-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.StorageCache" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftStorageCacheShoebox", + "sourceMdmNamespace": "Shoebox" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StoragePool", + "namespace": "Microsoft.StoragePool", + "authorizations": [ + { + "applicationId": "5741a1ff-751d-4ad7-bcd1-dfe3c998fd11", + "roleDefinitionId": "3eef04c6-e880-42e9-aaef-6e04c508124c", + "managedByRoleDefinitionId": "7379b183-294f-4404-b062-f3b9a0f03f5a" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-03-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "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" + } + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-03-01" + ], + "defaultApiVersion": "2020-03-01", + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-06-05-preview", + "operations": "2017-06-05-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.StorageSync" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "StorageSyncShoebox", + "sourceMdmNamespace": "ServerTelemetry" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.StreamAnalytics", + "namespace": "Microsoft.StreamAnalytics", + "resourceTypes": [ + { + "resourceType": "streamingjobs", + "locations": [ + "Central US", + "West Europe", + "East US 2", + "North Europe", + "Japan East", + "West US", + "Southeast Asia", + "South Central US", + "East Asia", + "Japan West", + "North Central US", + "East US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "West Central US", + "UK South", + "UK West", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "South India" + ], + "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" + ], + "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" + ], + "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" + ], + "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": "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", + "UK West", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "France Central", + "South India" + ], + "apiVersions": [ + "2019-06-01", + "2018-11-01", + "2017-04-01-preview", + "2016-03-01", + "2015-11-01", + "2015-10-01", + "2015-09-01", + "2015-08-01-preview", + "2015-06-01", + "2015-05-01", + "2015-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "66f1e791-7bfb-4e18-aed8-1720056421c7" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "": "2016-03-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftStreamanalytics" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "StreamAnalyticsUserMetricsProd", + "sourceMdmNamespace": "ShoeBox" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftStreamanalytics", + "onbehalfSupportedLogCategories": [ + "Execution", + "Authoring" + ] + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Subscription", + "namespace": "Microsoft.Subscription", + "authorizations": [ + { + "applicationId": "e3335adb-5ca0-40dc-b8d3-bedc094e523b" + }, + { + "applicationId": "5da7367f-09c8-493e-8fd4-638089cddec3" + } + ], + "resourceTypes": [ + { + "resourceType": "SubscriptionDefinitions", + "locations": [ + "West US" + ], + "apiVersions": [ + "2017-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "SubscriptionOperations", + "locations": [ + "West US" + ], + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview", + "2018-11-01-preview", + "2018-03-01-preview", + "2017-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "CreateSubscription", + "locations": [ + "Central US" + ], + "apiVersions": [ + "2019-10-01-preview", + "2018-11-01-preview", + "2018-03-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operations", + "locations": [ + "West US" + ], + "apiVersions": [ + "2017-11-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cancel", + "locations": [ + "West US" + ], + "apiVersions": [ + "2020-09-01", + "2019-10-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "rename", + "locations": [ + "West US" + ], + "apiVersions": [ + "2020-09-01", + "2019-10-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "enable", + "locations": [ + "West US" + ], + "apiVersions": [ + "2020-09-01", + "2019-10-01-preview", + "2019-03-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "subscriptions", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "aliases", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview", + "2020-09-01", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operationResults", + "locations": [ + "Central US" + ], + "apiVersions": [ + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "acceptChangeTenant", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "changeTenantStatus", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "changeTenantRequest", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview", + "2019-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "policies", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "acceptOwnership", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "acceptOwnershipStatus", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.support", + "namespace": "microsoft.support", + "authorizations": [ + { + "applicationId": "959678cf-d004-4c22-82a6-d2ce549a58b8", + "roleDefinitionId": "81a3dd11-5123-4ec3-9485-772b0a27d1bd" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview", + "2015-07-01-Preview", + "2015-03-01" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "services", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "services/problemclassifications", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "supporttickets", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview", + "2015-07-01-Preview", + "2015-03-01" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "operationresults", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operationsstatus", + "locations": [ + "North Central US", + "South Central US", + "Central US", + "West Europe", + "North Europe", + "West US", + "East US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Southeast Asia", + "East Asia", + "Australia East", + "Australia Southeast" + ], + "apiVersions": [ + "2020-04-01", + "2019-05-01-preview" + ], + "capabilities": "None" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationFree" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Synapse", + "namespace": "Microsoft.Synapse", + "authorizations": [ + { + "applicationId": "9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b", + "roleDefinitionId": "a53b114a-452b-4d20-bcd6-c51c3c8c5878", + "managedByRoleDefinitionId": "ede175bc-31e5-4074-ba98-e62b895797aa" + }, + { + "applicationId": "1ac05c7e-12d2-4605-bf9d-549d7041c6b3", + "roleDefinitionId": "48e77487-c9fa-4abe-8484-71ebdebdbbc2" + }, + { + "applicationId": "ec52d13d-2e85-410e-a89a-8c79fb6a32ac", + "roleDefinitionId": "c3a447c3-a63a-4905-a125-c6856f9d0e17" + }, + { + "applicationId": "5ebe1e69-13dd-4953-84fa-a74ed591db2e", + "roleDefinitionId": "e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f" + }, + { + "applicationId": "2e458d69-0892-4655-b713-4f7b182315dd", + "roleDefinitionId": "45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF" + } + ], + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSynapseShoebox", + "sourceMdmNamespace": "Microsoft.Synapse" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse", + "onbehalfSupportedLogCategories": [ + "SynapseRbacOperations", + "GatewayApiRequests", + "SQLSecurityAuditEvents", + "BuiltinSqlReqsEnded", + "IntegrationPipelineRuns", + "IntegrationActivityRuns", + "IntegrationTriggerRuns" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/bigDataPools", + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSynapseShoebox", + "sourceMdmNamespace": "Microsoft.Synapse" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse", + "onbehalfSupportedLogCategories": [ + "BigDataPoolAppsEnded" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/sqlPools", + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2020-04-01-preview", + "2019-06-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSynapseShoebox", + "sourceMdmNamespace": "SQLStandardMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse", + "onbehalfSupportedLogCategories": [ + "SqlRequests", + "RequestSteps", + "ExecRequests", + "DmsWorkers", + "Waits", + "SQLSecurityAuditEvents" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/sqlDatabases", + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "2020-04-01-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSynapseShoebox", + "sourceMdmNamespace": "SQLStandardMetrics" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/sqlDatabaseAzureAsyncOperation", + "locations": [ + "West US 2", + "East US", + "North Europe", + "West Europe", + "Southeast Asia", + "Australia East", + "West Central US", + "South Central US", + "East US 2", + "UK South", + "West US", + "Australia Southeast", + "East Asia", + "Brazil South", + "Central US", + "Central India", + "Japan East", + "North Central US", + "Canada Central", + "Canada East", + "Korea Central", + "South Africa North", + "UK West", + "Japan West", + "France Central", + "Switzerland North", + "Germany West Central" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-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" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "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" + ], + "apiVersions": [ + "2021-03-01", + "2020-12-01", + "2019-06-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-06-01-preview", + "operations": "2019-06-01-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "MicrosoftSynapseShoebox", + "sourceMdmNamespace": "Microsoft.Synapse" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.Synapse" + } + ] + } + } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.TimeSeriesInsights", + "namespace": "Microsoft.TimeSeriesInsights", + "authorizations": [ + { + "applicationId": "120d688d-1518-4cf7-bd38-182f158850b6", + "roleDefinitionId": "5a43abdf-bb87-42c4-9e56-1c24bf364150" + } + ], + "resourceTypes": [ + { + "resourceType": "environments", + "locations": [ + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "apiVersions": [ + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-02-28-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-02-28-preview", + "operations": "2017-02-28-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftTimeSeriesInsights" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "RDXProdShoebox", + "sourceMdmNamespace": "Environment" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.TimeSeriesInsights", + "onbehalfSupportedLogCategories": [ + "Ingress", + "Management" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "environments/eventsources", + "locations": [ + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "apiVersions": [ + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-02-28-preview" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-02-28-preview", + "operations": "2017-02-28-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftTimeSeriesInsights" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "RDXProdShoebox", + "sourceMdmNamespace": "EventSource" + } + ] + }, + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.TimeSeriesInsights", + "onbehalfSupportedLogCategories": [ + "Ingress", + "Management" + ] + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "environments/referenceDataSets", + "locations": [ + "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": [ + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "UK South" + ], + "apiVersions": [ + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-02-28-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "Canada Central", + "West India", + "France Central", + "South Central Us", + "East US 2", + "West US", + "East US", + "East US 2 EUAP", + "North Europe", + "West Europe", + "West US 2", + "Central US", + "Southeast Asia", + "Australia East", + "Australia Southeast", + "East Asia", + "UK West", + "North Central US", + "UK South" + ], + "apiVersions": [ + "2021-03-31-preview", + "2020-05-15", + "2018-08-15-preview", + "2017-11-15", + "2017-05-31-privatepreview", + "2017-02-28-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "120d688d-1518-4cf7-bd38-182f158850b6" + }, + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2017-02-28-preview", + "operations": "2017-02-28-preview" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "MicrosoftTimeSeriesInsights" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "RDXProdShoebox", + "sourceMdmNamespace": "Environment" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VirtualMachineImages", + "namespace": "Microsoft.VirtualMachineImages", + "authorizations": [ + { + "applicationId": "cf32a0cc-373c-47c9-9156-0db11f6a6dfc", + "roleDefinitionId": "0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5", + "managedByRoleDefinitionId": "9e3af657-a8ff-583c-a75c-2fe7c4bcb635" + } + ], + "resourceTypes": [ + { + "resourceType": "imageTemplates", + "locations": [ + "East US", + "East US 2", + "West Central US", + "West US", + "West US 2", + "South Central US", + "North Europe", + "West Europe" + ], + "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" + ], + "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", + "North Europe", + "West Europe", + "South Central US" + ], + "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" + ], + "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" + ], + "apiVersions": [ + "2020-02-14", + "2019-05-01-preview", + "2019-02-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "cf32a0cc-373c-47c9-9156-0db11f6a6dfc" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VMware", + "namespace": "Microsoft.VMware", + "authorizations": [ + { + "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7", + "roleDefinitionId": "dd032bd9-65cc-4171-b688-c612566422ae" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview", + "2019-12-20-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "West US", + "East US 2 EUAP", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview", + "2019-12-20-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview", + "2019-12-20-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "VCenters/InventoryItems", + "locations": [ + "East US", + "West US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VMwareCloudSimple", + "namespace": "Microsoft.VMwareCloudSimple", + "authorizations": [ + { + "applicationId": "d96199e7-4674-4bbf-a1c6-ddf93682f5ee", + "roleDefinitionId": "533012ca-a3e7-44e4-93b4-3143f8b9409d", + "allowedThirdPartyExtensions": [ + { + "name": "CloudSimpleExtension" + } + ] + } + ], + "resourceTypes": [ + { + "resourceType": "virtualMachines", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "dedicatedCloudNodes", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "dedicatedCloudServices", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/availabilities", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateClouds", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateClouds/virtualNetworks", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateClouds/virtualMachineTemplates", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateClouds/resourcePools", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "South Central US", + "Switzerland North", + "Switzerland West", + "West Europe", + "East US", + "West US" + ], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2019-04-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2019-04-01", + "operations": "2019-04-01" + }, + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "CloudSimplePrivateCloudIAASShoebox", + "sourceMdmNamespace": "Microsoft.VMwareCloudSimple" + } + ] + } + } + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.VSOnline", + "namespace": "Microsoft.VSOnline", + "authorizations": [ + { + "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6", + "roleDefinitionId": "b879ac78-f1e6-448d-ab4c-5908cd5967c1" + }, + { + "applicationId": "48ef7923-268f-473d-bcf1-07f0997961f4", + "roleDefinitionId": "b879ac78-f1e6-448d-ab4c-5908cd5967c1" + } + ], + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "West Europe", + "East US", + "West Us 2", + "Southeast Asia" + ], + "apiVersions": [ + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "plans", + "locations": [ + "West Europe", + "East US", + "West Us 2", + "Southeast Asia" + ], + "apiVersions": [ + "2020-05-26-preview", + "2020-05-26-beta", + "2020-05-26-alpha", + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-05-26-privatepreview", + "2020-05-26-preview", + "2020-05-26-beta", + "2020-05-26-alpha", + "2019-07-01-privatepreview", + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-05-26-privatepreview", + "2020-05-26-preview", + "2020-05-26-beta", + "2020-05-26-alpha", + "2019-07-01-privatepreview", + "2019-07-01-preview", + "2019-07-01-beta", + "2019-07-01-alpha" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "9bd5ab7f-4031-4045-ace9-6bebbad202f6" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WindowsESU", + "namespace": "Microsoft.WindowsESU", + "authorizations": [ + { + "applicationId": "e6c69915-bcc7-4335-b655-c62f949d691b", + "roleDefinitionId": "9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810" + } + ], + "resourceTypes": [ + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2019-09-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2019-09-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2019-10-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WorkloadBuilder", + "namespace": "Microsoft.WorkloadBuilder", + "authorizations": [ + { + "applicationId": "63c2c773-89fe-4164-a02f-b8c7fc1772ae", + "roleDefinitionId": "322358fa-ea51-4f6c-b9d6-3be64015f074" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2021-03-01-privatepreview", + "2020-07-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "West Central US", + "East US 2 EUAP" + ], + "apiVersions": [ + "2020-07-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "Operations", + "locations": [], + "apiVersions": [ + "2021-03-01-privatepreview", + "2020-07-01-privatepreview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.WorkloadMonitor", + "namespace": "Microsoft.WorkloadMonitor", + "authorizations": [ + { + "applicationId": "ddc728e9-153d-4032-ab80-80e57af7a56f", + "roleDefinitionId": "553f60de-cc15-412f-9fdf-8f5152e7e0f5", + "managedByRoleDefinitionId": "553f60de-cc15-412f-9fdf-8f5152e7e0f5" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-01-13-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [], + "apiVersions": [ + "2020-01-13-preview" + ], + "capabilities": "SupportsExtension" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Myget.PackageManagement", + "namespace": "Myget.PackageManagement", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West Europe" + ], + "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/Paraleap.CloudMonix", + "namespace": "Paraleap.CloudMonix", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US" + ], + "apiVersions": [ + "2016-08-10" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-08-10" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-08-10" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-08-10" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Pokitdok.Platform", + "namespace": "Pokitdok.Platform", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US" + ], + "apiVersions": [ + "2016-05-17" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-05-17" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-05-17" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-05-17" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/RavenHq.Db", + "namespace": "RavenHq.Db", + "resourceTypes": [ + { + "resourceType": "databases", + "locations": [ + "East US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2016-07-18" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2016-07-18" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-07-18" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2016-07-18" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Raygun.CrashReporting", + "namespace": "Raygun.CrashReporting", + "resourceTypes": [ + { + "resourceType": "apps", + "locations": [ + "East US" + ], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "None" + } + ], + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Sendgrid.Email", + "namespace": "Sendgrid.Email", + "resourceTypes": [ + { + "resourceType": "accounts", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2015-01-01" + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 612 792\u0027 enable-background=\u0027new 0 0 612 792\u0027 xml:space=\u0027preserve\u0027\u003E \u003Cg\u003E \u003Cg\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M399,118c61,0,122,0,183-0.1c3.4,0,4.1,0.7,4.1,4.1c-0.1,60.7-0.1,121.3-0.1,182 c-58.9,0-117.8,0-176.8-0.1c-3.1,0-6.2,1.5-9.2,0.1c-0.3-0.3-0.6-0.7-1-1C399,241.3,399,179.7,399,118z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M28,304c61.9,0,123.9,0,185.8,0l0.4-0.1c-0.1,2.2-0.2,4.3-0.2,6.5c0,59.9,0,119.8,0,179.6l0.1-0.1 c-62,0-124,0-186,0C28,428,28,366,28,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M28,490c62,0,124,0,186,0c0,62,0,124,0,186c-60.7,0-121.3,0-182,0.1c-3.4,0-4.1-0.7-4.1-4.1 C28,611.3,28,550.7,28,490z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M214,676c0-62,0-124,0-186c0,0-0.1,0.1-0.1,0.1c59.9,0,119.8,0,179.6,0c2.2,0,4.3-0.2,6.5-0.2l-0.1,0.4 c0,61.9,0,123.9,0,185.8C338,676,276,676,214,676z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M586,490c-60,0-120,0-180,0c-2,0-4,0.1-6,0.2c0,0,0.1-0.4,0.1-0.4c0-61.9,0-123.8-0.1-185.8 c3.1,1.5,6.2-0.1,9.2-0.1C468.2,304,527.1,304,586,304C586,366,586,428,586,490z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M213.8,304c0.1-5.1,0.2-10.3,0.2-15.4c0-56.9,0-113.7,0-170.6c61.7,0,123.3,0,185,0c0,61.7,0,123.3,0,185 c-1.1,1.4-2.7,1-4.2,1c-60.2,0-120.4,0-180.6,0L213.8,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M214.3,303.9c60.2,0,120.4,0,180.6,0c1.4,0,3,0.4,4.2-1c0.3,0.3,0.6,0.7,1,1c0,61.9,0,123.8,0.1,185.8 c-2.2,0.1-4.3,0.2-6.5,0.2c-59.9,0-119.8,0-179.6,0c0-59.9,0-119.8,0-179.6C214,308.2,214.2,306.1,214.3,303.9z\u0027/\u003E \u003C/g\u003E \u003C/g\u003E \u003C/svg\u003E" + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [ + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "France South", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "UAE Central", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2015-01-01" + ], + "capabilities": "None" + } + ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 612 792\u0027 enable-background=\u0027new 0 0 612 792\u0027 xml:space=\u0027preserve\u0027\u003E \u003Cg\u003E \u003Cg\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M399,118c61,0,122,0,183-0.1c3.4,0,4.1,0.7,4.1,4.1c-0.1,60.7-0.1,121.3-0.1,182 c-58.9,0-117.8,0-176.8-0.1c-3.1,0-6.2,1.5-9.2,0.1c-0.3-0.3-0.6-0.7-1-1C399,241.3,399,179.7,399,118z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M28,304c61.9,0,123.9,0,185.8,0l0.4-0.1c-0.1,2.2-0.2,4.3-0.2,6.5c0,59.9,0,119.8,0,179.6l0.1-0.1 c-62,0-124,0-186,0C28,428,28,366,28,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M28,490c62,0,124,0,186,0c0,62,0,124,0,186c-60.7,0-121.3,0-182,0.1c-3.4,0-4.1-0.7-4.1-4.1 C28,611.3,28,550.7,28,490z\u0027/\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M214,676c0-62,0-124,0-186c0,0-0.1,0.1-0.1,0.1c59.9,0,119.8,0,179.6,0c2.2,0,4.3-0.2,6.5-0.2l-0.1,0.4 c0,61.9,0,123.9,0,185.8C338,676,276,676,214,676z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M586,490c-60,0-120,0-180,0c-2,0-4,0.1-6,0.2c0,0,0.1-0.4,0.1-0.4c0-61.9,0-123.8-0.1-185.8 c3.1,1.5,6.2-0.1,9.2-0.1C468.2,304,527.1,304,586,304C586,366,586,428,586,490z\u0027/\u003E\u003Cpath fill=\u0027#3999c6\u0027 d=\u0027M213.8,304c0.1-5.1,0.2-10.3,0.2-15.4c0-56.9,0-113.7,0-170.6c61.7,0,123.3,0,185,0c0,61.7,0,123.3,0,185 c-1.1,1.4-2.7,1-4.2,1c-60.2,0-120.4,0-180.6,0L213.8,304z\u0027/\u003E\u003Cpath fill=\u0027#0072C6\u0027 d=\u0027M214.3,303.9c60.2,0,120.4,0,180.6,0c1.4,0,3,0.4,4.2-1c0.3,0.3,0.6,0.7,1,1c0,61.9,0,123.8,0.1,185.8 c-2.2,0.1-4.3,0.2-6.5,0.2c-59.9,0-119.8,0-179.6,0c0-59.9,0-119.8,0-179.6C214,308.2,214.2,306.1,214.3,303.9z\u0027/\u003E \u003C/g\u003E \u003C/g\u003E \u003C/svg\u003E" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Sparkpost.Basic", + "namespace": "Sparkpost.Basic", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West US" + ], + "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/U2uconsult.TheIdentityHub", + "namespace": "U2uconsult.TheIdentityHub", + "resourceTypes": [ + { + "resourceType": "services", + "locations": [ + "West Europe" + ], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "listCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "capabilities": "None" + }, + { + "resourceType": "updateCommunicationPreference", + "locations": [], + "apiVersions": [ + "2015-06-15" + ], + "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": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "fusionGroups/azureZones/plugins", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "fusionGroups/replicationRules", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "Locations", + "locations": [ + "East US" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "East Asia", + "East US", + "East US 2 EUAP", + "North Europe", + "Southeast Asia", + "West Europe", + "West Central US", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "fusionGroups/replicationRules/migrations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "fusionGroups/hiveReplicationRules", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "fusionGroups/managedOnPremZones", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "migrators", + "locations": [ + "East US", + "East Asia", + "North Europe", + "Southeast Asia", + "West Europe", + "West Central US", + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/targets", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/liveDataMigrations", + "locations": [ + "East US", + "West US", + "West US 2", + "West Central US", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + } + ] + } + } + ], + "Variables": { + "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/ResourceGroupOperationsTests/StartDeleteRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json new file mode 100644 index 000000000000..d849b8969260 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json @@ -0,0 +1,960 @@ +{ + "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": "|4dcab76b-4b7043cec43e23cc.", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fde1e93a0695fe71bc13502d3827c8af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 18:56:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "769089ed-8930-4005-96b4-aed7c52b48f4", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "769089ed-8930-4005-96b4-aed7c52b48f4", + "x-ms-routing-request-id": "WESTUS:20210310T185635Z:769089ed-8930-4005-96b4-aed7c52b48f4" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3809?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-30b0b632cd2bf74b8607447ff5e03beb-9c8695e6663f4e4c-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3d726b1de7729904587642ebee69403a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bf60a380-ef3b-458b-ad3b-87a5a09398f3", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "bf60a380-ef3b-458b-ad3b-87a5a09398f3", + "x-ms-routing-request-id": "WESTUS:20210310T185636Z:bf60a380-ef3b-458b-ad3b-87a5a09398f3" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3809", + "name": "testrg3809", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3809?api-version=2019-10-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ea3c4c7f24a73ca66dc276a5d00cfc3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2d14b8cd-6135-4915-81ce-2ada50c502ff", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "2d14b8cd-6135-4915-81ce-2ada50c502ff", + "x-ms-routing-request-id": "WESTUS:20210310T185636Z:2d14b8cd-6135-4915-81ce-2ada50c502ff" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "dbb9f30fc48cf8f9c535d0b0705ec84b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3bd32082-1c9c-4207-af2d-510180a80630", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "3bd32082-1c9c-4207-af2d-510180a80630", + "x-ms-routing-request-id": "WESTUS:20210310T185636Z:3bd32082-1c9c-4207-af2d-510180a80630" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a65b0479605b9a2d84390d42e7160d5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a832fd16-3447-4f12-9d01-2b67badc8dcc", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "a832fd16-3447-4f12-9d01-2b67badc8dcc", + "x-ms-routing-request-id": "WESTUS:20210310T185637Z:a832fd16-3447-4f12-9d01-2b67badc8dcc" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "dd95ccf42053cbb14f151ad71416917e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "98ca1a61-20f3-4f65-969e-c1aae1001128", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "98ca1a61-20f3-4f65-969e-c1aae1001128", + "x-ms-routing-request-id": "WESTUS:20210310T185638Z:98ca1a61-20f3-4f65-969e-c1aae1001128" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2b16f19b27b7af4ec61f5652b7b611af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:39 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "200cd527-b4a7-4fab-b44b-292acfb66957", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "200cd527-b4a7-4fab-b44b-292acfb66957", + "x-ms-routing-request-id": "WESTUS:20210310T185639Z:200cd527-b4a7-4fab-b44b-292acfb66957" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a4bc7628eac958f8528f57454655856e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bc95e975-bf54-4cea-b443-d665b9a56595", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "bc95e975-bf54-4cea-b443-d665b9a56595", + "x-ms-routing-request-id": "WESTUS:20210310T185641Z:bc95e975-bf54-4cea-b443-d665b9a56595" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f5a78ea8e1ffcda27ee61734c95e1498", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3a5809bc-d8ac-48e1-a22d-0dddcccca920", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "3a5809bc-d8ac-48e1-a22d-0dddcccca920", + "x-ms-routing-request-id": "WESTUS:20210310T185642Z:3a5809bc-d8ac-48e1-a22d-0dddcccca920" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9eae6a03ed5ab1b5f9bed828d0086870", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e5440945-2e08-4a2b-8ca0-4aa3df8e6ac1", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "e5440945-2e08-4a2b-8ca0-4aa3df8e6ac1", + "x-ms-routing-request-id": "WESTUS:20210310T185643Z:e5440945-2e08-4a2b-8ca0-4aa3df8e6ac1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "28aae8991b0f46b0d3ef25e2d3c38ef3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "09b71d86-d74c-4a6c-9759-0ab19eb8d650", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "09b71d86-d74c-4a6c-9759-0ab19eb8d650", + "x-ms-routing-request-id": "WESTUS:20210310T185644Z:09b71d86-d74c-4a6c-9759-0ab19eb8d650" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "dc41be7be6a7ba14d9f5fc41097afd75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7e228b1c-6943-47d9-ab33-93c797649e57", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "7e228b1c-6943-47d9-ab33-93c797649e57", + "x-ms-routing-request-id": "WESTUS:20210310T185645Z:7e228b1c-6943-47d9-ab33-93c797649e57" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e19aa67eebb4e789ba67cb6bc7d2de35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d59b02a6-8cd9-4f72-b5fd-0eff0ed250be", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "d59b02a6-8cd9-4f72-b5fd-0eff0ed250be", + "x-ms-routing-request-id": "WESTUS:20210310T185646Z:d59b02a6-8cd9-4f72-b5fd-0eff0ed250be" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "11ace42f8cc6b2c9d4ef4e191f6f3d59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "308bfd3b-9b6b-4b6a-80c1-e1774e5a0fe6", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "308bfd3b-9b6b-4b6a-80c1-e1774e5a0fe6", + "x-ms-routing-request-id": "WESTUS:20210310T185647Z:308bfd3b-9b6b-4b6a-80c1-e1774e5a0fe6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2c63b0f1ad288f3f3559213f1ba8f206", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "75d67ead-105f-4a25-9af9-05bb2c8ea72f", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "75d67ead-105f-4a25-9af9-05bb2c8ea72f", + "x-ms-routing-request-id": "WESTUS:20210310T185648Z:75d67ead-105f-4a25-9af9-05bb2c8ea72f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2411c617ebcdf2aedde80cc49c6fc84b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "de8d2644-9f6d-4f30-aa3b-bfabaf348ae1", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "de8d2644-9f6d-4f30-aa3b-bfabaf348ae1", + "x-ms-routing-request-id": "WESTUS:20210310T185649Z:de8d2644-9f6d-4f30-aa3b-bfabaf348ae1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "17797129b16e810ca51cdb6d6a89962b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c0eeb4c8-781b-4d57-bcd8-9458e1166673", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "c0eeb4c8-781b-4d57-bcd8-9458e1166673", + "x-ms-routing-request-id": "WESTUS:20210310T185651Z:c0eeb4c8-781b-4d57-bcd8-9458e1166673" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "580148fc195d068b01714e40a07af3c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ed158e09-0c6d-4663-8826-96a8212ae756", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "ed158e09-0c6d-4663-8826-96a8212ae756", + "x-ms-routing-request-id": "WESTUS:20210310T185652Z:ed158e09-0c6d-4663-8826-96a8212ae756" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a915d691db2f6597ba907fb00f418854", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "efc5df94-0313-4ae7-82b9-bfe15e7eda75", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "efc5df94-0313-4ae7-82b9-bfe15e7eda75", + "x-ms-routing-request-id": "WESTUS:20210310T185653Z:efc5df94-0313-4ae7-82b9-bfe15e7eda75" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "54c7e0516f6d10ede67315fd63cce02a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1c41f1ca-999b-4c9a-b039-d826683c0a14", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "1c41f1ca-999b-4c9a-b039-d826683c0a14", + "x-ms-routing-request-id": "WESTUS:20210310T185654Z:1c41f1ca-999b-4c9a-b039-d826683c0a14" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "93db1629ec7321fcb09c9ecd9adbf6c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4c7df565-624f-48b2-9b24-e9475736092a", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "4c7df565-624f-48b2-9b24-e9475736092a", + "x-ms-routing-request-id": "WESTUS:20210310T185655Z:4c7df565-624f-48b2-9b24-e9475736092a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c0eefae99eb22157e805c3bbc69a02ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2450b52f-ba16-4352-ad62-cb7025f00e50", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "2450b52f-ba16-4352-ad62-cb7025f00e50", + "x-ms-routing-request-id": "WESTUS:20210310T185656Z:2450b52f-ba16-4352-ad62-cb7025f00e50" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f98754aff46565e0e4a6a4d1d120750a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c2eaf3df-4a2e-4bd4-bf57-ec55810bcd8d", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "c2eaf3df-4a2e-4bd4-bf57-ec55810bcd8d", + "x-ms-routing-request-id": "WESTUS:20210310T185657Z:c2eaf3df-4a2e-4bd4-bf57-ec55810bcd8d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6914547d20dd8b77bebaab6e28405b15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "41f58330-707d-4369-b57a-5ae5f556e2ab", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "41f58330-707d-4369-b57a-5ae5f556e2ab", + "x-ms-routing-request-id": "WESTUS:20210310T185658Z:41f58330-707d-4369-b57a-5ae5f556e2ab" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "461eb099fc54f55b1989dc0cfa854fc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d4b3cdde-f6cf-4385-8a76-30e616c38216", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "d4b3cdde-f6cf-4385-8a76-30e616c38216", + "x-ms-routing-request-id": "WESTUS:20210310T185659Z:d4b3cdde-f6cf-4385-8a76-30e616c38216" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "713eb88f99868e0fdcfb3aab48723ca3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "afdc3970-72e8-48a7-a593-0f831662eda4", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "afdc3970-72e8-48a7-a593-0f831662eda4", + "x-ms-routing-request-id": "WESTUS:20210310T185700Z:afdc3970-72e8-48a7-a593-0f831662eda4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "20378e4b2f0280b6f91e4f54446b9038", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "853e02cf-a8db-4fcf-9da7-3dd0ffa1a716", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "853e02cf-a8db-4fcf-9da7-3dd0ffa1a716", + "x-ms-routing-request-id": "WESTUS:20210310T185701Z:853e02cf-a8db-4fcf-9da7-3dd0ffa1a716" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6fdee36ae901008fa18f6958c2b0aca7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e36ba6be-1079-4d53-b8da-521f95c023a5", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "e36ba6be-1079-4d53-b8da-521f95c023a5", + "x-ms-routing-request-id": "WESTUS:20210310T185703Z:e36ba6be-1079-4d53-b8da-521f95c023a5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6cc1384d2f4d60c502be786749bb4a71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ddecb950-97d1-4382-963b-ee5a803529ef", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "ddecb950-97d1-4382-963b-ee5a803529ef", + "x-ms-routing-request-id": "WESTUS:20210310T185704Z:ddecb950-97d1-4382-963b-ee5a803529ef" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6540016bcc9461a1fe377f72c55ebd49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af3c5f18-bd97-45e0-9c38-cf760bfad26d", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "af3c5f18-bd97-45e0-9c38-cf760bfad26d", + "x-ms-routing-request-id": "WESTUS:20210310T185705Z:af3c5f18-bd97-45e0-9c38-cf760bfad26d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0b07a87224a93bea1d7d6d437128b6e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0a6e8141-a826-4427-95d3-ba441c6f02a2", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "0a6e8141-a826-4427-95d3-ba441c6f02a2", + "x-ms-routing-request-id": "WESTUS:20210310T185706Z:0a6e8141-a826-4427-95d3-ba441c6f02a2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c0edf844466f801397606d16af529aa3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5b63e0ad-c36b-4c8c-90f2-da93b29a89b6", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "5b63e0ad-c36b-4c8c-90f2-da93b29a89b6", + "x-ms-routing-request-id": "WESTUS:20210310T185707Z:5b63e0ad-c36b-4c8c-90f2-da93b29a89b6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a1f42e003eb346c7160548165e5eefd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "364cee09-a46d-4e6a-a64b-3d88fdc9f9d5", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "364cee09-a46d-4e6a-a64b-3d88fdc9f9d5", + "x-ms-routing-request-id": "WESTUS:20210310T185708Z:364cee09-a46d-4e6a-a64b-3d88fdc9f9d5" + }, + "ResponseBody": [] + } + ], + "Variables": { + "RandomSeed": "253521437", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json new file mode 100644 index 000000000000..1bd368d09d65 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json @@ -0,0 +1,961 @@ +{ + "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-4d0efbbc21556e4286e4dd35426bd5c0-395788b51745ce4e-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fa2ef457757d9b442c1db93ad69fe692", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 18:56:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7decb239-a8a6-48ff-a4b1-4237b70d3965", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "7decb239-a8a6-48ff-a4b1-4237b70d3965", + "x-ms-routing-request-id": "WESTUS:20210310T185634Z:7decb239-a8a6-48ff-a4b1-4237b70d3965" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9243?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-796fdd8933577349bf1c25c54d97633e-e7f8f53bd1a9964c-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5186692cac050d7d79a4b9d1fe39028a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "adeb2f17-2b34-4523-9e04-e5ba14fac3dd", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "adeb2f17-2b34-4523-9e04-e5ba14fac3dd", + "x-ms-routing-request-id": "WESTUS:20210310T185635Z:adeb2f17-2b34-4523-9e04-e5ba14fac3dd" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9243", + "name": "testrg9243", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9243?api-version=2019-10-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-d2b25adabcf5254ea73388b3cd8633e9-8a7cea22bb0a7248-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "42ec7da7387011849116b5a7432ed035", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "88f3815a-e79a-4b61-9301-34aa2cb5fd26", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-request-id": "88f3815a-e79a-4b61-9301-34aa2cb5fd26", + "x-ms-routing-request-id": "WESTUS:20210310T185636Z:88f3815a-e79a-4b61-9301-34aa2cb5fd26" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "222fb0b64ff9f45ce475c0eff7d5c94a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4fa64522-47d5-4e98-9249-4b364992790f", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "4fa64522-47d5-4e98-9249-4b364992790f", + "x-ms-routing-request-id": "WESTUS:20210310T185636Z:4fa64522-47d5-4e98-9249-4b364992790f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b51783d4b226eaef2ba5918333b487c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:36 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "350a5ebb-960e-45e7-a519-2a45e20ac6b7", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "350a5ebb-960e-45e7-a519-2a45e20ac6b7", + "x-ms-routing-request-id": "WESTUS:20210310T185637Z:350a5ebb-960e-45e7-a519-2a45e20ac6b7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "93f1d1e8aeff6a3cec1e6c25fc6250dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "78e8f97c-5f50-446f-87e3-ec707f7dbbe4", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "78e8f97c-5f50-446f-87e3-ec707f7dbbe4", + "x-ms-routing-request-id": "WESTUS:20210310T185638Z:78e8f97c-5f50-446f-87e3-ec707f7dbbe4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "06fbb92378b104bdc044f654bed8c12f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:39 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "29451021-de80-47a9-ae40-afc160bfad2b", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "29451021-de80-47a9-ae40-afc160bfad2b", + "x-ms-routing-request-id": "WESTUS:20210310T185639Z:29451021-de80-47a9-ae40-afc160bfad2b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2506f7ed36e3264b47adc90845c9edc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3278b74f-a120-4628-854a-93d58680fd51", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "3278b74f-a120-4628-854a-93d58680fd51", + "x-ms-routing-request-id": "WESTUS:20210310T185640Z:3278b74f-a120-4628-854a-93d58680fd51" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "795fb45480b86f1613edd2bab7e8ab13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "71e268c4-79ef-476d-a578-25e9ae6fa0b4", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "71e268c4-79ef-476d-a578-25e9ae6fa0b4", + "x-ms-routing-request-id": "WESTUS:20210310T185642Z:71e268c4-79ef-476d-a578-25e9ae6fa0b4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "04373c5c2b5bedf96ed5be04aeb5bef6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7131f8d3-edc1-4071-a4b0-60012be966ef", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "7131f8d3-edc1-4071-a4b0-60012be966ef", + "x-ms-routing-request-id": "WESTUS:20210310T185643Z:7131f8d3-edc1-4071-a4b0-60012be966ef" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0aff2d5647796c76e19611f663906e5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "72a147be-03b7-4f5a-aec8-a77ae0310ec2", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "72a147be-03b7-4f5a-aec8-a77ae0310ec2", + "x-ms-routing-request-id": "WESTUS:20210310T185644Z:72a147be-03b7-4f5a-aec8-a77ae0310ec2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "09abb602e892296dbb720ae3c212c05e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1bac0b3f-4c80-4704-8fd1-8cd307432938", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "1bac0b3f-4c80-4704-8fd1-8cd307432938", + "x-ms-routing-request-id": "WESTUS:20210310T185645Z:1bac0b3f-4c80-4704-8fd1-8cd307432938" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8963db2ea1e8159ac5ca23c5190289de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7beff0a7-5b5b-4d4c-95c7-d81ce5c858ed", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "7beff0a7-5b5b-4d4c-95c7-d81ce5c858ed", + "x-ms-routing-request-id": "WESTUS:20210310T185646Z:7beff0a7-5b5b-4d4c-95c7-d81ce5c858ed" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f8015f66b5096e64c0d64e063c93aacf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "15b8fdb4-4561-4d5a-a6b5-1f31dbb1c545", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "15b8fdb4-4561-4d5a-a6b5-1f31dbb1c545", + "x-ms-routing-request-id": "WESTUS:20210310T185647Z:15b8fdb4-4561-4d5a-a6b5-1f31dbb1c545" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "88c7b2d5e52c61761b9643c7c5a70fb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ccb2d0c5-14f1-447c-92b2-98a3cbbdc1b6", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "ccb2d0c5-14f1-447c-92b2-98a3cbbdc1b6", + "x-ms-routing-request-id": "WESTUS:20210310T185648Z:ccb2d0c5-14f1-447c-92b2-98a3cbbdc1b6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "627c2ce8c810795476f5c9125293d831", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bc36f985-ce86-4720-a355-f0b6c617e9f9", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "bc36f985-ce86-4720-a355-f0b6c617e9f9", + "x-ms-routing-request-id": "WESTUS:20210310T185649Z:bc36f985-ce86-4720-a355-f0b6c617e9f9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "67ef5320013b81b1e8a0dc73729da818", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "afae13cd-c6c7-42d9-9240-d7665e44dc91", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "afae13cd-c6c7-42d9-9240-d7665e44dc91", + "x-ms-routing-request-id": "WESTUS:20210310T185650Z:afae13cd-c6c7-42d9-9240-d7665e44dc91" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "101d95c648170dbe5d4e11361b640e88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f92abc52-f0ae-4ae1-9fc0-7ccafc075a85", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "f92abc52-f0ae-4ae1-9fc0-7ccafc075a85", + "x-ms-routing-request-id": "WESTUS:20210310T185652Z:f92abc52-f0ae-4ae1-9fc0-7ccafc075a85" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "71a711bda8b8e77d7afa7a6febe107d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ab64a89c-d559-4909-a81b-7ce5e08bbd8e", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "ab64a89c-d559-4909-a81b-7ce5e08bbd8e", + "x-ms-routing-request-id": "WESTUS:20210310T185653Z:ab64a89c-d559-4909-a81b-7ce5e08bbd8e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bc4cb04dc875d81a94e109edf07b6583", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "70a31813-6b56-4d36-8200-d8ac1fb90419", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "70a31813-6b56-4d36-8200-d8ac1fb90419", + "x-ms-routing-request-id": "WESTUS:20210310T185654Z:70a31813-6b56-4d36-8200-d8ac1fb90419" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "60b6549136f61d601836951dcd4f227c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "30255a0b-88a3-49ee-a9f9-95a2d24d434a", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "30255a0b-88a3-49ee-a9f9-95a2d24d434a", + "x-ms-routing-request-id": "WESTUS:20210310T185655Z:30255a0b-88a3-49ee-a9f9-95a2d24d434a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6be937465218f513f7cfdcd69f90f6ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "04556730-5393-45d1-b80b-aa91dcdee2b8", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "04556730-5393-45d1-b80b-aa91dcdee2b8", + "x-ms-routing-request-id": "WESTUS:20210310T185656Z:04556730-5393-45d1-b80b-aa91dcdee2b8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "96ddf694a62b16e3502ea43e33fd0a45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "86d42cdc-6a28-4f5a-b625-61aa228b4b8c", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "86d42cdc-6a28-4f5a-b625-61aa228b4b8c", + "x-ms-routing-request-id": "WESTUS:20210310T185657Z:86d42cdc-6a28-4f5a-b625-61aa228b4b8c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b8a68cbffa923f6b41c069265a897d87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d4e5e362-6ef1-4690-9998-913242546c79", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "d4e5e362-6ef1-4690-9998-913242546c79", + "x-ms-routing-request-id": "WESTUS:20210310T185658Z:d4e5e362-6ef1-4690-9998-913242546c79" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d78895408b719f5154d21ae9add4c2fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6ed27bf8-7a14-4c7f-8549-c69a3fb8318e", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "6ed27bf8-7a14-4c7f-8549-c69a3fb8318e", + "x-ms-routing-request-id": "WESTUS:20210310T185659Z:6ed27bf8-7a14-4c7f-8549-c69a3fb8318e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "121797c53de99a6d8a9e556a3dbcbcc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:56:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a19d56e0-9656-4a7c-9903-76730ee00458", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "a19d56e0-9656-4a7c-9903-76730ee00458", + "x-ms-routing-request-id": "WESTUS:20210310T185700Z:a19d56e0-9656-4a7c-9903-76730ee00458" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9dfe1cb0327433d43b0664bfdf81916c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "20a899b8-a246-4f24-93c4-7de2977a7f01", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "20a899b8-a246-4f24-93c4-7de2977a7f01", + "x-ms-routing-request-id": "WESTUS:20210310T185701Z:20a899b8-a246-4f24-93c4-7de2977a7f01" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c3616efe6b71029d27ee4cd336e76298", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5e9c8927-f508-49ec-923d-dc08e4fdc019", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "5e9c8927-f508-49ec-923d-dc08e4fdc019", + "x-ms-routing-request-id": "WESTUS:20210310T185703Z:5e9c8927-f508-49ec-923d-dc08e4fdc019" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9139531524d59285c2e4d7e3d9adba09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f18ecebc-92d5-4ed4-bced-b878e5b9bc43", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "f18ecebc-92d5-4ed4-bced-b878e5b9bc43", + "x-ms-routing-request-id": "WESTUS:20210310T185704Z:f18ecebc-92d5-4ed4-bced-b878e5b9bc43" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ce6be80cf95a45567efc7586e601fd54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "246b11e1-6621-4a75-a705-69063e58562d", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "246b11e1-6621-4a75-a705-69063e58562d", + "x-ms-routing-request-id": "WESTUS:20210310T185705Z:246b11e1-6621-4a75-a705-69063e58562d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8ca9cba40048da97e9cf008d93ba2879", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "96061f46-7a2e-467e-b6ca-49039c1b3343", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "96061f46-7a2e-467e-b6ca-49039c1b3343", + "x-ms-routing-request-id": "WESTUS:20210310T185706Z:96061f46-7a2e-467e-b6ca-49039c1b3343" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4dc64234937b1c3dfdf312d9aeffabc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "377122a0-140a-4840-85f5-ec0893cea231", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "377122a0-140a-4840-85f5-ec0893cea231", + "x-ms-routing-request-id": "WESTUS:20210310T185707Z:377122a0-140a-4840-85f5-ec0893cea231" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0d3e83e62d030bc15191e58af9c8b1c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 10 Mar 2021 18:57:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0e490f05-32c4-47d4-baa6-63a9e2ec8df4", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "0e490f05-32c4-47d4-baa6-63a9e2ec8df4", + "x-ms-routing-request-id": "WESTUS:20210310T185708Z:0e490f05-32c4-47d4-baa6-63a9e2ec8df4" + }, + "ResponseBody": [] + } + ], + "Variables": { + "RandomSeed": "747552553", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json new file mode 100644 index 000000000000..a1cb2c8b20c4 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json @@ -0,0 +1,49 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "795fad1a30d20a1bfed6e99e6fb43cc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 09 Mar 2021 02:31:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cc02f49a-ba4a-4b0e-9651-f3d61a730f10", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "cc02f49a-ba4a-4b0e-9651-f3d61a730f10", + "x-ms-routing-request-id": "WESTUS2:20210309T023116Z:cc02f49a-ba4a-4b0e-9651-f3d61a730f10" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "1589746029", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTags.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTags.json index 60a15693e1cd..cbf280ad9f6c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTags.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTags.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 02:52:45 GMT", + "Date": "Wed, 10 Mar 2021 04:14:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2488b052-6e9d-450b-ab69-2beb7b8fc780", + "x-ms-correlation-request-id": "028a2efc-b79e-40b0-b1df-eeb2c9fe699b", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "2488b052-6e9d-450b-ab69-2beb7b8fc780", - "x-ms-routing-request-id": "WESTUS2:20210305T025245Z:2488b052-6e9d-450b-ab69-2beb7b8fc780" + "x-ms-request-id": "028a2efc-b79e-40b0-b1df-eeb2c9fe699b", + "x-ms-routing-request-id": "WESTUS2:20210310T041406Z:028a2efc-b79e-40b0-b1df-eeb2c9fe699b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +49,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-3b270f62f9cdd741841d193bbb026e55-4d2d7c5d8376e542-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a059d135fd3810dd697d34384296e526", "x-ms-return-client-request-id": "true" @@ -57,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 02:52:46 GMT", + "Date": "Wed, 10 Mar 2021 04:14:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08d4d452-b65a-4301-85fc-4c4c10b8d917", + "x-ms-correlation-request-id": "5eb0fd90-464f-4844-a8e1-5c3deeda9915", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "08d4d452-b65a-4301-85fc-4c4c10b8d917", - "x-ms-routing-request-id": "WESTUS2:20210305T025247Z:08d4d452-b65a-4301-85fc-4c4c10b8d917" + "x-ms-request-id": "5eb0fd90-464f-4844-a8e1-5c3deeda9915", + "x-ms-routing-request-id": "WESTUS2:20210310T041408Z:5eb0fd90-464f-4844-a8e1-5c3deeda9915" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", @@ -91,6 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-629f2cf5f585924ca78e4fe18099b331-c5a7315b3cf6c749-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6b580f381d4cd2e11c85894c7578a2ee", "x-ms-return-client-request-id": "true" @@ -105,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 02:52:46 GMT", + "Date": "Wed, 10 Mar 2021 04:14:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "226fa8d9-4f3a-44b7-a572-0b6c68c8a4ce", + "x-ms-correlation-request-id": "70f6aac6-5c3b-44ec-9e57-bf299a4d0531", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "226fa8d9-4f3a-44b7-a572-0b6c68c8a4ce", - "x-ms-routing-request-id": "WESTUS2:20210305T025247Z:226fa8d9-4f3a-44b7-a572-0b6c68c8a4ce" + "x-ms-request-id": "70f6aac6-5c3b-44ec-9e57-bf299a4d0531", + "x-ms-routing-request-id": "WESTUS2:20210310T041408Z:70f6aac6-5c3b-44ec-9e57-bf299a4d0531" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", @@ -136,6 +138,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-644c37dea733c842b426e295e406e339-65f5af32f6e02549-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "36d36beb5ac857d932ee1a81a2af0cd0", "x-ms-return-client-request-id": "true" @@ -151,15 +154,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 02:52:47 GMT", + "Date": "Wed, 10 Mar 2021 04:14:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68edfc97-2cea-4b0d-815d-e98eff0bd212", + "x-ms-correlation-request-id": "8dab1e73-61c1-429e-8129-a3789809a210", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "68edfc97-2cea-4b0d-815d-e98eff0bd212", - "x-ms-routing-request-id": "WESTUS2:20210305T025247Z:68edfc97-2cea-4b0d-815d-e98eff0bd212" + "x-ms-request-id": "8dab1e73-61c1-429e-8129-a3789809a210", + "x-ms-routing-request-id": "WESTUS2:20210310T041408Z:8dab1e73-61c1-429e-8129-a3789809a210" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", @@ -183,8 +186,9 @@ "Authorization": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", + "traceparent": "00-0be04cbd0f595645870f2ca5834feca0-9caaef8890eda749-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "2eb2b979b196cf3f8fbc4741d527e3a1", + "x-ms-client-request-id": "f0e147991cae17dbef8684b274909af0", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -199,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 05 Mar 2021 02:52:47 GMT", + "Date": "Wed, 10 Mar 2021 04:14:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed7c2176-d05c-4250-b82f-55522500c167", + "x-ms-correlation-request-id": "9a1aa2b4-4a35-4a85-9482-99ba788742d7", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "ed7c2176-d05c-4250-b82f-55522500c167", - "x-ms-routing-request-id": "WESTUS2:20210305T025248Z:ed7c2176-d05c-4250-b82f-55522500c167" + "x-ms-request-id": "9a1aa2b4-4a35-4a85-9482-99ba788742d7", + "x-ms-routing-request-id": "WESTUS2:20210310T041409Z:9a1aa2b4-4a35-4a85-9482-99ba788742d7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", @@ -229,4 +233,4 @@ "RandomSeed": "907506108", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } -} +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTagsAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTagsAsync.json index cf6717273363..a46a13bf3587 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTagsAsync.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTagsAsync.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:53 GMT", + "Date": "Wed, 10 Mar 2021 04:14:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d841604-337d-4194-9d36-4e0134585f2d", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "1d841604-337d-4194-9d36-4e0134585f2d", - "x-ms-routing-request-id": "WESTUS2:20210304T225853Z:1d841604-337d-4194-9d36-4e0134585f2d" + "x-ms-correlation-request-id": "c1bdba57-8e3c-4567-adc8-2591593410ee", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "c1bdba57-8e3c-4567-adc8-2591593410ee", + "x-ms-routing-request-id": "WESTUS2:20210310T041435Z:c1bdba57-8e3c-4567-adc8-2591593410ee" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +49,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-56717f1fbf88fd42886c7266cf6360eb-ea44370b78df6b49-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a41991e5a5adf27672281b20fb652a83", "x-ms-return-client-request-id": "true" @@ -62,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:53 GMT", + "Date": "Wed, 10 Mar 2021 04:14:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a58a933-c8c8-40b0-8f5c-4234c90cd243", - "x-ms-ratelimit-remaining-subscription-writes": "1159", - "x-ms-request-id": "2a58a933-c8c8-40b0-8f5c-4234c90cd243", - "x-ms-routing-request-id": "WESTUS2:20210304T225854Z:2a58a933-c8c8-40b0-8f5c-4234c90cd243" + "x-ms-correlation-request-id": "e6569ec6-6f7a-4c19-b4c2-fbe31f5981dc", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "e6569ec6-6f7a-4c19-b4c2-fbe31f5981dc", + "x-ms-routing-request-id": "WESTUS2:20210310T041436Z:e6569ec6-6f7a-4c19-b4c2-fbe31f5981dc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", @@ -91,6 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-243c3120f6c1ee479c8ac863bc031256-4034727ae3468744-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "963787ebb692ac455c591c49d3f0c750", "x-ms-return-client-request-id": "true" @@ -105,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:53 GMT", + "Date": "Wed, 10 Mar 2021 04:14:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db932993-dd60-43d5-ac64-5e7139c61b67", - "x-ms-ratelimit-remaining-subscription-writes": "1158", - "x-ms-request-id": "db932993-dd60-43d5-ac64-5e7139c61b67", - "x-ms-routing-request-id": "WESTUS2:20210304T225854Z:db932993-dd60-43d5-ac64-5e7139c61b67" + "x-ms-correlation-request-id": "55bc5254-a117-49d7-aabb-18547a594695", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "55bc5254-a117-49d7-aabb-18547a594695", + "x-ms-routing-request-id": "WESTUS2:20210310T041437Z:55bc5254-a117-49d7-aabb-18547a594695" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", @@ -136,6 +138,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-4235f0d74dffed44aa8a1be375fc12c5-f1b8519ff5a3134b-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c14218501a92ca5a498d817869ef95dc", "x-ms-return-client-request-id": "true" @@ -151,15 +154,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:54 GMT", + "Date": "Wed, 10 Mar 2021 04:14:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e4c3901-d20c-44f1-9653-0faa16b6474c", - "x-ms-ratelimit-remaining-subscription-writes": "1157", - "x-ms-request-id": "8e4c3901-d20c-44f1-9653-0faa16b6474c", - "x-ms-routing-request-id": "WESTUS2:20210304T225854Z:8e4c3901-d20c-44f1-9653-0faa16b6474c" + "x-ms-correlation-request-id": "8f18a50f-5ca1-426f-af57-021243df0fad", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "8f18a50f-5ca1-426f-af57-021243df0fad", + "x-ms-routing-request-id": "WESTUS2:20210310T041437Z:8f18a50f-5ca1-426f-af57-021243df0fad" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", @@ -183,6 +186,7 @@ "Authorization": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", + "traceparent": "00-87ca525768a3444582727bf5b0abfef3-12a42bb779751e42-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aa3a6f8234ca2f644b6d4854882c1f81", "x-ms-return-client-request-id": "true" @@ -199,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:54 GMT", + "Date": "Wed, 10 Mar 2021 04:14:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95a8b843-56c5-4338-889f-e84d4e9b8423", - "x-ms-ratelimit-remaining-subscription-writes": "1156", - "x-ms-request-id": "95a8b843-56c5-4338-889f-e84d4e9b8423", - "x-ms-routing-request-id": "WESTUS2:20210304T225855Z:95a8b843-56c5-4338-889f-e84d4e9b8423" + "x-ms-correlation-request-id": "79835e11-0211-4df0-b838-12b33fe7360e", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "79835e11-0211-4df0-b838-12b33fe7360e", + "x-ms-routing-request-id": "WESTUS2:20210310T041437Z:79835e11-0211-4df0-b838-12b33fe7360e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index 40012cb278b9..dc694558383c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-f6663ea90829b344bb49e50b8a4c5c2c-a256ffe29700ed44-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "130b15db0ee7c47a0bd47ce240a0248c", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:43 GMT", + "Date": "Wed, 10 Mar 2021 04:14:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b29e379e-9add-4f62-b7ff-da58cb19171b", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "b29e379e-9add-4f62-b7ff-da58cb19171b", - "x-ms-routing-request-id": "WESTUS2:20210304T225843Z:b29e379e-9add-4f62-b7ff-da58cb19171b" + "x-ms-correlation-request-id": "9394cd6e-ab90-4253-aaeb-acfbb9bf3ed7", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "9394cd6e-ab90-4253-aaeb-acfbb9bf3ed7", + "x-ms-routing-request-id": "WESTUS2:20210310T041451Z:9394cd6e-ab90-4253-aaeb-acfbb9bf3ed7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-c3a02346da430e4a8616e040fd777917-9c4cd776e8d9564d-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fb6960a7ddbf2b823a20f76a9d544aa8", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:43 GMT", + "Date": "Wed, 10 Mar 2021 04:14:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5c3d5e7-9ced-4092-a9f2-c6fe5167dd46", - "x-ms-ratelimit-remaining-subscription-writes": "1175", - "x-ms-request-id": "a5c3d5e7-9ced-4092-a9f2-c6fe5167dd46", - "x-ms-routing-request-id": "WESTUS2:20210304T225844Z:a5c3d5e7-9ced-4092-a9f2-c6fe5167dd46" + "x-ms-correlation-request-id": "6da9c939-3d85-414d-a3ec-ae8f7bb8b0ff", + "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-request-id": "6da9c939-3d85-414d-a3ec-ae8f7bb8b0ff", + "x-ms-routing-request-id": "WESTUS2:20210310T041451Z:6da9c939-3d85-414d-a3ec-ae8f7bb8b0ff" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8350", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-5bbe3e7b456b2d43bce27634091cb5bd-93e35edf46f1a241-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "65cc81cf1b0d295255bef47f8570ca05", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:44 GMT", + "Date": "Wed, 10 Mar 2021 04:14:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d73be328-4ccd-46e4-8953-8bd2b0aaed5b", - "x-ms-ratelimit-remaining-subscription-writes": "1174", - "x-ms-request-id": "d73be328-4ccd-46e4-8953-8bd2b0aaed5b", - "x-ms-routing-request-id": "WESTUS2:20210304T225844Z:d73be328-4ccd-46e4-8953-8bd2b0aaed5b" + "x-ms-correlation-request-id": "5218102f-4faf-4593-83a0-606fdea984b5", + "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-request-id": "5218102f-4faf-4593-83a0-606fdea984b5", + "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:5218102f-4faf-4593-83a0-606fdea984b5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8350", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-0529746dabedca40bc7cd6826c01da14-979f020cd059a142-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "409f459a154f381b88e8aced825a6d7f", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:44 GMT", + "Date": "Wed, 10 Mar 2021 04:14:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab373f71-4a93-4639-833f-0975e084d5d9", - "x-ms-ratelimit-remaining-subscription-writes": "1173", - "x-ms-request-id": "ab373f71-4a93-4639-833f-0975e084d5d9", - "x-ms-routing-request-id": "WESTUS2:20210304T225845Z:ab373f71-4a93-4639-833f-0975e084d5d9" + "x-ms-correlation-request-id": "370a0992-41e3-4ae1-a3c1-3ccf59d64bb1", + "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-request-id": "370a0992-41e3-4ae1-a3c1-3ccf59d64bb1", + "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:370a0992-41e3-4ae1-a3c1-3ccf59d64bb1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8350", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-2290182a38f35140aa9921a12f70b368-e06ad630a1bdd745-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1f70393227578cc60d40a600e902a5ca", "x-ms-return-client-request-id": "true" @@ -198,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:44 GMT", + "Date": "Wed, 10 Mar 2021 04:14:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a38efac6-19bf-4ad7-8ada-bedee5701ffa", - "x-ms-ratelimit-remaining-subscription-writes": "1172", - "x-ms-request-id": "a38efac6-19bf-4ad7-8ada-bedee5701ffa", - "x-ms-routing-request-id": "WESTUS2:20210304T225845Z:a38efac6-19bf-4ad7-8ada-bedee5701ffa" + "x-ms-correlation-request-id": "2353106e-ca59-4ddc-9174-b4be5a239eca", + "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-request-id": "2353106e-ca59-4ddc-9174-b4be5a239eca", + "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:2353106e-ca59-4ddc-9174-b4be5a239eca" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8350", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index 6945b8730512..adc2fec7b67d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|1493765e-4e7065a7c404cc0d.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "115949ef5ba4488102482d83ed421716", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:07 GMT", + "Date": "Wed, 10 Mar 2021 04:14:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6da9b1f2-52a9-4989-8d6d-77b072f16db2", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "6da9b1f2-52a9-4989-8d6d-77b072f16db2", - "x-ms-routing-request-id": "WESTUS2:20210304T225907Z:6da9b1f2-52a9-4989-8d6d-77b072f16db2" + "x-ms-correlation-request-id": "4c35296d-df66-49a3-a291-63fb1f294ea7", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "4c35296d-df66-49a3-a291-63fb1f294ea7", + "x-ms-routing-request-id": "WESTUS2:20210310T041451Z:4c35296d-df66-49a3-a291-63fb1f294ea7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-be21f897f60f254281a7e8fb3650f244-795cfd1ee8e1b849-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1f27ed888bd2f54fded16d147cb1c6e4", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:07 GMT", + "Date": "Wed, 10 Mar 2021 04:14:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3e720ff-7138-431a-889b-6274ca04c027", - "x-ms-ratelimit-remaining-subscription-writes": "1135", - "x-ms-request-id": "d3e720ff-7138-431a-889b-6274ca04c027", - "x-ms-routing-request-id": "WESTUS2:20210304T225907Z:d3e720ff-7138-431a-889b-6274ca04c027" + "x-ms-correlation-request-id": "1eae0293-d7ae-4941-97c6-13194fd534fd", + "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-request-id": "1eae0293-d7ae-4941-97c6-13194fd534fd", + "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:1eae0293-d7ae-4941-97c6-13194fd534fd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2981", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-2f5fd92dbe6c3540823a328d059c12a8-7ee75a1fba2c6a44-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c750f68cbbfdbcab68fa5d13ba0bec1d", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:07 GMT", + "Date": "Wed, 10 Mar 2021 04:14:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0b492ae-de9e-4df3-9072-99edc1d3c031", - "x-ms-ratelimit-remaining-subscription-writes": "1134", - "x-ms-request-id": "a0b492ae-de9e-4df3-9072-99edc1d3c031", - "x-ms-routing-request-id": "WESTUS2:20210304T225908Z:a0b492ae-de9e-4df3-9072-99edc1d3c031" + "x-ms-correlation-request-id": "bc1dd336-f2c5-44ac-90c0-3af70e456fd6", + "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-request-id": "bc1dd336-f2c5-44ac-90c0-3af70e456fd6", + "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:bc1dd336-f2c5-44ac-90c0-3af70e456fd6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2981", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-fa06cd53c320114b85db650e546ce3c2-b3dbcaf26c0a7d4e-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "546966b9eb2bbd1c0a1bc68a14348697", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:08 GMT", + "Date": "Wed, 10 Mar 2021 04:14:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f98a0b6-d3a8-42dc-b7ab-cf00028cc895", - "x-ms-ratelimit-remaining-subscription-writes": "1133", - "x-ms-request-id": "8f98a0b6-d3a8-42dc-b7ab-cf00028cc895", - "x-ms-routing-request-id": "WESTUS2:20210304T225908Z:8f98a0b6-d3a8-42dc-b7ab-cf00028cc895" + "x-ms-correlation-request-id": "81cf7c80-619d-4306-b0ae-b4ca8f338194", + "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-request-id": "81cf7c80-619d-4306-b0ae-b4ca8f338194", + "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:81cf7c80-619d-4306-b0ae-b4ca8f338194" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2981", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-683d53284ed5f74a8d8d8fe8a34d73f7-d0771eba0266c44a-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4b609e674fc7cc8f416ab7d82e3c3bd2", "x-ms-return-client-request-id": "true" @@ -198,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:08 GMT", + "Date": "Wed, 10 Mar 2021 04:14:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9d39870-6696-433e-b10a-dcd550552d45", - "x-ms-ratelimit-remaining-subscription-writes": "1132", - "x-ms-request-id": "e9d39870-6696-433e-b10a-dcd550552d45", - "x-ms-routing-request-id": "WESTUS2:20210304T225908Z:e9d39870-6696-433e-b10a-dcd550552d45" + "x-ms-correlation-request-id": "af1bc118-7f7b-4800-8129-ed6d8a01a1b3", + "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-request-id": "af1bc118-7f7b-4800-8129-ed6d8a01a1b3", + "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:af1bc118-7f7b-4800-8129-ed6d8a01a1b3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2981", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index 6995b391a804..f03256c35130 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:38 GMT", + "Date": "Wed, 10 Mar 2021 04:14:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd51cec6-d75d-4cd4-8af6-86d7f59bc6ae", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "cd51cec6-d75d-4cd4-8af6-86d7f59bc6ae", - "x-ms-routing-request-id": "WESTUS2:20210304T225839Z:cd51cec6-d75d-4cd4-8af6-86d7f59bc6ae" + "x-ms-correlation-request-id": "5d167ed3-b821-4a93-bbc1-c8cfdf71ba52", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "5d167ed3-b821-4a93-bbc1-c8cfdf71ba52", + "x-ms-routing-request-id": "WESTUS2:20210310T041446Z:5d167ed3-b821-4a93-bbc1-c8cfdf71ba52" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +49,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-904e74ccdee5b649ae06b1998404db1f-04be4ea307e5bd47-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4053a89af29c1eb9cfc8bad530a0a039", "x-ms-return-client-request-id": "true" @@ -62,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:39 GMT", + "Date": "Wed, 10 Mar 2021 04:14:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a98847c-aa2a-4e83-96c2-90e757e692c3", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "7a98847c-aa2a-4e83-96c2-90e757e692c3", - "x-ms-routing-request-id": "WESTUS2:20210304T225839Z:7a98847c-aa2a-4e83-96c2-90e757e692c3" + "x-ms-correlation-request-id": "945f0aad-5035-4ef0-9404-0b88e01c7a54", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "945f0aad-5035-4ef0-9404-0b88e01c7a54", + "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:945f0aad-5035-4ef0-9404-0b88e01c7a54" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4896", @@ -91,6 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-1f3979ddf7807d41a30ee9df1bac5fea-780438b9be38cf44-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "cd7e26eca9308cd37717139c809f48a1", "x-ms-return-client-request-id": "true" @@ -105,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:39 GMT", + "Date": "Wed, 10 Mar 2021 04:14:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "318d887a-62a1-4acd-a7af-0507e6ec6f78", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-request-id": "318d887a-62a1-4acd-a7af-0507e6ec6f78", - "x-ms-routing-request-id": "WESTUS2:20210304T225840Z:318d887a-62a1-4acd-a7af-0507e6ec6f78" + "x-ms-correlation-request-id": "43085474-3073-4b3d-af64-0b82ca6ce64d", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "43085474-3073-4b3d-af64-0b82ca6ce64d", + "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:43085474-3073-4b3d-af64-0b82ca6ce64d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4896", @@ -136,6 +138,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-87b12cc64db39e4092ac47a2a25da10d-866694cea39fde4b-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3a26c6834aca749a72fe144b68eff0cc", "x-ms-return-client-request-id": "true" @@ -151,15 +154,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:39 GMT", + "Date": "Wed, 10 Mar 2021 04:14:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb7115af-2767-4861-9ed2-3d5fd22c26ce", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-request-id": "fb7115af-2767-4861-9ed2-3d5fd22c26ce", - "x-ms-routing-request-id": "WESTUS2:20210304T225840Z:fb7115af-2767-4861-9ed2-3d5fd22c26ce" + "x-ms-correlation-request-id": "429dc762-30c7-4302-8efc-2f58f496a0a4", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "429dc762-30c7-4302-8efc-2f58f496a0a4", + "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:429dc762-30c7-4302-8efc-2f58f496a0a4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4896", @@ -183,6 +186,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-7a6331fbc1b0614999ecfb9ea88e47d1-da975a3a145b4d48-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d2c3e6fbdda3f11ad5c7c984df1d9e2f", "x-ms-return-client-request-id": "true" @@ -197,15 +201,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:40 GMT", + "Date": "Wed, 10 Mar 2021 04:14:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11cb1b7c-7257-41ac-b6b5-db9aad6e688f", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-request-id": "11cb1b7c-7257-41ac-b6b5-db9aad6e688f", - "x-ms-routing-request-id": "WESTUS2:20210304T225840Z:11cb1b7c-7257-41ac-b6b5-db9aad6e688f" + "x-ms-correlation-request-id": "ab4f6c37-149b-42ab-9a53-016804cf1995", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "ab4f6c37-149b-42ab-9a53-016804cf1995", + "x-ms-routing-request-id": "WESTUS2:20210310T041448Z:ab4f6c37-149b-42ab-9a53-016804cf1995" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4896", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index bd539aef1dd6..08a7cf4cb51e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:01 GMT", + "Date": "Wed, 10 Mar 2021 04:14:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7aed7052-a691-436f-837a-cb3f4960a16c", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "7aed7052-a691-436f-837a-cb3f4960a16c", - "x-ms-routing-request-id": "WESTUS2:20210304T225902Z:7aed7052-a691-436f-837a-cb3f4960a16c" + "x-ms-correlation-request-id": "0a5afc87-631f-4b1a-9e90-eeafd1b778dc", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "0a5afc87-631f-4b1a-9e90-eeafd1b778dc", + "x-ms-routing-request-id": "WESTUS2:20210310T041446Z:0a5afc87-631f-4b1a-9e90-eeafd1b778dc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +49,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-f7f4640022f68540a1d9c2fc72db7de0-5205fc921542ee46-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "49a5635b794b9ba4c0b526745548016e", "x-ms-return-client-request-id": "true" @@ -62,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:02 GMT", + "Date": "Wed, 10 Mar 2021 04:14:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d81d15e7-fd27-48f9-81df-96756a32e482", - "x-ms-ratelimit-remaining-subscription-writes": "1143", - "x-ms-request-id": "d81d15e7-fd27-48f9-81df-96756a32e482", - "x-ms-routing-request-id": "WESTUS2:20210304T225903Z:d81d15e7-fd27-48f9-81df-96756a32e482" + "x-ms-correlation-request-id": "729dfbce-8705-4e5f-b7a4-0a3c6fa8cdbb", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "729dfbce-8705-4e5f-b7a4-0a3c6fa8cdbb", + "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:729dfbce-8705-4e5f-b7a4-0a3c6fa8cdbb" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8711", @@ -91,6 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-5f29366b0c48974796ea0bd1d34bfdf4-3e0072d6fe512342-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "eeeaf630d68e515a5a3f5ae0a1ab4b5a", "x-ms-return-client-request-id": "true" @@ -105,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:02 GMT", + "Date": "Wed, 10 Mar 2021 04:14:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93987937-306f-4582-9f78-85a40ace0597", - "x-ms-ratelimit-remaining-subscription-writes": "1142", - "x-ms-request-id": "93987937-306f-4582-9f78-85a40ace0597", - "x-ms-routing-request-id": "WESTUS2:20210304T225903Z:93987937-306f-4582-9f78-85a40ace0597" + "x-ms-correlation-request-id": "f4bf308c-0a59-4224-96d8-c4e97be36d55", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "f4bf308c-0a59-4224-96d8-c4e97be36d55", + "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:f4bf308c-0a59-4224-96d8-c4e97be36d55" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8711", @@ -136,6 +138,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-2b746edf31832444bbf919c34158ab9f-04991f0e1fdbab43-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "022061560241746ff25ce74203c8e25c", "x-ms-return-client-request-id": "true" @@ -151,15 +154,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:03 GMT", + "Date": "Wed, 10 Mar 2021 04:14:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72c715ec-c045-4746-b715-b5bb3393d7d1", - "x-ms-ratelimit-remaining-subscription-writes": "1141", - "x-ms-request-id": "72c715ec-c045-4746-b715-b5bb3393d7d1", - "x-ms-routing-request-id": "WESTUS2:20210304T225903Z:72c715ec-c045-4746-b715-b5bb3393d7d1" + "x-ms-correlation-request-id": "1d2d8847-83d2-4f03-95ce-329a5366edf2", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "1d2d8847-83d2-4f03-95ce-329a5366edf2", + "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:1d2d8847-83d2-4f03-95ce-329a5366edf2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8711", @@ -183,6 +186,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-d632ca66457e7d4d9d7693b83449cdb2-b7ff56a90a084441-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7af3864f4e0485810953ef0c1fc3f914", "x-ms-return-client-request-id": "true" @@ -197,15 +201,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:03 GMT", + "Date": "Wed, 10 Mar 2021 04:14:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01a20dea-f1c5-444f-a0fb-5d66384e83c7", - "x-ms-ratelimit-remaining-subscription-writes": "1140", - "x-ms-request-id": "01a20dea-f1c5-444f-a0fb-5d66384e83c7", - "x-ms-routing-request-id": "WESTUS2:20210304T225904Z:01a20dea-f1c5-444f-a0fb-5d66384e83c7" + "x-ms-correlation-request-id": "09abc9d1-c427-4272-af1e-6133546e55f1", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "09abc9d1-c427-4272-af1e-6133546e55f1", + "x-ms-routing-request-id": "WESTUS2:20210310T041448Z:09abc9d1-c427-4272-af1e-6133546e55f1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8711", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index 0740bc76cb4e..7bae42325077 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:41 GMT", + "Date": "Wed, 10 Mar 2021 04:14:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1cd2088-8560-43d5-aaf6-7d5838616dd7", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "e1cd2088-8560-43d5-aaf6-7d5838616dd7", - "x-ms-routing-request-id": "WESTUS2:20210304T225841Z:e1cd2088-8560-43d5-aaf6-7d5838616dd7" + "x-ms-correlation-request-id": "1e2107ff-c1d7-4b27-8cdb-2ee1060ed355", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "1e2107ff-c1d7-4b27-8cdb-2ee1060ed355", + "x-ms-routing-request-id": "WESTUS2:20210310T041448Z:1e2107ff-c1d7-4b27-8cdb-2ee1060ed355" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +49,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-f83721bb06484947b78d2fc6a5b26f36-2cb551c6921f124d-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ec46696f45c7cd368c747f3942cb9e1e", "x-ms-return-client-request-id": "true" @@ -62,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:41 GMT", + "Date": "Wed, 10 Mar 2021 04:14:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d702df14-aac2-489f-8256-95ee20d6530b", - "x-ms-ratelimit-remaining-subscription-writes": "1179", - "x-ms-request-id": "d702df14-aac2-489f-8256-95ee20d6530b", - "x-ms-routing-request-id": "WESTUS2:20210304T225842Z:d702df14-aac2-489f-8256-95ee20d6530b" + "x-ms-correlation-request-id": "b522ea48-1ad9-4805-b937-3fcb72d4390c", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "b522ea48-1ad9-4805-b937-3fcb72d4390c", + "x-ms-routing-request-id": "WESTUS2:20210310T041449Z:b522ea48-1ad9-4805-b937-3fcb72d4390c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5165", @@ -91,6 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-06aa6ad346c34549a9be62746bfa3179-12984fd3452abf48-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "10797d77bb5d40c2a44c23c398d3dd45", "x-ms-return-client-request-id": "true" @@ -105,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:41 GMT", + "Date": "Wed, 10 Mar 2021 04:14:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ebc6311-1f61-45e4-8336-11d8d8a64ab5", - "x-ms-ratelimit-remaining-subscription-writes": "1178", - "x-ms-request-id": "6ebc6311-1f61-45e4-8336-11d8d8a64ab5", - "x-ms-routing-request-id": "WESTUS2:20210304T225842Z:6ebc6311-1f61-45e4-8336-11d8d8a64ab5" + "x-ms-correlation-request-id": "ffcce8b9-50b2-44c8-9396-04fdac655ca2", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "ffcce8b9-50b2-44c8-9396-04fdac655ca2", + "x-ms-routing-request-id": "WESTUS2:20210310T041449Z:ffcce8b9-50b2-44c8-9396-04fdac655ca2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5165", @@ -136,6 +138,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-3ec688f81d181f4c92bd0fb0f6b75fc9-5f4d8704d4232546-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ddd0f96850ecd43f0f4c3e03cd4492e5", "x-ms-return-client-request-id": "true" @@ -151,15 +154,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:42 GMT", + "Date": "Wed, 10 Mar 2021 04:14:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32509a59-5029-45d0-8367-ca1f48ea4a85", - "x-ms-ratelimit-remaining-subscription-writes": "1177", - "x-ms-request-id": "32509a59-5029-45d0-8367-ca1f48ea4a85", - "x-ms-routing-request-id": "WESTUS2:20210304T225842Z:32509a59-5029-45d0-8367-ca1f48ea4a85" + "x-ms-correlation-request-id": "c6a79d82-b4f3-49fe-8000-b3547787b06c", + "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-request-id": "c6a79d82-b4f3-49fe-8000-b3547787b06c", + "x-ms-routing-request-id": "WESTUS2:20210310T041449Z:c6a79d82-b4f3-49fe-8000-b3547787b06c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5165", @@ -183,6 +186,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-d340aedf374b0f4095b2fd461d33d278-07e0d1712a904647-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2ab98b81819bb3cda606477a227234b8", "x-ms-return-client-request-id": "true" @@ -197,15 +201,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:42 GMT", + "Date": "Wed, 10 Mar 2021 04:14:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f90870d-f94e-4d95-834f-168c2ed32f8a", - "x-ms-ratelimit-remaining-subscription-writes": "1176", - "x-ms-request-id": "0f90870d-f94e-4d95-834f-168c2ed32f8a", - "x-ms-routing-request-id": "WESTUS2:20210304T225842Z:0f90870d-f94e-4d95-834f-168c2ed32f8a" + "x-ms-correlation-request-id": "ba50cecd-6579-4b5f-920d-534ed1f5f628", + "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-request-id": "ba50cecd-6579-4b5f-920d-534ed1f5f628", + "x-ms-routing-request-id": "WESTUS2:20210310T041450Z:ba50cecd-6579-4b5f-920d-534ed1f5f628" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5165", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index ee67f9135ff2..48e2f1071ab9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|1493765d-4e7065a7c404cc0d.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bf041884cc34453642d5b58dd606250f", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:03 GMT", + "Date": "Wed, 10 Mar 2021 04:14:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50c84837-0447-4a9e-a218-e41721a17d86", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "50c84837-0447-4a9e-a218-e41721a17d86", - "x-ms-routing-request-id": "WESTUS2:20210304T225904Z:50c84837-0447-4a9e-a218-e41721a17d86" + "x-ms-correlation-request-id": "a2466daf-295b-48d9-83c6-69f18272b7e3", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "a2466daf-295b-48d9-83c6-69f18272b7e3", + "x-ms-routing-request-id": "WESTUS2:20210310T041448Z:a2466daf-295b-48d9-83c6-69f18272b7e3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-c87fa3d61e48654e9593990f50ee6241-5ca012a29c4bc941-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ea845b278ed6ca969598d516417d2b71", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:04 GMT", + "Date": "Wed, 10 Mar 2021 04:14:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94901ab2-4178-4255-a9d3-5739ca848c07", - "x-ms-ratelimit-remaining-subscription-writes": "1139", - "x-ms-request-id": "94901ab2-4178-4255-a9d3-5739ca848c07", - "x-ms-routing-request-id": "WESTUS2:20210304T225905Z:94901ab2-4178-4255-a9d3-5739ca848c07" + "x-ms-correlation-request-id": "fb5015cd-350c-49b7-8101-cdff5ca63279", + "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-request-id": "fb5015cd-350c-49b7-8101-cdff5ca63279", + "x-ms-routing-request-id": "WESTUS2:20210310T041449Z:fb5015cd-350c-49b7-8101-cdff5ca63279" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg7723", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-6afb026211dc9446a13617d1385ba737-5a7c95fe1f5a6e44-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "59904c322d54bb8efb29993560f2feb6", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:04 GMT", + "Date": "Wed, 10 Mar 2021 04:14:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03a0bb0f-bf47-45d7-ad27-b6ff8bb59783", - "x-ms-ratelimit-remaining-subscription-writes": "1138", - "x-ms-request-id": "03a0bb0f-bf47-45d7-ad27-b6ff8bb59783", - "x-ms-routing-request-id": "WESTUS2:20210304T225905Z:03a0bb0f-bf47-45d7-ad27-b6ff8bb59783" + "x-ms-correlation-request-id": "1466bd59-7f2a-4945-9000-7919e9cdfec5", + "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-request-id": "1466bd59-7f2a-4945-9000-7919e9cdfec5", + "x-ms-routing-request-id": "WESTUS2:20210310T041449Z:1466bd59-7f2a-4945-9000-7919e9cdfec5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg7723", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-9405673bb0628b45ac18be2142b8d074-0e988f8f457dd140-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d254c812a1da89ae6ef49e34612e0057", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:06 GMT", + "Date": "Wed, 10 Mar 2021 04:14:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7aff6749-1b27-4ba4-ab7e-1c9150a94b61", - "x-ms-ratelimit-remaining-subscription-writes": "1137", - "x-ms-request-id": "7aff6749-1b27-4ba4-ab7e-1c9150a94b61", - "x-ms-routing-request-id": "WESTUS2:20210304T225906Z:7aff6749-1b27-4ba4-ab7e-1c9150a94b61" + "x-ms-correlation-request-id": "f186ef00-50bc-4ce3-9aaf-8e0fbbb13d1b", + "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-request-id": "f186ef00-50bc-4ce3-9aaf-8e0fbbb13d1b", + "x-ms-routing-request-id": "WESTUS2:20210310T041450Z:f186ef00-50bc-4ce3-9aaf-8e0fbbb13d1b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg7723", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-8a9daa6e1ba98b4a8932b5c6af0ec857-cf77a8597fa0c948-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b9a41b89b595f9a1cdc8eeacf56169a2", "x-ms-return-client-request-id": "true" @@ -197,15 +202,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:06 GMT", + "Date": "Wed, 10 Mar 2021 04:14:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7c04df5-0f86-4352-b6e1-29315045bd41", - "x-ms-ratelimit-remaining-subscription-writes": "1136", - "x-ms-request-id": "b7c04df5-0f86-4352-b6e1-29315045bd41", - "x-ms-routing-request-id": "WESTUS2:20210304T225906Z:b7c04df5-0f86-4352-b6e1-29315045bd41" + "x-ms-correlation-request-id": "f2f3ad9c-8ea6-4815-a350-ed9208d2f634", + "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-request-id": "f2f3ad9c-8ea6-4815-a350-ed9208d2f634", + "x-ms-routing-request-id": "WESTUS2:20210310T041450Z:f2f3ad9c-8ea6-4815-a350-ed9208d2f634" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg7723", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTags.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTags.json index 40023a60709e..ce1c4265532b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTags.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTags.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-82bbcb652ef63447a488da5f39990a6d-16d3e78b0bd80a48-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b3c7cf7cae8f18ad2537dd8f1a75e9e6", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:32 GMT", + "Date": "Wed, 10 Mar 2021 04:14:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d78cbcb7-b2eb-411d-b0eb-401d134e86eb", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "d78cbcb7-b2eb-411d-b0eb-401d134e86eb", - "x-ms-routing-request-id": "WESTUS2:20210304T225832Z:d78cbcb7-b2eb-411d-b0eb-401d134e86eb" + "x-ms-correlation-request-id": "e56124f9-849f-4062-a34e-85e5c82dab90", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "e56124f9-849f-4062-a34e-85e5c82dab90", + "x-ms-routing-request-id": "WESTUS2:20210310T041437Z:e56124f9-849f-4062-a34e-85e5c82dab90" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-184ae7a9ce4a244b8745a65c417f583c-8fe6849cf8dd6549-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "20f28ffc1d8624d948386451c3337eff", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:32 GMT", + "Date": "Wed, 10 Mar 2021 04:14:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a0e954b-e0d7-441a-aaa8-844d96dfc642", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "1a0e954b-e0d7-441a-aaa8-844d96dfc642", - "x-ms-routing-request-id": "WESTUS2:20210304T225832Z:1a0e954b-e0d7-441a-aaa8-844d96dfc642" + "x-ms-correlation-request-id": "d06cc27d-518f-4f81-b7d9-05fdd12b3aff", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "d06cc27d-518f-4f81-b7d9-05fdd12b3aff", + "x-ms-routing-request-id": "WESTUS2:20210310T041438Z:d06cc27d-518f-4f81-b7d9-05fdd12b3aff" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-5310363e1d2e0e4d816332111fec6b3b-3c48fc54ccb99b44-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2fa84c25224e728ad83920899b1cf57e", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:32 GMT", + "Date": "Wed, 10 Mar 2021 04:14:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52fb1671-8958-4875-aac4-65b83529e950", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "52fb1671-8958-4875-aac4-65b83529e950", - "x-ms-routing-request-id": "WESTUS2:20210304T225833Z:52fb1671-8958-4875-aac4-65b83529e950" + "x-ms-correlation-request-id": "26c4180f-3406-401b-ac08-b505c13c96ac", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "26c4180f-3406-401b-ac08-b505c13c96ac", + "x-ms-routing-request-id": "WESTUS2:20210310T041438Z:26c4180f-3406-401b-ac08-b505c13c96ac" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-fe96f176b6fb254a88686b4beccc757d-896e7384be778b49-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f5c3384f3f29b1f6ee8f477548c66204", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:33 GMT", + "Date": "Wed, 10 Mar 2021 04:14:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c5ddabcb-bbc9-4a46-aaad-24125be63d0e", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "c5ddabcb-bbc9-4a46-aaad-24125be63d0e", - "x-ms-routing-request-id": "WESTUS2:20210304T225833Z:c5ddabcb-bbc9-4a46-aaad-24125be63d0e" + "x-ms-correlation-request-id": "6b366ec6-a8ab-4124-97e0-f88b11b51d1e", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "6b366ec6-a8ab-4124-97e0-f88b11b51d1e", + "x-ms-routing-request-id": "WESTUS2:20210310T041439Z:6b366ec6-a8ab-4124-97e0-f88b11b51d1e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", + "traceparent": "00-7d77da8b8c233946af065451f2fac1bb-cbde4e5ca3177049-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "28f48f5fb740daa2057f474dfd50892c", "x-ms-return-client-request-id": "true" @@ -198,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "275", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:33 GMT", + "Date": "Wed, 10 Mar 2021 04:14:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b434749b-dcbd-45b6-b1c2-e15d81d3cd54", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "b434749b-dcbd-45b6-b1c2-e15d81d3cd54", - "x-ms-routing-request-id": "WESTUS2:20210304T225833Z:b434749b-dcbd-45b6-b1c2-e15d81d3cd54" + "x-ms-correlation-request-id": "c1f59b24-d13b-486c-9ca3-49cc211fa510", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "c1f59b24-d13b-486c-9ca3-49cc211fa510", + "x-ms-routing-request-id": "WESTUS2:20210310T041439Z:c1f59b24-d13b-486c-9ca3-49cc211fa510" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTagsAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTagsAsync.json index 3ba67e97b4d1..f792d3ff74ae 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTagsAsync.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTagsAsync.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-7ac99f3a53827840821909890072faad-f5d02608fa64dd47-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8a79601e043b2d87ac8ffa704664d35b", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:55 GMT", + "Date": "Wed, 10 Mar 2021 04:14:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b657bb74-f719-48ff-b6d2-01e775f688c0", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "b657bb74-f719-48ff-b6d2-01e775f688c0", - "x-ms-routing-request-id": "WESTUS2:20210304T225855Z:b657bb74-f719-48ff-b6d2-01e775f688c0" + "x-ms-correlation-request-id": "37634cc1-08fb-467d-af44-d2e84f8236e6", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "37634cc1-08fb-467d-af44-d2e84f8236e6", + "x-ms-routing-request-id": "WESTUS2:20210310T041438Z:37634cc1-08fb-467d-af44-d2e84f8236e6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-d460c12109b0404fb9e942fa44a24097-67a8bb4345b1f749-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3d8b48cd69c815465a6b49d7f4aaa184", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:55 GMT", + "Date": "Wed, 10 Mar 2021 04:14:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a772b459-e588-471b-8a47-03bbd6c043f6", - "x-ms-ratelimit-remaining-subscription-writes": "1155", - "x-ms-request-id": "a772b459-e588-471b-8a47-03bbd6c043f6", - "x-ms-routing-request-id": "WESTUS2:20210304T225856Z:a772b459-e588-471b-8a47-03bbd6c043f6" + "x-ms-correlation-request-id": "aa05e53f-48ad-4d75-8403-6b410dbe8f41", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "aa05e53f-48ad-4d75-8403-6b410dbe8f41", + "x-ms-routing-request-id": "WESTUS2:20210310T041439Z:aa05e53f-48ad-4d75-8403-6b410dbe8f41" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9185", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-4a9cf98546c1e1419f3139c7008427a6-c163564883fb8d41-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aec44c796376daebe0b590d02e30b02f", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:55 GMT", + "Date": "Wed, 10 Mar 2021 04:14:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b4df165-f7e5-4594-a01d-5e5b6b57ea10", - "x-ms-ratelimit-remaining-subscription-writes": "1154", - "x-ms-request-id": "6b4df165-f7e5-4594-a01d-5e5b6b57ea10", - "x-ms-routing-request-id": "WESTUS2:20210304T225856Z:6b4df165-f7e5-4594-a01d-5e5b6b57ea10" + "x-ms-correlation-request-id": "ec670082-55df-4aa8-b698-5e4721c6fa54", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "ec670082-55df-4aa8-b698-5e4721c6fa54", + "x-ms-routing-request-id": "WESTUS2:20210310T041439Z:ec670082-55df-4aa8-b698-5e4721c6fa54" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9185", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-3b7b3797c3e15647929b36c502558d99-904706dce8126d47-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2ec1b74ccdfbf7553275e1993e55b8e4", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:56 GMT", + "Date": "Wed, 10 Mar 2021 04:14:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1d61c5c-7981-4ec2-9deb-18f81bdf7fbc", - "x-ms-ratelimit-remaining-subscription-writes": "1153", - "x-ms-request-id": "e1d61c5c-7981-4ec2-9deb-18f81bdf7fbc", - "x-ms-routing-request-id": "WESTUS2:20210304T225857Z:e1d61c5c-7981-4ec2-9deb-18f81bdf7fbc" + "x-ms-correlation-request-id": "83e0deb3-af5e-46b7-854c-bef03ece931c", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "83e0deb3-af5e-46b7-854c-bef03ece931c", + "x-ms-routing-request-id": "WESTUS2:20210310T041439Z:83e0deb3-af5e-46b7-854c-bef03ece931c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9185", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", + "traceparent": "00-718c496dc5125a4eac67ec6340cedf86-335b50b23707bb4a-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "17ccec59ad0f698c5cb05d12d976e629", "x-ms-return-client-request-id": "true" @@ -198,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "275", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:56 GMT", + "Date": "Wed, 10 Mar 2021 04:14:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1fe6cf28-b855-4b2b-9236-72c4ea978712", - "x-ms-ratelimit-remaining-subscription-writes": "1152", - "x-ms-request-id": "1fe6cf28-b855-4b2b-9236-72c4ea978712", - "x-ms-routing-request-id": "WESTUS2:20210304T225857Z:1fe6cf28-b855-4b2b-9236-72c4ea978712" + "x-ms-correlation-request-id": "85baf4a0-8c18-4342-b392-d836f11b2529", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "85baf4a0-8c18-4342-b392-d836f11b2529", + "x-ms-routing-request-id": "WESTUS2:20210310T041440Z:85baf4a0-8c18-4342-b392-d836f11b2529" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9185", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTags.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTags.json index d8b3b873f1e1..82609ee2f481 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTags.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTags.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:34 GMT", + "Date": "Wed, 10 Mar 2021 04:14:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5cf96915-ec9b-4854-b0e3-058f81729e71", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "5cf96915-ec9b-4854-b0e3-058f81729e71", - "x-ms-routing-request-id": "WESTUS2:20210304T225834Z:5cf96915-ec9b-4854-b0e3-058f81729e71" + "x-ms-correlation-request-id": "feaf69b8-9ff0-44c1-bccc-0c61527671f4", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "feaf69b8-9ff0-44c1-bccc-0c61527671f4", + "x-ms-routing-request-id": "WESTUS2:20210310T041441Z:feaf69b8-9ff0-44c1-bccc-0c61527671f4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +49,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-53162c3ef85f514e948be87e47f2e051-ef0a7c4778b99449-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "eb77baf501f54b5604c9e4aa496689e2", "x-ms-return-client-request-id": "true" @@ -62,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:34 GMT", + "Date": "Wed, 10 Mar 2021 04:14:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb791308-46a6-4854-80ef-0165a285a064", + "x-ms-correlation-request-id": "f3d045d9-8334-4fc1-ad08-0f1279af7607", "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "eb791308-46a6-4854-80ef-0165a285a064", - "x-ms-routing-request-id": "WESTUS2:20210304T225835Z:eb791308-46a6-4854-80ef-0165a285a064" + "x-ms-request-id": "f3d045d9-8334-4fc1-ad08-0f1279af7607", + "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:f3d045d9-8334-4fc1-ad08-0f1279af7607" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg1439", @@ -91,6 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-341ab6e891735748bec74e4ddf458644-4779ffee43f7ad4e-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "998148c0e6daed8d0fef57f18ff119ef", "x-ms-return-client-request-id": "true" @@ -105,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:34 GMT", + "Date": "Wed, 10 Mar 2021 04:14:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c476c015-b24a-4b96-9a2d-01f41e9bcedc", + "x-ms-correlation-request-id": "52aab420-da0a-4108-91f9-59689f95b6c4", "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "c476c015-b24a-4b96-9a2d-01f41e9bcedc", - "x-ms-routing-request-id": "WESTUS2:20210304T225835Z:c476c015-b24a-4b96-9a2d-01f41e9bcedc" + "x-ms-request-id": "52aab420-da0a-4108-91f9-59689f95b6c4", + "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:52aab420-da0a-4108-91f9-59689f95b6c4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg1439", @@ -136,6 +138,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-0be7f4d97397d248aaccaa86b7be0494-f1c3d6e01477ba4d-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2bb900e234140592b343de33526d5399", "x-ms-return-client-request-id": "true" @@ -151,15 +154,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:35 GMT", + "Date": "Wed, 10 Mar 2021 04:14:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce989b10-39a3-452f-9bd3-2ed99eb8ce89", + "x-ms-correlation-request-id": "6582e17a-f721-4e14-abef-41e7937e9c7f", "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "ce989b10-39a3-452f-9bd3-2ed99eb8ce89", - "x-ms-routing-request-id": "WESTUS2:20210304T225835Z:ce989b10-39a3-452f-9bd3-2ed99eb8ce89" + "x-ms-request-id": "6582e17a-f721-4e14-abef-41e7937e9c7f", + "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:6582e17a-f721-4e14-abef-41e7937e9c7f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg1439", @@ -183,6 +186,7 @@ "Authorization": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", + "traceparent": "00-795b9184fe0c4442a8e4f97b93e303db-70b411490d431848-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0deaffe089140e6f2d8adb05aa65bc13", "x-ms-return-client-request-id": "true" @@ -199,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:35 GMT", + "Date": "Wed, 10 Mar 2021 04:14:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47d34c86-41be-4d66-8056-3b202658dc10", + "x-ms-correlation-request-id": "85fedae6-97dc-4b29-a9a3-6287da2493d9", "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "47d34c86-41be-4d66-8056-3b202658dc10", - "x-ms-routing-request-id": "WESTUS2:20210304T225835Z:47d34c86-41be-4d66-8056-3b202658dc10" + "x-ms-request-id": "85fedae6-97dc-4b29-a9a3-6287da2493d9", + "x-ms-routing-request-id": "WESTUS2:20210310T041443Z:85fedae6-97dc-4b29-a9a3-6287da2493d9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg1439", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTagsAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTagsAsync.json index 4b28af67f55d..89fa76343c54 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTagsAsync.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTagsAsync.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:57 GMT", + "Date": "Wed, 10 Mar 2021 04:14:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74ba1cf6-4f56-4f55-a4f3-60be8170a764", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "74ba1cf6-4f56-4f55-a4f3-60be8170a764", - "x-ms-routing-request-id": "WESTUS2:20210304T225858Z:74ba1cf6-4f56-4f55-a4f3-60be8170a764" + "x-ms-correlation-request-id": "76ddef15-2a07-4767-bcc4-e3eaf12077e8", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "76ddef15-2a07-4767-bcc4-e3eaf12077e8", + "x-ms-routing-request-id": "WESTUS2:20210310T041441Z:76ddef15-2a07-4767-bcc4-e3eaf12077e8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +49,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-a2e9c35b6aa2ee4e9c68508e9cbb80c8-aed1facdeb93454f-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8a2c134c254964ac071837f431426609", "x-ms-return-client-request-id": "true" @@ -62,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:57 GMT", + "Date": "Wed, 10 Mar 2021 04:14:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fce89a6f-1c41-42a1-a777-23d3e774e0c4", - "x-ms-ratelimit-remaining-subscription-writes": "1151", - "x-ms-request-id": "fce89a6f-1c41-42a1-a777-23d3e774e0c4", - "x-ms-routing-request-id": "WESTUS2:20210304T225858Z:fce89a6f-1c41-42a1-a777-23d3e774e0c4" + "x-ms-correlation-request-id": "60a17ab0-db14-4386-951f-3da3d6e04c6d", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "60a17ab0-db14-4386-951f-3da3d6e04c6d", + "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:60a17ab0-db14-4386-951f-3da3d6e04c6d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4838", @@ -91,6 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-b80fa2412a8f794bb968e57638aa55bd-7cb8806c2e9f154b-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "63d69bce26e3f79da32b8c0cd3e48088", "x-ms-return-client-request-id": "true" @@ -105,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:58 GMT", + "Date": "Wed, 10 Mar 2021 04:14:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "066a39a2-1dcb-4f5a-a59a-dc1795fdcc6a", - "x-ms-ratelimit-remaining-subscription-writes": "1150", - "x-ms-request-id": "066a39a2-1dcb-4f5a-a59a-dc1795fdcc6a", - "x-ms-routing-request-id": "WESTUS2:20210304T225859Z:066a39a2-1dcb-4f5a-a59a-dc1795fdcc6a" + "x-ms-correlation-request-id": "0708c27f-e6c4-4ace-90c4-3b4b396ac28c", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "0708c27f-e6c4-4ace-90c4-3b4b396ac28c", + "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:0708c27f-e6c4-4ace-90c4-3b4b396ac28c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4838", @@ -136,6 +138,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-900339cd1adce442ba5a8d020e3d5119-b19164f2fc186b4d-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b62af8dc69954222d1e0295f3b0e389c", "x-ms-return-client-request-id": "true" @@ -151,15 +154,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:58 GMT", + "Date": "Wed, 10 Mar 2021 04:14:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7288fed-cc7a-4ebe-a523-e3998f9ea7b1", - "x-ms-ratelimit-remaining-subscription-writes": "1149", - "x-ms-request-id": "d7288fed-cc7a-4ebe-a523-e3998f9ea7b1", - "x-ms-routing-request-id": "WESTUS2:20210304T225859Z:d7288fed-cc7a-4ebe-a523-e3998f9ea7b1" + "x-ms-correlation-request-id": "4a90cf3b-2224-40ad-bde3-d1375f33a3b2", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "4a90cf3b-2224-40ad-bde3-d1375f33a3b2", + "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:4a90cf3b-2224-40ad-bde3-d1375f33a3b2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4838", @@ -183,6 +186,7 @@ "Authorization": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", + "traceparent": "00-d4f8898246fbb749b7e46d5ff8ba7b9b-7adf312277359c4c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "25d12eff9b8226f47634e71e98a09022", "x-ms-return-client-request-id": "true" @@ -199,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:58 GMT", + "Date": "Wed, 10 Mar 2021 04:14:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a215aaa-fb01-4a8b-84bf-9f02d00c9f31", - "x-ms-ratelimit-remaining-subscription-writes": "1148", - "x-ms-request-id": "3a215aaa-fb01-4a8b-84bf-9f02d00c9f31", - "x-ms-routing-request-id": "WESTUS2:20210304T225859Z:3a215aaa-fb01-4a8b-84bf-9f02d00c9f31" + "x-ms-correlation-request-id": "702cb44b-aaa2-45f3-9357-6bc4abe7d6b3", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "702cb44b-aaa2-45f3-9357-6bc4abe7d6b3", + "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:702cb44b-aaa2-45f3-9357-6bc4abe7d6b3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4838", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index 0b261a2d3a69..f9265d4116fc 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-12ab0d4165db0b4faf8c9301e9040439-d9457c382c8a3f4c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "81d11e498feeb67ebeadaea71f543ecd", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:50 GMT", + "Date": "Wed, 10 Mar 2021 04:14:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d38321f4-9674-40fd-ba3c-c79ea804bbe6", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "d38321f4-9674-40fd-ba3c-c79ea804bbe6", - "x-ms-routing-request-id": "WESTUS2:20210304T225851Z:d38321f4-9674-40fd-ba3c-c79ea804bbe6" + "x-ms-correlation-request-id": "54728012-f0e4-48fa-bda8-2ddaf47e6c39", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "54728012-f0e4-48fa-bda8-2ddaf47e6c39", + "x-ms-routing-request-id": "WESTUS2:20210310T041458Z:54728012-f0e4-48fa-bda8-2ddaf47e6c39" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-b5962b46481ea74f98da60304bbaea3a-78b6cf0b5481f24f-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a50aeeddebb826ab444a4bd5700d7f3c", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:50 GMT", + "Date": "Wed, 10 Mar 2021 04:14:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "958c7ed9-6886-4f8c-a73d-999b6a25d8c6", - "x-ms-ratelimit-remaining-subscription-writes": "1163", - "x-ms-request-id": "958c7ed9-6886-4f8c-a73d-999b6a25d8c6", - "x-ms-routing-request-id": "WESTUS2:20210304T225851Z:958c7ed9-6886-4f8c-a73d-999b6a25d8c6" + "x-ms-correlation-request-id": "8ce8aa7d-c297-477d-95ed-9afbd1505e18", + "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-request-id": "8ce8aa7d-c297-477d-95ed-9afbd1505e18", + "x-ms-routing-request-id": "WESTUS2:20210310T041459Z:8ce8aa7d-c297-477d-95ed-9afbd1505e18" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2842", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-84d71f72cc6d594ba0418256a257b157-a64cbbe660ffff4f-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "324223b9ff970f428b1ba4b3bd592f77", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:51 GMT", + "Date": "Wed, 10 Mar 2021 04:14:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2fe6b68e-4de7-48d9-b725-47a966333115", - "x-ms-ratelimit-remaining-subscription-writes": "1162", - "x-ms-request-id": "2fe6b68e-4de7-48d9-b725-47a966333115", - "x-ms-routing-request-id": "WESTUS2:20210304T225851Z:2fe6b68e-4de7-48d9-b725-47a966333115" + "x-ms-correlation-request-id": "bc0f62c3-be7b-4755-89a3-af44632acb87", + "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-request-id": "bc0f62c3-be7b-4755-89a3-af44632acb87", + "x-ms-routing-request-id": "WESTUS2:20210310T041459Z:bc0f62c3-be7b-4755-89a3-af44632acb87" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2842", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-bb0d316b6bdd284fa698e06394c33266-c3f704e2ef02604c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b33fedec0faa3291255aaa4532e04d9f", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:51 GMT", + "Date": "Wed, 10 Mar 2021 04:14:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a67f3d35-090a-43da-ba0d-ba3f6ad3cf9a", - "x-ms-ratelimit-remaining-subscription-writes": "1161", - "x-ms-request-id": "a67f3d35-090a-43da-ba0d-ba3f6ad3cf9a", - "x-ms-routing-request-id": "WESTUS2:20210304T225852Z:a67f3d35-090a-43da-ba0d-ba3f6ad3cf9a" + "x-ms-correlation-request-id": "c5c3032f-9938-41e1-9f0d-466df7c9f1ba", + "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-request-id": "c5c3032f-9938-41e1-9f0d-466df7c9f1ba", + "x-ms-routing-request-id": "WESTUS2:20210310T041459Z:c5c3032f-9938-41e1-9f0d-466df7c9f1ba" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2842", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-fc67809c1ecad34abaac9a8fb4bbc6fb-612a105da3afaf48-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "30656b2e9bfbddb9acfa199d46f769ea", "x-ms-return-client-request-id": "true" @@ -198,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:51 GMT", + "Date": "Wed, 10 Mar 2021 04:14:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8e6e94b-ea35-4097-beb9-ef56d0965870", - "x-ms-ratelimit-remaining-subscription-writes": "1160", - "x-ms-request-id": "c8e6e94b-ea35-4097-beb9-ef56d0965870", - "x-ms-routing-request-id": "WESTUS2:20210304T225852Z:c8e6e94b-ea35-4097-beb9-ef56d0965870" + "x-ms-correlation-request-id": "dee84ee8-6346-44d7-a0ae-5a6448116156", + "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-request-id": "dee84ee8-6346-44d7-a0ae-5a6448116156", + "x-ms-routing-request-id": "WESTUS2:20210310T041500Z:dee84ee8-6346-44d7-a0ae-5a6448116156" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2842", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index daa1ac8aff9a..30ff497f1425 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-705b8ea110b7ed4ea108cc8267d9a4d9-670c1085a694484c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "cde72c799d1bedb86602dbeae9f76fae", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:14 GMT", + "Date": "Wed, 10 Mar 2021 04:14:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8d1ee79-0631-4177-a53d-e9a0977974a4", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "d8d1ee79-0631-4177-a53d-e9a0977974a4", - "x-ms-routing-request-id": "WESTUS2:20210304T225914Z:d8d1ee79-0631-4177-a53d-e9a0977974a4" + "x-ms-correlation-request-id": "f7c8d706-e233-4e47-9b6e-3acdcd37fd23", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "f7c8d706-e233-4e47-9b6e-3acdcd37fd23", + "x-ms-routing-request-id": "WESTUS2:20210310T041459Z:f7c8d706-e233-4e47-9b6e-3acdcd37fd23" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-cdbac409bae6674fab3a65a7ef2c3de1-f4516073abc9464f-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8f6c9a6f5112a5933f5ed131e16a5ca7", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "218", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:14 GMT", + "Date": "Wed, 10 Mar 2021 04:14:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34e7e70d-1b95-4639-8a87-9a1bec788f20", - "x-ms-ratelimit-remaining-subscription-writes": "1123", - "x-ms-request-id": "34e7e70d-1b95-4639-8a87-9a1bec788f20", - "x-ms-routing-request-id": "WESTUS2:20210304T225914Z:34e7e70d-1b95-4639-8a87-9a1bec788f20" + "x-ms-correlation-request-id": "a29d1d72-2804-4436-9630-cabdba504de1", + "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-request-id": "a29d1d72-2804-4436-9630-cabdba504de1", + "x-ms-routing-request-id": "WESTUS2:20210310T041459Z:a29d1d72-2804-4436-9630-cabdba504de1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg881", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-e485716e6fa2434d9acaec3a34d4be74-215488eb341a7c48-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2ef4d881986a5c390bdea54df129ced6", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "233", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:15 GMT", + "Date": "Wed, 10 Mar 2021 04:14:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "420fad60-ec76-4dff-8651-0d03638e824f", - "x-ms-ratelimit-remaining-subscription-writes": "1122", - "x-ms-request-id": "420fad60-ec76-4dff-8651-0d03638e824f", - "x-ms-routing-request-id": "WESTUS2:20210304T225915Z:420fad60-ec76-4dff-8651-0d03638e824f" + "x-ms-correlation-request-id": "9afaff81-4cd9-41ed-8fc1-e63f3e300acf", + "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-request-id": "9afaff81-4cd9-41ed-8fc1-e63f3e300acf", + "x-ms-routing-request-id": "WESTUS2:20210310T041500Z:9afaff81-4cd9-41ed-8fc1-e63f3e300acf" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg881", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-a5010531f3b7604b9ab3ff6b45493aca-8e74a243165fbc47-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9a1b27b62a9bdb665427dc3ee7bc8597", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "249", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:15 GMT", + "Date": "Wed, 10 Mar 2021 04:15:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "acfea509-93df-4cb3-b068-cd94dac475d4", - "x-ms-ratelimit-remaining-subscription-writes": "1121", - "x-ms-request-id": "acfea509-93df-4cb3-b068-cd94dac475d4", - "x-ms-routing-request-id": "WESTUS2:20210304T225915Z:acfea509-93df-4cb3-b068-cd94dac475d4" + "x-ms-correlation-request-id": "8f187896-f645-4bfc-826a-d7a8594f4d11", + "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-request-id": "8f187896-f645-4bfc-826a-d7a8594f4d11", + "x-ms-routing-request-id": "WESTUS2:20210310T041500Z:8f187896-f645-4bfc-826a-d7a8594f4d11" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg881", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-5c28b68ee520c94baf197d7ee59993c9-022402782e2cb145-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1e68437e7f7ad6e7610f8333ac45b415", "x-ms-return-client-request-id": "true" @@ -198,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "249", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:15 GMT", + "Date": "Wed, 10 Mar 2021 04:15:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "007f49f1-4204-4284-9a27-dd6912fe6716", - "x-ms-ratelimit-remaining-subscription-writes": "1120", - "x-ms-request-id": "007f49f1-4204-4284-9a27-dd6912fe6716", - "x-ms-routing-request-id": "WESTUS2:20210304T225915Z:007f49f1-4204-4284-9a27-dd6912fe6716" + "x-ms-correlation-request-id": "90074422-4b47-4640-b967-6dd2c2bd59ba", + "x-ms-ratelimit-remaining-subscription-writes": "1161", + "x-ms-request-id": "90074422-4b47-4640-b967-6dd2c2bd59ba", + "x-ms-routing-request-id": "WESTUS2:20210310T041500Z:90074422-4b47-4640-b967-6dd2c2bd59ba" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg881", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index 0f9d7ee632b3..85b9fc00a510 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-a60751b2cf35da41a36cc373e3f6d4b3-33201c15ca2ff14d-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "980c56392d34f8170c395917d912eeeb", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:45 GMT", + "Date": "Wed, 10 Mar 2021 04:14:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "999d5837-28b8-43fc-b16e-90de75e0e7d0", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "999d5837-28b8-43fc-b16e-90de75e0e7d0", - "x-ms-routing-request-id": "WESTUS2:20210304T225846Z:999d5837-28b8-43fc-b16e-90de75e0e7d0" + "x-ms-correlation-request-id": "c0faecac-fa8c-4117-9212-61f9023baeba", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "c0faecac-fa8c-4117-9212-61f9023baeba", + "x-ms-routing-request-id": "WESTUS2:20210310T041453Z:c0faecac-fa8c-4117-9212-61f9023baeba" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-bd449d7817681a44b0e7c7d6b7868bfe-799b72fa362daa4a-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "efd02ac9dc64bf012e2693de7b6950f7", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:46 GMT", + "Date": "Wed, 10 Mar 2021 04:14:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9866d946-ee05-443d-8a7d-8f390e218797", - "x-ms-ratelimit-remaining-subscription-writes": "1171", - "x-ms-request-id": "9866d946-ee05-443d-8a7d-8f390e218797", - "x-ms-routing-request-id": "WESTUS2:20210304T225846Z:9866d946-ee05-443d-8a7d-8f390e218797" + "x-ms-correlation-request-id": "ec664f97-3b19-4312-b6e1-76385bbc15f2", + "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-request-id": "ec664f97-3b19-4312-b6e1-76385bbc15f2", + "x-ms-routing-request-id": "WESTUS2:20210310T041454Z:ec664f97-3b19-4312-b6e1-76385bbc15f2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5264", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-5cdc0607cf604f438a57c67c505790cf-899d574b25c3b14c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "83e154f6e959a5862e009f566ff23ff3", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:46 GMT", + "Date": "Wed, 10 Mar 2021 04:14:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebca71b3-209e-4941-a1d7-197a7927e6bf", - "x-ms-ratelimit-remaining-subscription-writes": "1170", - "x-ms-request-id": "ebca71b3-209e-4941-a1d7-197a7927e6bf", - "x-ms-routing-request-id": "WESTUS2:20210304T225847Z:ebca71b3-209e-4941-a1d7-197a7927e6bf" + "x-ms-correlation-request-id": "5bd7b4fa-1861-458d-8ba5-5ab816f02a9d", + "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-request-id": "5bd7b4fa-1861-458d-8ba5-5ab816f02a9d", + "x-ms-routing-request-id": "WESTUS2:20210310T041454Z:5bd7b4fa-1861-458d-8ba5-5ab816f02a9d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5264", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-31440c705df0c14ea7f81bfbde841ea7-16c07a36e109784e-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a571a8dc66b879d40bd90507831a91d0", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:46 GMT", + "Date": "Wed, 10 Mar 2021 04:14:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f429603-edd3-400d-881a-1e3bfae24030", - "x-ms-ratelimit-remaining-subscription-writes": "1169", - "x-ms-request-id": "2f429603-edd3-400d-881a-1e3bfae24030", - "x-ms-routing-request-id": "WESTUS2:20210304T225847Z:2f429603-edd3-400d-881a-1e3bfae24030" + "x-ms-correlation-request-id": "eeb23517-d23a-4f46-b9d0-3e0cf45503a7", + "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-request-id": "eeb23517-d23a-4f46-b9d0-3e0cf45503a7", + "x-ms-routing-request-id": "WESTUS2:20210310T041454Z:eeb23517-d23a-4f46-b9d0-3e0cf45503a7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5264", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-92353588e74a2340933bdca9b56e76b4-b5eb73905189d74e-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bee21f09680ddfb1a32ac0643caa503c", "x-ms-return-client-request-id": "true" @@ -197,15 +202,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:47 GMT", + "Date": "Wed, 10 Mar 2021 04:14:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "288a69b0-4aa6-48aa-93f8-3b35fbf1a17b", - "x-ms-ratelimit-remaining-subscription-writes": "1168", - "x-ms-request-id": "288a69b0-4aa6-48aa-93f8-3b35fbf1a17b", - "x-ms-routing-request-id": "WESTUS2:20210304T225847Z:288a69b0-4aa6-48aa-93f8-3b35fbf1a17b" + "x-ms-correlation-request-id": "cbfc8adb-b7a1-43b2-9242-0118d8da8b1b", + "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-request-id": "cbfc8adb-b7a1-43b2-9242-0118d8da8b1b", + "x-ms-routing-request-id": "WESTUS2:20210310T041455Z:cbfc8adb-b7a1-43b2-9242-0118d8da8b1b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5264", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index 62c3a0b0ae24..5fc381583fdb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|1493765f-4e7065a7c404cc0d.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b63104118d8435bf401f03f069812721", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:09 GMT", + "Date": "Wed, 10 Mar 2021 04:14:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f249017-b8b6-495e-95c6-942f1379b6e2", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "1f249017-b8b6-495e-95c6-942f1379b6e2", - "x-ms-routing-request-id": "WESTUS2:20210304T225909Z:1f249017-b8b6-495e-95c6-942f1379b6e2" + "x-ms-correlation-request-id": "68756585-3e9b-4e60-bfcc-9228f0b17c27", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "68756585-3e9b-4e60-bfcc-9228f0b17c27", + "x-ms-routing-request-id": "WESTUS2:20210310T041453Z:68756585-3e9b-4e60-bfcc-9228f0b17c27" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-35ce2542da5028478b7c0adbe17cf085-a21da4c2f8a40e47-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f3e74d87f83311cbd2ec4e92e7bec035", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:09 GMT", + "Date": "Wed, 10 Mar 2021 04:14:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebbb95cd-18de-402a-94ba-d206e1845995", - "x-ms-ratelimit-remaining-subscription-writes": "1131", - "x-ms-request-id": "ebbb95cd-18de-402a-94ba-d206e1845995", - "x-ms-routing-request-id": "WESTUS2:20210304T225910Z:ebbb95cd-18de-402a-94ba-d206e1845995" + "x-ms-correlation-request-id": "1d43c718-cc4e-44ef-9970-597b37c83ba6", + "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-request-id": "1d43c718-cc4e-44ef-9970-597b37c83ba6", + "x-ms-routing-request-id": "WESTUS2:20210310T041454Z:1d43c718-cc4e-44ef-9970-597b37c83ba6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8660", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-303e7e3485c1184098e7f86471729a6b-8507ed792728614e-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "be8623aed8eb86cd37b9ebaac8f9da3f", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:10 GMT", + "Date": "Wed, 10 Mar 2021 04:14:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81f15a68-342a-415a-a0c3-1ac3a244d517", - "x-ms-ratelimit-remaining-subscription-writes": "1130", - "x-ms-request-id": "81f15a68-342a-415a-a0c3-1ac3a244d517", - "x-ms-routing-request-id": "WESTUS2:20210304T225910Z:81f15a68-342a-415a-a0c3-1ac3a244d517" + "x-ms-correlation-request-id": "59443082-c2c3-4e43-89f4-2e15475a557e", + "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-request-id": "59443082-c2c3-4e43-89f4-2e15475a557e", + "x-ms-routing-request-id": "WESTUS2:20210310T041454Z:59443082-c2c3-4e43-89f4-2e15475a557e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8660", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-d98a7c565cadda4d937f84aa4dd907ac-bd2333daf041d340-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "27ee3e4d4ddf0bdd66a4b2a171a35861", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:10 GMT", + "Date": "Wed, 10 Mar 2021 04:14:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebadc9b8-3b60-4dc4-85d4-64c084ae273f", - "x-ms-ratelimit-remaining-subscription-writes": "1129", - "x-ms-request-id": "ebadc9b8-3b60-4dc4-85d4-64c084ae273f", - "x-ms-routing-request-id": "WESTUS2:20210304T225910Z:ebadc9b8-3b60-4dc4-85d4-64c084ae273f" + "x-ms-correlation-request-id": "d4c61bc3-5e16-4e01-a5a6-6c2603f9c431", + "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-request-id": "d4c61bc3-5e16-4e01-a5a6-6c2603f9c431", + "x-ms-routing-request-id": "WESTUS2:20210310T041455Z:d4c61bc3-5e16-4e01-a5a6-6c2603f9c431" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8660", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-7d765d955c34384fa8a04a7690ac64b8-2c594b8c0d5d8649-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5dbaba4363a1ae547f61bc790d2049d9", "x-ms-return-client-request-id": "true" @@ -197,15 +202,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:10 GMT", + "Date": "Wed, 10 Mar 2021 04:14:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8c6e32a-7ed9-4f6c-b279-e3603fd13cb0", - "x-ms-ratelimit-remaining-subscription-writes": "1128", - "x-ms-request-id": "b8c6e32a-7ed9-4f6c-b279-e3603fd13cb0", - "x-ms-routing-request-id": "WESTUS2:20210304T225910Z:b8c6e32a-7ed9-4f6c-b279-e3603fd13cb0" + "x-ms-correlation-request-id": "12479c3b-82c2-4ca0-b9ae-f436d4cfed98", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "12479c3b-82c2-4ca0-b9ae-f436d4cfed98", + "x-ms-routing-request-id": "WESTUS2:20210310T041455Z:12479c3b-82c2-4ca0-b9ae-f436d4cfed98" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8660", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index 10dd08a37f25..fbdc9433ff0f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-636d569ab1b1954ebb64987c78d93a4d-ebdf21a9c081e445-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a7ee9d39096528f2c3ee4aa8e429747f", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:48 GMT", + "Date": "Wed, 10 Mar 2021 04:14:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55ec59ff-27ce-4cc5-a5bc-d38800742149", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "55ec59ff-27ce-4cc5-a5bc-d38800742149", - "x-ms-routing-request-id": "WESTUS2:20210304T225848Z:55ec59ff-27ce-4cc5-a5bc-d38800742149" + "x-ms-correlation-request-id": "38921ac6-e54c-4022-a794-14730a74b8c5", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "38921ac6-e54c-4022-a794-14730a74b8c5", + "x-ms-routing-request-id": "WESTUS2:20210310T041455Z:38921ac6-e54c-4022-a794-14730a74b8c5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-b2e161e86918fe46906892fef5412309-9b40f1d602d3ff48-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "77198d81c27c504e969518aea57dc7b4", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:48 GMT", + "Date": "Wed, 10 Mar 2021 04:14:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55109b8c-a2e7-4c87-a0a6-e36552d4a3fd", - "x-ms-ratelimit-remaining-subscription-writes": "1167", - "x-ms-request-id": "55109b8c-a2e7-4c87-a0a6-e36552d4a3fd", - "x-ms-routing-request-id": "WESTUS2:20210304T225849Z:55109b8c-a2e7-4c87-a0a6-e36552d4a3fd" + "x-ms-correlation-request-id": "7eb9a99f-c9b7-45c2-8741-5d3f42b15cdc", + "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-request-id": "7eb9a99f-c9b7-45c2-8741-5d3f42b15cdc", + "x-ms-routing-request-id": "WESTUS2:20210310T041456Z:7eb9a99f-c9b7-45c2-8741-5d3f42b15cdc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8422", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-41af02729495eb48881e17c00058f689-539997b22243694b-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aa107969ee899ba2d227c4b7f338dbeb", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:48 GMT", + "Date": "Wed, 10 Mar 2021 04:14:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3510af8f-708d-48e1-9533-40f0687653b7", - "x-ms-ratelimit-remaining-subscription-writes": "1166", - "x-ms-request-id": "3510af8f-708d-48e1-9533-40f0687653b7", - "x-ms-routing-request-id": "WESTUS2:20210304T225849Z:3510af8f-708d-48e1-9533-40f0687653b7" + "x-ms-correlation-request-id": "08c1fe90-172b-4e04-82a9-ebb209cbf9db", + "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-request-id": "08c1fe90-172b-4e04-82a9-ebb209cbf9db", + "x-ms-routing-request-id": "WESTUS2:20210310T041456Z:08c1fe90-172b-4e04-82a9-ebb209cbf9db" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8422", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-e5ebab2b2f3cf9418f1829d1d00b379f-076e0656db77914f-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "be23300b5fbadabca057cf74d9791e71", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:49 GMT", + "Date": "Wed, 10 Mar 2021 04:14:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5def8d0-f2fe-4fef-a930-1c23f7a26cb3", - "x-ms-ratelimit-remaining-subscription-writes": "1165", - "x-ms-request-id": "e5def8d0-f2fe-4fef-a930-1c23f7a26cb3", - "x-ms-routing-request-id": "WESTUS2:20210304T225849Z:e5def8d0-f2fe-4fef-a930-1c23f7a26cb3" + "x-ms-correlation-request-id": "fd1ae8ff-c999-4309-9f13-22a7a9cbba28", + "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-request-id": "fd1ae8ff-c999-4309-9f13-22a7a9cbba28", + "x-ms-routing-request-id": "WESTUS2:20210310T041457Z:fd1ae8ff-c999-4309-9f13-22a7a9cbba28" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8422", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-76954eb0ab459a4cb69e783796a07e48-c476fd0d3ba7b74b-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "af7af383d463937eea7da554fd965c5d", "x-ms-return-client-request-id": "true" @@ -197,15 +202,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:49 GMT", + "Date": "Wed, 10 Mar 2021 04:14:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b215a9d4-6baf-410b-89f6-34c2f893a126", - "x-ms-ratelimit-remaining-subscription-writes": "1164", - "x-ms-request-id": "b215a9d4-6baf-410b-89f6-34c2f893a126", - "x-ms-routing-request-id": "WESTUS2:20210304T225850Z:b215a9d4-6baf-410b-89f6-34c2f893a126" + "x-ms-correlation-request-id": "29e65679-9a38-4c93-b97e-f60951835f57", + "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-request-id": "29e65679-9a38-4c93-b97e-f60951835f57", + "x-ms-routing-request-id": "WESTUS2:20210310T041457Z:29e65679-9a38-4c93-b97e-f60951835f57" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8422", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index a9de28debd1f..eb88152878c0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|14937660-4e7065a7c404cc0d.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f45ee950dce0505d8019e58ca09fa48f", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:11 GMT", + "Date": "Wed, 10 Mar 2021 04:14:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb644984-d3d9-42d1-b094-edfee444d228", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "cb644984-d3d9-42d1-b094-edfee444d228", - "x-ms-routing-request-id": "WESTUS2:20210304T225911Z:cb644984-d3d9-42d1-b094-edfee444d228" + "x-ms-correlation-request-id": "21cd9319-a3ff-43a1-806f-55798a22c16d", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "21cd9319-a3ff-43a1-806f-55798a22c16d", + "x-ms-routing-request-id": "WESTUS2:20210310T041456Z:21cd9319-a3ff-43a1-806f-55798a22c16d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-3ff6746082d6504c9f4dd6695227ed5b-441bc2d3409e3549-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b0a07267a7100a936287d9f150678f75", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:12 GMT", + "Date": "Wed, 10 Mar 2021 04:14:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5cccfb95-e06d-470d-8fa8-628f11647fab", - "x-ms-ratelimit-remaining-subscription-writes": "1127", - "x-ms-request-id": "5cccfb95-e06d-470d-8fa8-628f11647fab", - "x-ms-routing-request-id": "WESTUS2:20210304T225912Z:5cccfb95-e06d-470d-8fa8-628f11647fab" + "x-ms-correlation-request-id": "1957e6dd-ed96-4d3c-9290-ec09d7c2e154", + "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-request-id": "1957e6dd-ed96-4d3c-9290-ec09d7c2e154", + "x-ms-routing-request-id": "WESTUS2:20210310T041457Z:1957e6dd-ed96-4d3c-9290-ec09d7c2e154" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg3944", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-ad324a4ebf8205438d2d5623eb46d8c9-507802228b00e34a-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "666aabd6c0153e5cb0d444e38a4df26e", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:12 GMT", + "Date": "Wed, 10 Mar 2021 04:14:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e294863-3ce8-4a7b-a57d-072fb790471b", - "x-ms-ratelimit-remaining-subscription-writes": "1126", - "x-ms-request-id": "2e294863-3ce8-4a7b-a57d-072fb790471b", - "x-ms-routing-request-id": "WESTUS2:20210304T225912Z:2e294863-3ce8-4a7b-a57d-072fb790471b" + "x-ms-correlation-request-id": "94f6e4c8-2ff0-4fbd-9067-c6cbd04a4859", + "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-request-id": "94f6e4c8-2ff0-4fbd-9067-c6cbd04a4859", + "x-ms-routing-request-id": "WESTUS2:20210310T041457Z:94f6e4c8-2ff0-4fbd-9067-c6cbd04a4859" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg3944", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-fb88d43da793c04f85217fa1c2f0b32b-e1ed7e661b4d3d4f-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f4207cf95f54423fcbea7d55835f30b1", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:12 GMT", + "Date": "Wed, 10 Mar 2021 04:14:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2abbc405-a39f-48e8-b85e-5efb875b2b0d", - "x-ms-ratelimit-remaining-subscription-writes": "1125", - "x-ms-request-id": "2abbc405-a39f-48e8-b85e-5efb875b2b0d", - "x-ms-routing-request-id": "WESTUS2:20210304T225912Z:2abbc405-a39f-48e8-b85e-5efb875b2b0d" + "x-ms-correlation-request-id": "03517359-10b8-47a5-bf7b-e1df44aa272c", + "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-request-id": "03517359-10b8-47a5-bf7b-e1df44aa272c", + "x-ms-routing-request-id": "WESTUS2:20210310T041457Z:03517359-10b8-47a5-bf7b-e1df44aa272c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg3944", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-de4482d9ee6287479f40a1f76846f8f0-af2ecbf29a967344-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f3ca17562839a7971661ff3c63b07f15", "x-ms-return-client-request-id": "true" @@ -197,15 +202,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:12 GMT", + "Date": "Wed, 10 Mar 2021 04:14:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "099db791-e805-4608-89f9-c6eb70158ba0", - "x-ms-ratelimit-remaining-subscription-writes": "1124", - "x-ms-request-id": "099db791-e805-4608-89f9-c6eb70158ba0", - "x-ms-routing-request-id": "WESTUS2:20210304T225913Z:099db791-e805-4608-89f9-c6eb70158ba0" + "x-ms-correlation-request-id": "458662fc-5a1f-44b6-ac34-eff37315b30c", + "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-request-id": "458662fc-5a1f-44b6-ac34-eff37315b30c", + "x-ms-routing-request-id": "WESTUS2:20210310T041458Z:458662fc-5a1f-44b6-ac34-eff37315b30c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg3944", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTags.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTags.json index 5f91ec97af94..ad3171e9d2a2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTags.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTags.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:36 GMT", + "Date": "Wed, 10 Mar 2021 04:14:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c5b2e1b9-a8cd-41ea-a064-16a28b0b56eb", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "c5b2e1b9-a8cd-41ea-a064-16a28b0b56eb", - "x-ms-routing-request-id": "WESTUS2:20210304T225836Z:c5b2e1b9-a8cd-41ea-a064-16a28b0b56eb" + "x-ms-correlation-request-id": "ce53ec23-f092-4e2c-8509-7bff600f7b3b", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "ce53ec23-f092-4e2c-8509-7bff600f7b3b", + "x-ms-routing-request-id": "WESTUS2:20210310T041444Z:ce53ec23-f092-4e2c-8509-7bff600f7b3b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +49,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-54ce8e6450b203418897b21aaef12e9f-00e0058183399443-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "51c21b86ece8396d1f01fc99482002ac", "x-ms-return-client-request-id": "true" @@ -62,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:37 GMT", + "Date": "Wed, 10 Mar 2021 04:14:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec7f4261-ae9f-480c-af99-4195ec0fe718", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "ec7f4261-ae9f-480c-af99-4195ec0fe718", - "x-ms-routing-request-id": "WESTUS2:20210304T225837Z:ec7f4261-ae9f-480c-af99-4195ec0fe718" + "x-ms-correlation-request-id": "26fea46a-645f-4411-9a87-d9f6ca6ac7e9", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "26fea46a-645f-4411-9a87-d9f6ca6ac7e9", + "x-ms-routing-request-id": "WESTUS2:20210310T041444Z:26fea46a-645f-4411-9a87-d9f6ca6ac7e9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2945", @@ -91,6 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-328969ed0455184a91a10c2d386f78b6-5728046a93c0384c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9f0ac8a4fbde6a57d02769206fa3e9ad", "x-ms-return-client-request-id": "true" @@ -105,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:37 GMT", + "Date": "Wed, 10 Mar 2021 04:14:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83ffd04a-42ff-4612-844a-117bad363a92", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "83ffd04a-42ff-4612-844a-117bad363a92", - "x-ms-routing-request-id": "WESTUS2:20210304T225837Z:83ffd04a-42ff-4612-844a-117bad363a92" + "x-ms-correlation-request-id": "6ed1cb2f-20f7-4d89-9cfa-1c340162ea5e", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "6ed1cb2f-20f7-4d89-9cfa-1c340162ea5e", + "x-ms-routing-request-id": "WESTUS2:20210310T041444Z:6ed1cb2f-20f7-4d89-9cfa-1c340162ea5e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2945", @@ -136,6 +138,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-803e9e3f4a867b4ba4944edbd0e20522-c1c8e3fb98fe9e40-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6aa30fff743104b521c91466572b64ae", "x-ms-return-client-request-id": "true" @@ -151,15 +154,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:37 GMT", + "Date": "Wed, 10 Mar 2021 04:14:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf4a4db3-5bf6-42cd-958a-099dd210de91", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "bf4a4db3-5bf6-42cd-958a-099dd210de91", - "x-ms-routing-request-id": "WESTUS2:20210304T225838Z:bf4a4db3-5bf6-42cd-958a-099dd210de91" + "x-ms-correlation-request-id": "4427b5e6-de69-46d4-acc6-a52e28fc17d9", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "4427b5e6-de69-46d4-acc6-a52e28fc17d9", + "x-ms-routing-request-id": "WESTUS2:20210310T041445Z:4427b5e6-de69-46d4-acc6-a52e28fc17d9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2945", @@ -183,6 +186,7 @@ "Authorization": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", + "traceparent": "00-643cfca360a06d40afb9be6f8e6bd1f0-05838771dc85374e-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "690c034665c28b3bc45880c1824dca7c", "x-ms-return-client-request-id": "true" @@ -198,15 +202,15 @@ "Cache-Control": "no-cache", "Content-Length": "275", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:37 GMT", + "Date": "Wed, 10 Mar 2021 04:14:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2aaead2-6027-4261-9956-21ddfe9fffee", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "e2aaead2-6027-4261-9956-21ddfe9fffee", - "x-ms-routing-request-id": "WESTUS2:20210304T225838Z:e2aaead2-6027-4261-9956-21ddfe9fffee" + "x-ms-correlation-request-id": "26522faf-2c1e-4d33-a077-af3a6baadd8f", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "26522faf-2c1e-4d33-a077-af3a6baadd8f", + "x-ms-routing-request-id": "WESTUS2:20210310T041445Z:26522faf-2c1e-4d33-a077-af3a6baadd8f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2945", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTagsAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTagsAsync.json index c9cee9e45b2a..1debf7e7d326 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTagsAsync.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTagsAsync.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|1493765c-4e7065a7c404cc0d.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a7f4b134f6509b0c07126ff257bede52", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:58:59 GMT", + "Date": "Wed, 10 Mar 2021 04:14:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ead69b35-f668-49dc-a2da-0eeb97313863", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "ead69b35-f668-49dc-a2da-0eeb97313863", - "x-ms-routing-request-id": "WESTUS2:20210304T225900Z:ead69b35-f668-49dc-a2da-0eeb97313863" + "x-ms-correlation-request-id": "8ed90724-543c-45b8-9c70-2a0448dd4e60", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "8ed90724-543c-45b8-9c70-2a0448dd4e60", + "x-ms-routing-request-id": "WESTUS2:20210310T041444Z:8ed90724-543c-45b8-9c70-2a0448dd4e60" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,6 +50,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-6f8d75b94ecabc409b797ffdaeb63554-8bb36712dd8e2a4a-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ffc6d5eab6bcfb6f574117900f44a4ab", "x-ms-return-client-request-id": "true" @@ -62,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:00 GMT", + "Date": "Wed, 10 Mar 2021 04:14:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fdd7d608-8a06-4297-9306-191baffea651", - "x-ms-ratelimit-remaining-subscription-writes": "1147", - "x-ms-request-id": "fdd7d608-8a06-4297-9306-191baffea651", - "x-ms-routing-request-id": "WESTUS2:20210304T225901Z:fdd7d608-8a06-4297-9306-191baffea651" + "x-ms-correlation-request-id": "b4b1bdb4-11f4-4a62-a16e-36cc17917476", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "b4b1bdb4-11f4-4a62-a16e-36cc17917476", + "x-ms-routing-request-id": "WESTUS2:20210310T041444Z:b4b1bdb4-11f4-4a62-a16e-36cc17917476" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8020", @@ -91,6 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", + "traceparent": "00-fc7366336eda0c429ac28e472f4c1397-31c4db4a2f97fe45-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "28791bc5351ca362c91b6a00d5899afb", "x-ms-return-client-request-id": "true" @@ -105,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:00 GMT", + "Date": "Wed, 10 Mar 2021 04:14:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17377af9-84aa-4786-b767-e905490b77db", - "x-ms-ratelimit-remaining-subscription-writes": "1146", - "x-ms-request-id": "17377af9-84aa-4786-b767-e905490b77db", - "x-ms-routing-request-id": "WESTUS2:20210304T225901Z:17377af9-84aa-4786-b767-e905490b77db" + "x-ms-correlation-request-id": "2f46fe60-1e6e-45e5-b5fe-480dc7fce392", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "2f46fe60-1e6e-45e5-b5fe-480dc7fce392", + "x-ms-routing-request-id": "WESTUS2:20210310T041445Z:2f46fe60-1e6e-45e5-b5fe-480dc7fce392" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8020", @@ -136,6 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", + "traceparent": "00-c0de0d34abfc9946a0317ee3e9d0f5d7-244bd8114fa3af4a-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0f06d885e08afb7785acf8b4f50bf8ce", "x-ms-return-client-request-id": "true" @@ -151,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:00 GMT", + "Date": "Wed, 10 Mar 2021 04:14:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f573e786-25d1-4974-bbc2-b41ba1d909e2", - "x-ms-ratelimit-remaining-subscription-writes": "1145", - "x-ms-request-id": "f573e786-25d1-4974-bbc2-b41ba1d909e2", - "x-ms-routing-request-id": "WESTUS2:20210304T225901Z:f573e786-25d1-4974-bbc2-b41ba1d909e2" + "x-ms-correlation-request-id": "b3beb77b-04ba-4c86-9dd8-0459934404f3", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "b3beb77b-04ba-4c86-9dd8-0459934404f3", + "x-ms-routing-request-id": "WESTUS2:20210310T041445Z:b3beb77b-04ba-4c86-9dd8-0459934404f3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8020", @@ -183,6 +187,7 @@ "Authorization": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", + "traceparent": "00-2a71d75394a9524091de8bdebb39cd54-fcac251bf399cf48-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a29147ca2965b517722335a14c6e26ce", "x-ms-return-client-request-id": "true" @@ -198,15 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "275", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:59:01 GMT", + "Date": "Wed, 10 Mar 2021 04:14:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5121a5bb-5089-49a7-8b0e-d28e4785ad2a", - "x-ms-ratelimit-remaining-subscription-writes": "1144", - "x-ms-request-id": "5121a5bb-5089-49a7-8b0e-d28e4785ad2a", - "x-ms-routing-request-id": "WESTUS2:20210304T225901Z:5121a5bb-5089-49a7-8b0e-d28e4785ad2a" + "x-ms-correlation-request-id": "a120c397-117a-4718-9371-c8302a2fdcc3", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "a120c397-117a-4718-9371-c8302a2fdcc3", + "x-ms-routing-request-id": "WESTUS2:20210310T041445Z:a120c397-117a-4718-9371-c8302a2fdcc3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8020", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ApiVersionsBaseTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ApiVersionsBaseTests.cs index 677c5f3e71a7..e528c05b8627 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ApiVersionsBaseTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ApiVersionsBaseTests.cs @@ -3,6 +3,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ApiVersionsBaseTests { [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmClientOptionsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmClientOptionsTests.cs index dc8230e914f4..51d5e44d3a08 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmClientOptionsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmClientOptionsTests.cs @@ -4,6 +4,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class AzureResourceManagerClientOptionsTests { [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmClientTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmClientTests.cs index 12b3f925e6b4..b42c3afbf2a6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmClientTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmClientTests.cs @@ -3,6 +3,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ArmClientTests { [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmResponseTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmResponseTests.cs index cc1f44728f9d..06e502e0ed5f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmResponseTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmResponseTests.cs @@ -6,6 +6,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ArmResponseTests { [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmVoidOperationTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmVoidOperationTests.cs index e73427f50b57..09bab31927a9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmVoidOperationTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ArmVoidOperationTests.cs @@ -7,6 +7,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ArmVoidOperationTests { [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/IdentityTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/IdentityTests.cs index f825a03ebb21..7974378fe618 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/IdentityTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/IdentityTests.cs @@ -7,6 +7,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class IdentityTests { private static readonly string TestAssetPath = Path.Combine(TestContext.CurrentContext.TestDirectory, "Unit", "TestAssets", "Identity"); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/LocationTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/LocationTests.cs index 84d6f686573f..db1d3d214c68 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/LocationTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/LocationTests.cs @@ -3,6 +3,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class LocationTests { [TestCase("westus", "westus", "west-us", "West US")] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/PlanTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/PlanTests.cs index 0eea99ed7984..66570b78b7a6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/PlanTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/PlanTests.cs @@ -2,6 +2,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] class PlanTests { [TestCase(0, "name", "name")] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceGroupOperationsTests.cs deleted file mode 100644 index 14b573e26a5f..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceGroupOperationsTests.cs +++ /dev/null @@ -1,23 +0,0 @@ -using NUnit.Framework; - -namespace Azure.ResourceManager.Core.Tests -{ - public class ResourceGroupOperationsTests - { - [TestCase] - public void CreateResourceFromModel() - { - //TODO: 4622 needs complete with a Mocked example to fill in this test - //public ArmResponse CreateResource(string name, TResource model, azure_proto_core.Location location = default) - Assert.Ignore(); - } - - [TestCase] - public void CreateResourceFromModelAsync() - { - //TODO: 4622 needs complete with a Mocked example to fill in this test - //public ArmResponse CreateResource(string name, TResource model, azure_proto_core.Location location = default) - Assert.Ignore(); - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs index b40cf919a62e..abb6af7b7757 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs @@ -3,6 +3,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ResourceIdentifierTests { const string TrackedResourceId = diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceListOperationsTest.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceListOperationsTest.cs index 2794fbf7573f..93f6b09cc04a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceListOperationsTest.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceListOperationsTest.cs @@ -7,6 +7,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ResourceListOperationsTest { [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceNameFilterTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceNameFilterTests.cs index 5e029cef396d..4875bbed1dfa 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceNameFilterTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceNameFilterTests.cs @@ -6,6 +6,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ResourceNameFilterTests { [TestCase("filter")] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTagFilterTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTagFilterTests.cs index a3be301ead6a..ac63803af684 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTagFilterTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTagFilterTests.cs @@ -7,6 +7,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ResourceTagFilterTests { [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTests.cs index 7daa8db05028..f66207971f3e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTests.cs @@ -5,6 +5,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ResourceTests { [TestCase(0, "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.ClassicStorage/storageAccounts/account1", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTypeFilterTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTypeFilterTests.cs index 9b2fc4af4be4..208c970bf67b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTypeFilterTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTypeFilterTests.cs @@ -7,6 +7,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ResourceTypeFilterTests { [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTypeTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTypeTests.cs index 24663714320c..9b33b7f6254e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTypeTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTypeTests.cs @@ -6,6 +6,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class ResourceTypeTests { [TestCase(0, "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.ClassicStorage/storageAccounts/account1", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SkuTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SkuTests.cs index e12ef2fcd5e2..610b371cd80a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SkuTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SkuTests.cs @@ -2,6 +2,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] class SkuTests { [TestCase(0, "name", "name")] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SystemAssignedIdentityTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SystemAssignedIdentityTests.cs index 7f3945ed7274..15eac57eb477 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SystemAssignedIdentityTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/SystemAssignedIdentityTests.cs @@ -7,6 +7,7 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class SystemAssignedIdentityTests { private static readonly string TestAssetPath = Path.Combine(TestContext.CurrentContext.TestDirectory, "Unit", "TestAssets", "SystemAssignedIdentity"); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/UserAssignedIdentityTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/UserAssignedIdentityTests.cs index 6f6775726631..dfe7e5b17503 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/UserAssignedIdentityTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/UserAssignedIdentityTests.cs @@ -6,17 +6,16 @@ namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class UserAssignedIdentityTests { private static readonly string TestAssetPath = Path.Combine(TestContext.CurrentContext.TestDirectory, "Unit", "TestAssets", "UserAssignedIdentity"); [TestCase(0, "72f988bf-86f1-41af-91ab-2d7cd011db47", "de29bab1-49e1-4705-819b-4dfddceaaa98", "72f988bf-86f1-41af-91ab-2d7cd011db47", "de29bab1-49e1-4705-819b-4dfddceaaa98")] - [TestCase(1, "72f988bf-86f1-41af-91ab-2d7cd011db48", "de29bab1-49e1-4705-819b-4dfddceaaa98", "72f988bf-86f1-41af-91ab-2d7cd011db47", "de29bab1-49e1-4705-819b-4dfddceaaa98")] [TestCase(1, "72f988bf-86f1-41af-91ab-2d7cd011db48", "de29bab1-49e1-4705-819b-4dfddceaaa97", "72f988bf-86f1-41af-91ab-2d7cd011db47", "de29bab1-49e1-4705-819b-4dfddceaaa98")] [TestCase(1, "72f988bf-86f1-41af-91ab-2d7cd011db48", "de29bab1-49e1-4705-819b-4dfddceaaa99", "72f988bf-86f1-41af-91ab-2d7cd011db47", "de29bab1-49e1-4705-819b-4dfddceaaa98")] [TestCase(1, "72f988bf-86f1-41af-91ab-2d7cd011eb47", "de29bab1-49e1-4705-819b-4dfddceaaa98", "72f988bf-86f1-41af-91ab-2d7cd011db47", "de29bab1-49e1-4705-819b-4dfddceaaa98")] - [TestCase(-1, "72f988bf-86f1-41af-91ab-2d7cd011db47", "de29bab1-49e1-4705-819b-4dfddceaaa98", "72f988bf-86f1-41af-91ab-2d7cd011db48", "de29bab1-49e1-4705-819b-4dfddceaaa98")] [TestCase(-1, "72f988bf-86f1-41af-91ab-2d7cd011db47", "de29bab1-49e1-4705-819b-4dfddceaaa98", "72f988bf-86f1-41af-91ab-2d7cd011db48", "de29bab1-49e1-4705-819b-4dfddceaaa99")] [TestCase(-1, "72f988bf-86f1-41af-91ab-2d7cd011db46", "de29bab1-49e1-4705-819b-4dfddceaaa98", "72f988bf-86f1-41af-91ab-2d7cd011db48", "de29bab1-49e1-4705-819b-4dfddceaaa97")] diff --git a/sdk/resourcemanager/Proto.Client/Proto.Client.sln b/sdk/resourcemanager/Proto.Client/Proto.Client.sln index 0d78ec986105..ce888353fafa 100644 --- a/sdk/resourcemanager/Proto.Client/Proto.Client.sln +++ b/sdk/resourcemanager/Proto.Client/Proto.Client.sln @@ -15,6 +15,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Proto.Authorization", "auth EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Authorization", "authorization\Azure.ResourceManager.Authorization\Azure.ResourceManager.Authorization.csproj", "{ADB32B3D-D6DE-49A3-80E1-59ADAA21F78F}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Proto.Billing", "billing\Proto.Billing.csproj", "{05033168-19BE-4D6B-AD24-135CB028A1EA}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Billing", "billing\Azure.ResourceManager.Billing\Azure.ResourceManager.Billing.csproj", "{340B4A62-1817-4C28-A7BE-0648E0BCA933}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -45,6 +49,14 @@ Global {ADB32B3D-D6DE-49A3-80E1-59ADAA21F78F}.Debug|Any CPU.Build.0 = Debug|Any CPU {ADB32B3D-D6DE-49A3-80E1-59ADAA21F78F}.Release|Any CPU.ActiveCfg = Release|Any CPU {ADB32B3D-D6DE-49A3-80E1-59ADAA21F78F}.Release|Any CPU.Build.0 = Release|Any CPU + {05033168-19BE-4D6B-AD24-135CB028A1EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {05033168-19BE-4D6B-AD24-135CB028A1EA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {05033168-19BE-4D6B-AD24-135CB028A1EA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {05033168-19BE-4D6B-AD24-135CB028A1EA}.Release|Any CPU.Build.0 = Release|Any CPU + {340B4A62-1817-4C28-A7BE-0648E0BCA933}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {340B4A62-1817-4C28-A7BE-0648E0BCA933}.Debug|Any CPU.Build.0 = Debug|Any CPU + {340B4A62-1817-4C28-A7BE-0648E0BCA933}.Release|Any CPU.ActiveCfg = Release|Any CPU + {340B4A62-1817-4C28-A7BE-0648E0BCA933}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignment.cs b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignment.cs index f624c9db6c86..17e372564733 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignment.cs +++ b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignment.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System.Threading; using System.Threading.Tasks; using Azure.ResourceManager.Core; @@ -34,7 +35,7 @@ protected override RoleAssignment GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellationToken = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs index a2526d2b4a1e..555de7279a9a 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs +++ b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs @@ -15,7 +15,7 @@ namespace Proto.Authorization public class RoleAssignmentOperations : ExtensionResourceOperationsBase, IDeletableResource { /// - /// Gets the resource type for Role Assignments + /// Gets the resource type for Role Assignments. /// public static readonly ResourceType ResourceType = "Microsoft.Authorization/roleAssignments"; @@ -45,70 +45,42 @@ internal RoleAssignmentOperations(OperationsBase operation, ResourceIdentifier i private RoleAssignmentsOperations Operations => new AuthorizationManagementClient( Id.Subscription, BaseUri, - Credential).RoleAssignments; + Credential, + ClientOptions.Convert()).RoleAssignments; - /// - /// Delete a role assignment. This operation may involve multiple blocking calls to the service. - /// The operation returns when deletion is complete on the service. - /// - /// The http response returned from the server. - public ArmResponse Delete() + /// + public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.DeleteById(Id).GetRawResponse()); + return new ArmResponse(Operations.DeleteById(Id, cancellationToken).GetRawResponse()); } - /// - /// Delete a role assignment. This operation creates a Task to perform and monitor deletion of the role assignment. - /// The task may perform multiple blocking calls, the provided can be - /// used to cancel any of these calls. - /// - /// A token allowing the user to cancel the REST API call. - /// A Task that will yield the http response from the server to the delete request once the Task is completed. + /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.DeleteByIdAsync(Id)).GetRawResponse()); + return new ArmResponse((await Operations.DeleteByIdAsync(Id, cancellationToken)).GetRawResponse()); } - /// - /// Delete a Role Assignment. This call blocks until the initial response is returned from the service. - /// - /// A token allowing the user to cancel the REST API call. - /// An that allows the user to control how to wait and poll - /// for the delete operation to complete. + /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { return new ArmVoidOperation(Operations.DeleteById(Id, cancellationToken).GetRawResponse()); } - /// - /// Delete a Role Assignment. This call returns a Task that blocks until the initial response is returned from the service. - /// The task yields an that allows the user to control how to wait and poll for the - /// delete operation on the service to complete - /// - /// A token allowing the user to cancel the REST API call. - /// A . The task yields an Operation that allows the caller to control how to - /// wait and poll for operation completion on the service. + /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { return new ArmVoidOperation((await Operations.DeleteByIdAsync(Id, cancellationToken)).GetRawResponse()); } - /// - /// Gets the RoleAssignment. This call will block until a response is returned from the servcie. - /// - /// A , the http response from the service. - public override ArmResponse Get() + /// + public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.GetById(Id), a => new RoleAssignment(this, new RoleAssignmentData(a))); + Operations.GetById(Id, cancellationToken), + a => new RoleAssignment(this, new RoleAssignmentData(a))); } - /// - /// Get the role assignment. This call returns a . When complete, the Task yields the - /// - /// A token allowing the user to cancel the REST API call. - /// A that performs the Get operation. The Task yields a - /// when complete. + /// public async override Task> GetAsync(CancellationToken cancellationToken = default) { return new PhArmResponse( diff --git a/sdk/resourcemanager/Proto.Client/billing/BillingAccount.cs b/sdk/resourcemanager/Proto.Client/billing/BillingAccount.cs index b9759f69071d..b683b8ce5d6b 100644 --- a/sdk/resourcemanager/Proto.Client/billing/BillingAccount.cs +++ b/sdk/resourcemanager/Proto.Client/billing/BillingAccount.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System.Threading; using System.Threading.Tasks; using Azure.ResourceManager.Core; @@ -34,7 +35,7 @@ protected override BillingAccount GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellation = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs b/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs index 01a82fca2139..cb84ce0b36b7 100644 --- a/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs +++ b/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs @@ -56,10 +56,10 @@ internal BillingAccountOperations(ResourceOperationsBase options, ResourceIdenti /// - public override ArmResponse Get() + public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.Name), + Operations.Get(Id.Name, cancellationToken: cancellationToken), Converter()); } diff --git a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySet.cs b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySet.cs index 07a3dd16ba7c..ea0bd8eb8202 100644 --- a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySet.cs +++ b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySet.cs @@ -1,4 +1,5 @@ -using System.Threading.Tasks; +using System.Threading; +using System.Threading.Tasks; using Azure.ResourceManager.Core; namespace Proto.Compute @@ -31,7 +32,7 @@ protected override AvailabilitySet GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellation = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs index fca29f7fcfc7..f8c42bf617ee 100644 --- a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs +++ b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs @@ -25,7 +25,7 @@ internal AvailabilitySetContainer(ResourceGroupOperations resourceGroup) protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; /// - public override ArmResponse CreateOrUpdate(string name, AvailabilitySetData resourceDetails) + public override ArmResponse CreateOrUpdate(string name, AvailabilitySetData resourceDetails, CancellationToken cancellationToken = default) { var response = Operations.CreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model); return new PhArmResponse( @@ -141,7 +141,7 @@ public AsyncPageable ListAsync(string nameFilter, int? top = nu /// - public override ArmResponse Get(string availabilitySetName) + public override ArmResponse Get(string availabilitySetName, CancellationToken cancellationToken = default) { return new PhArmResponse(Operations.Get(Id.ResourceGroup, availabilitySetName), g => new AvailabilitySet(Parent, new AvailabilitySetData(g))); diff --git a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs index 2fa2d675a44e..35db75c5c344 100644 --- a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs +++ b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs @@ -57,53 +57,32 @@ protected AvailabilitySetOperations(ResourceOperationsBase options, ResourceIden Credential, ClientOptions.Convert()).AvailabilitySets; - /// - /// The operation to delete an availability set. - /// - /// A response with the operation for this resource. - public ArmResponse Delete() + /// + public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.Delete(Id.ResourceGroup, Id.Name)); + return new ArmResponse(Operations.Delete(Id.ResourceGroup, Id.Name, cancellationToken)); } - /// - /// The operation to delete an availability set. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns a response with the operation for this resource. + /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { return new ArmResponse(await Operations.DeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); } - /// - /// The operation to delete an availability set. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// An that allows polling for completion of the operation. + /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { return new ArmVoidOperation(Operations.Delete(Id.ResourceGroup, Id.Name, cancellationToken)); } - /// - /// The operation to delete an availability set. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { return new ArmVoidOperation(await Operations.DeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); } /// - public override ArmResponse Get() + public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( Operations.Get(Id.ResourceGroup, Id.Name), @@ -123,10 +102,10 @@ await Operations.GetAsync(Id.ResourceGroup, Id.Name, cancellationToken), /// /// The parameters to update. /// The operation of the updated resource. - public ArmResponse Update(AvailabilitySetUpdate patchable) + public ArmResponse Update(AvailabilitySetUpdate patchable, CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Update(Id.ResourceGroup, Id.Name, patchable), + Operations.Update(Id.ResourceGroup, Id.Name, patchable, cancellationToken), a => new AvailabilitySet(this, new AvailabilitySetData(a))); } @@ -148,10 +127,10 @@ await Operations.UpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationT /// /// The parameters to update. /// The operation of the updated resource. - public ArmOperation StartUpdate(AvailabilitySetUpdate patchable) + public ArmOperation StartUpdate(AvailabilitySetUpdate patchable, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.Update(Id.ResourceGroup, Id.Name, patchable), + Operations.Update(Id.ResourceGroup, Id.Name, patchable, cancellationToken), a => new AvailabilitySet(this, new AvailabilitySetData(a))); } @@ -168,84 +147,52 @@ await Operations.UpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationT a => new AvailabilitySet(this, new AvailabilitySetData(a))); } - /// - /// Adds a tag to an availability set. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// An that allows polling for completion of the operation. - public ArmResponse AddTag(string key, string value) + /// + public ArmResponse AddTag(string key, string value, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new AvailabilitySetUpdate(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return Update(patchable); + return Update(patchable, cancellationToken); } - /// - /// Adds a tag to an availability set. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new AvailabilitySetUpdate(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return await UpdateAsync(patchable); + return await UpdateAsync(patchable, cancellationToken); } - /// - /// Adds a tag to an availability set. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// - /// Details on long running operation object. - /// - /// An that allows polling for completion of the operation. - public ArmOperation StartAddTag(string key, string value) + /// + public ArmOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new AvailabilitySetUpdate(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return StartUpdate(patchable); + return StartUpdate(patchable, cancellationToken); } - /// - /// Adds a tag to an availability set. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new AvailabilitySetUpdate(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return await StartUpdateAsync(patchable); + return await StartUpdateAsync(patchable, cancellationToken); } /// - public ArmResponse SetTags(IDictionary tags) + public ArmResponse SetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new AvailabilitySetUpdate(); patchable.Tags.ReplaceWith(tags); - return Update(patchable); + return Update(patchable, cancellationToken); } /// @@ -253,15 +200,15 @@ public async Task> SetTagsAsync(IDictionary - public ArmOperation StartSetTags(IDictionary tags) + public ArmOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new AvailabilitySetUpdate(); patchable.Tags.ReplaceWith(tags); - return StartUpdate(patchable); + return StartUpdate(patchable, cancellationToken); } /// @@ -269,56 +216,56 @@ public async Task> StartSetTagsAsync(IDictionary - public ArmResponse RemoveTag(string key) + public ArmResponse RemoveTag(string key, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new AvailabilitySetUpdate(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return Update(patchable); + return Update(patchable, cancellationToken); } /// public async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new AvailabilitySetUpdate(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return await UpdateAsync(patchable); + return await UpdateAsync(patchable, cancellationToken); } /// - public ArmOperation StartRemoveTag(string key) + public ArmOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new AvailabilitySetUpdate(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return StartUpdate(patchable); + return StartUpdate(patchable, cancellationToken); } /// public async Task> StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new AvailabilitySetUpdate(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return await StartUpdateAsync(patchable); + return await StartUpdateAsync(patchable, cancellationToken); } /// /// Lists all available geo-locations. /// /// A collection of location that may take multiple service requests to iterate over. - public IEnumerable ListAvailableLocations() + public IEnumerable ListAvailableLocations(CancellationToken cancellationToken = default) { - return ListAvailableLocations(ResourceType); + return ListAvailableLocations(ResourceType, cancellationToken); } /// diff --git a/sdk/resourcemanager/Proto.Client/compute/VirtualMachine.cs b/sdk/resourcemanager/Proto.Client/compute/VirtualMachine.cs index f2397f51ec2a..504321feee30 100644 --- a/sdk/resourcemanager/Proto.Client/compute/VirtualMachine.cs +++ b/sdk/resourcemanager/Proto.Client/compute/VirtualMachine.cs @@ -1,4 +1,5 @@ -using System.Threading.Tasks; +using System.Threading; +using System.Threading.Tasks; using Azure.ResourceManager.Core; namespace Proto.Compute @@ -31,7 +32,7 @@ protected override VirtualMachine GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellationToken = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs index cd39434e4504..249d9a077064 100644 --- a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs +++ b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs @@ -40,12 +40,13 @@ internal VirtualMachineContainer(ResourceGroupOperations resourceGroup) /// /// The name of the virtual machine. /// Parameters supplied to the Create Virtual Machine operation. + /// A token to allow the caller to cancel the call to the service. The default value is . /// A response with the operation for this resource. - public override ArmResponse CreateOrUpdate(string name, VirtualMachineData resourceDetails) + public override ArmResponse CreateOrUpdate(string name, VirtualMachineData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken); return new PhArmResponse( - operation.WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(Parent, new VirtualMachineData(v))); } @@ -222,9 +223,9 @@ public AsyncPageable ListAsync(string nameFilter, int? top = nul } /// - public override ArmResponse Get(string virtualMachineName) + public override ArmResponse Get(string virtualMachineName, CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, virtualMachineName), + return new PhArmResponse(Operations.Get(Id.ResourceGroup, virtualMachineName, cancellationToken), v => new VirtualMachine(Parent, new VirtualMachineData(v))); } diff --git a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs index 4e0b39c17e93..a0e07d582341 100644 --- a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs +++ b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs @@ -69,46 +69,25 @@ public static VirtualMachineOperations FromGeneric(GenericResourceOperations gen return new VirtualMachineOperations(genericOperations); } - /// - /// The operation to delete a virtual machine. - /// - /// A response with the operation for this resource. - public ArmResponse Delete() + /// + public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } - /// - /// The operation to delete a virtual machine. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns a response with the operation for this resource. + /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name)).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } - /// - /// The operation to delete a virtual machine. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// An that allows polling for completion of the operation. + /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken)); } - /// - /// The operation to delete a virtual machine. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); @@ -207,10 +186,10 @@ public async Task> StartPowerOffAsync(bool? skipShutdown #endregion /// - public override ArmResponse Get() + public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.ResourceGroup, Id.Name), + Operations.Get(Id.ResourceGroup, Id.Name, cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -227,10 +206,10 @@ await Operations.GetAsync(Id.ResourceGroup, Id.Name, cancellationToken), /// /// The parameters to update. /// An that allows polling for completion of the operation. - public ArmOperation StartUpdate(VirtualMachineUpdate patchable) + public ArmOperation StartUpdate(VirtualMachineUpdate patchable, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable), + Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -247,14 +226,8 @@ await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancella v => new VirtualMachine(this, new VirtualMachineData(v))); } - /// - /// Add a tag to a virtual machine. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// An that allows polling for completion of the operation. - public ArmResponse AddTag(string key, string value) + /// + public ArmResponse AddTag(string key, string value, CancellationToken cancellationToken = default) { var vm = GetResource(); var patchable = new VirtualMachineUpdate(); @@ -262,21 +235,14 @@ public ArmResponse AddTag(string key, string value) patchable.Tags[key] = value; return new PhArmResponse( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(this, new VirtualMachineData(v))); } - /// - /// Add a tag to a virtual machine. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var vm = await GetResourceAsync(); + var vm = await GetResourceAsync(cancellationToken); var patchable = new VirtualMachineUpdate(); patchable.Tags.ReplaceWith(vm.Data.Tags); patchable.Tags[key] = value; @@ -286,14 +252,8 @@ await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancella v => new VirtualMachine(this, new VirtualMachineData(v))); } - /// - /// Add a tag to a virtual machine. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// An that allows polling for completion of the operation. - public ArmOperation StartAddTag(string key, string value) + /// + public ArmOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) { var vm = GetResource(); var patchable = new VirtualMachineUpdate(); @@ -301,21 +261,14 @@ public ArmOperation StartAddTag(string key, string value) patchable.Tags[key] = value; return new PhArmOperation( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable), + Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } - /// - /// Add a tag to a virtual machine. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var vm = await GetResourceAsync(); + var vm = await GetResourceAsync(cancellationToken); var patchable = new VirtualMachineUpdate(); patchable.Tags.ReplaceWith(vm.Data.Tags); patchable.Tags[key] = value; @@ -326,13 +279,13 @@ await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancella } /// - public ArmResponse SetTags(IDictionary tags) + public ArmResponse SetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new VirtualMachineUpdate(); patchable.Tags.ReplaceWith(tags); return new PhArmResponse( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -343,18 +296,18 @@ public async Task> SetTagsAsync(IDictionary( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(), + await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } /// - public ArmOperation StartSetTags(IDictionary tags) + public ArmOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new VirtualMachineUpdate(); patchable.Tags.ReplaceWith(tags); return new PhArmOperation( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -365,12 +318,12 @@ public async Task> StartSetTagsAsync(IDictionary( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(), + await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } /// - public ArmResponse RemoveTag(string key) + public ArmResponse RemoveTag(string key, CancellationToken cancellationToken = default) { var vm = GetResource(); var patchable = new VirtualMachineUpdate(); @@ -378,25 +331,25 @@ public ArmResponse RemoveTag(string key) patchable.Tags.Remove(key); return new PhArmResponse( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(this, new VirtualMachineData(v))); } /// public async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var vm = await GetResourceAsync(); + var vm = await GetResourceAsync(cancellationToken); var patchable = new VirtualMachineUpdate(); patchable.Tags.ReplaceWith(vm.Data.Tags); patchable.Tags.Remove(key); return new PhArmResponse( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(), + await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } /// - public ArmOperation StartRemoveTag(string key) + public ArmOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) { var vm = GetResource(); var patchable = new VirtualMachineUpdate(); @@ -404,20 +357,20 @@ public ArmOperation StartRemoveTag(string key) patchable.Tags.Remove(key); return new PhArmOperation( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(this, new VirtualMachineData(v))); } /// public async Task> StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var vm = await GetResourceAsync(); + var vm = await GetResourceAsync(cancellationToken); var patchable = new VirtualMachineUpdate(); patchable.Tags.ReplaceWith(vm.Data.Tags); patchable.Tags.Remove(key); return new PhArmOperation( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(), + await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -425,9 +378,9 @@ await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancella /// Lists all available geo-locations. /// /// A collection of location that may take multiple service requests to iterate over. - public IEnumerable ListAvailableLocations() + public IEnumerable ListAvailableLocations(CancellationToken cancellationToken = default) { - return ListAvailableLocations(ResourceType); + return ListAvailableLocations(ResourceType, cancellationToken); } /// diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterface.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterface.cs index 7af879e2f647..c5810cab6138 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterface.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterface.cs @@ -1,4 +1,5 @@ -using System.Threading.Tasks; +using System.Threading; +using System.Threading.Tasks; using Azure.ResourceManager.Core; namespace Proto.Network @@ -26,7 +27,7 @@ protected override NetworkInterface GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellationToken = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs index 1baed6cf5a3c..8720586116fe 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs @@ -33,11 +33,11 @@ internal NetworkInterfaceContainer(ResourceGroupOperations resourceGroup) protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; /// - public override ArmResponse CreateOrUpdate(string name, NetworkInterfaceData resourceDetails) + public override ArmResponse CreateOrUpdate(string name, NetworkInterfaceData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails, cancellationToken); return new PhArmResponse( - operation.WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), n => new NetworkInterface(Parent, new NetworkInterfaceData(n))); } @@ -188,16 +188,18 @@ public AsyncPageable ListAsync(string nameFilter, int? top = n } /// - public override ArmResponse Get(string networkInterfaceName) + public override ArmResponse Get(string networkInterfaceName, CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, networkInterfaceName), + return new PhArmResponse( + Operations.Get(Id.ResourceGroup, networkInterfaceName, cancellationToken: cancellationToken), g => new NetworkInterface(Parent, new NetworkInterfaceData(g))); } /// public override async Task> GetAsync(string networkInterfaceName, CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, networkInterfaceName, null, cancellationToken), + return new PhArmResponse( + await Operations.GetAsync(Id.ResourceGroup, networkInterfaceName, null, cancellationToken), g => new NetworkInterface(Parent, new NetworkInterfaceData(g))); } } diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs index 04e4e780218b..ca740c0ae7a6 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs @@ -48,62 +48,37 @@ protected NetworkInterfaceOperations(ResourceOperationsBase options, ResourceIde Credential, ClientOptions.Convert()).NetworkInterfaces; - /// - /// Deletes a . - /// - /// An representing the service response to deletion. - public ArmResponse Delete() + /// + public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken) + .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } - /// - /// Deletes a . - /// - /// A token to allow the caller to cancel the call to the service. - /// The default value is . - /// A that returns an when completed. + /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)) + .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } - /// - /// Deletes a . - /// - /// A token to allow the caller to cancel the call to the service. - /// The default value is . - /// An that allows polling for completion of the operation. - /// - /// Details on long running operation object. - /// + /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken)); } - /// - /// Deletes a . - /// - /// A token to allow the caller to cancel the call to the service. - /// The default value is . - /// A that on completion returns an that allows polling for completion of the operation. - /// - /// Details on long running operation object. - /// + /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); } - /// - /// Gets details of the from the service. - /// - /// An . - public override ArmResponse Get() + /// + public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.ResourceGroup, Id.Name), + Operations.Get(Id.ResourceGroup, Id.Name, cancellationToken: cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -115,33 +90,22 @@ await Operations.GetAsync(Id.ResourceGroup, Id.Name, null, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } - /// - /// Add the given tag key and tag value to the resource. - /// - /// The tag key. - /// The Tag Value. - /// An that allows polling for completion of the operation. - public ArmResponse AddTag(string key, string value) + /// + public ArmResponse AddTag(string key, string value, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmResponse( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } - /// - /// Add the given tag key and tag value to the resource. - /// - /// The tag key. - /// The Tag Value. - /// A token to allow the caller to cancel the call to the service. - /// The default value is . - /// A that on completion returns a that allows polling for completion of the operation. + /// public async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; @@ -150,39 +114,22 @@ await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellat n => new NetworkInterface(this, new NetworkInterfaceData(n))); } - /// - /// Add the given tag key and tag value to the resource. - /// - /// The tag key. - /// The Tag Value. - /// An that allows polling for completion of the operation. - /// - /// Details on long running operation object. - /// - public ArmOperation StartAddTag(string key, string value) + /// + public ArmOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmOperation( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } - /// - /// Add the given tag key and tag value to the resource. - /// - /// The tag key. - /// The Tag Value. - /// A token to allow the caller to cancel the call to the service. - /// The default value is . - /// A that on completion returns a that allows polling for completion of the operation. - /// - /// Details on long running operation object. - /// + /// public async Task> StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; @@ -192,11 +139,12 @@ await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellat } /// - public ArmResponse SetTags(IDictionary tags) + public ArmResponse SetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmResponse( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -211,11 +159,12 @@ await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellat } /// - public ArmOperation StartSetTags(IDictionary tags) + public ArmOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmOperation( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -230,20 +179,21 @@ await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellat } /// - public ArmResponse RemoveTag(string key) + public ArmResponse RemoveTag(string key, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmResponse( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } /// public async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); @@ -253,20 +203,21 @@ await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellat } /// - public ArmOperation StartRemoveTag(string key) + public ArmOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmOperation( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } /// public async Task> StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); @@ -279,9 +230,9 @@ await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellat /// Lists all available geo-locations. /// /// A collection of location that may take multiple service requests to iterate over. - public IEnumerable ListAvailableLocations() + public IEnumerable ListAvailableLocations(CancellationToken cancellationToken = default) { - return ListAvailableLocations(ResourceType); + return ListAvailableLocations(ResourceType, cancellationToken); } /// diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroup.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroup.cs index c006c06c247c..e1ab1701c4ba 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroup.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroup.cs @@ -2,6 +2,7 @@ // Licensed under the MIT License. using Azure.ResourceManager.Core; +using System.Threading; using System.Threading.Tasks; namespace Proto.Network @@ -34,7 +35,7 @@ protected override NetworkSecurityGroup GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellationToken = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs index 30eea7f6b5af..9ba6382d3c1d 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs @@ -47,11 +47,11 @@ internal NetworkSecurityGroupContainer(ResourceGroupOperations resourceGroup) ClientOptions.Convert()).NetworkSecurityGroups; /// - public override ArmResponse CreateOrUpdate(string name, NetworkSecurityGroupData resourceDetails) + public override ArmResponse CreateOrUpdate(string name, NetworkSecurityGroupData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken); return new PhArmResponse( - operation.WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), n => new NetworkSecurityGroup(Parent, new NetworkSecurityGroupData(n))); } @@ -230,16 +230,18 @@ public AsyncPageable ListAsync(string nameFilter, int? top } /// - public override ArmResponse Get(string networkSecurityGroup) + public override ArmResponse Get(string networkSecurityGroup, CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, networkSecurityGroup), + return new PhArmResponse( + Operations.Get(Id.ResourceGroup, networkSecurityGroup, cancellationToken: cancellationToken), g => new NetworkSecurityGroup(Parent, new NetworkSecurityGroupData(g))); } /// public override async Task> GetAsync(string networkSecurityGroup, CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, networkSecurityGroup, null, cancellationToken), + return new PhArmResponse( + await Operations.GetAsync(Id.ResourceGroup, networkSecurityGroup, null, cancellationToken), g => new NetworkSecurityGroup(Parent, new NetworkSecurityGroupData(g))); } } diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs index 9ab60bf661a4..f646f6dc33be 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs @@ -102,75 +102,81 @@ public ArmOperation UpdateRules(CancellationToken cancella } /// - public override ArmResponse Get() + public override ArmResponse Get(CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Name), + return new PhArmResponse( + Operations.Get(Id.ResourceGroup, Id.Name, cancellationToken: cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// public override async Task> GetAsync(CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, Id.Name, null, cancellationToken), + return new PhArmResponse( + await Operations.GetAsync(Id.ResourceGroup, Id.Name, null, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// - public ArmResponse AddTag(string key, string value) + public ArmResponse AddTag(string key, string value, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// public async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmResponse(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// - public ArmOperation StartAddTag(string key, string value) + public ArmOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// public async Task> StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// - public ArmResponse Delete() + public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken) + .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)) + .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// @@ -192,12 +198,12 @@ protected override NetworkSecurityGroup GetResource() } /// - public ArmResponse SetTags(IDictionary tags) + public ArmResponse SetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -206,17 +212,18 @@ public async Task> SetTagsAsync(IDictionary(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// - public ArmOperation StartSetTags(IDictionary tags) + public ArmOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -225,63 +232,67 @@ public async Task> StartSetTagsAsync(IDiction { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); - return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// - public ArmResponse RemoveTag(string key) + public ArmResponse RemoveTag(string key, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// public async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmResponse(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// - public ArmOperation StartRemoveTag(string key) + public ArmOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// public async Task> StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// /// Lists all available geo-locations. /// + /// A token to allow the caller to cancel the call to the service. The default value is . /// A collection of location that may take multiple service requests to iterate over. - public IEnumerable ListAvailableLocations() + public IEnumerable ListAvailableLocations(CancellationToken cancellationToken = default) { - return ListAvailableLocations(ResourceType); + return ListAvailableLocations(ResourceType, cancellationToken); } /// diff --git a/sdk/resourcemanager/Proto.Client/network/PublicIpAddress.cs b/sdk/resourcemanager/Proto.Client/network/PublicIpAddress.cs index 12be1f48000c..c59de4398485 100644 --- a/sdk/resourcemanager/Proto.Client/network/PublicIpAddress.cs +++ b/sdk/resourcemanager/Proto.Client/network/PublicIpAddress.cs @@ -1,4 +1,5 @@ -using System.Threading.Tasks; +using System.Threading; +using System.Threading.Tasks; using Azure.ResourceManager.Core; namespace Proto.Network @@ -31,7 +32,7 @@ protected override PublicIpAddress GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellationToken = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs index 3aeaf9ba1790..2279254d3364 100644 --- a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs @@ -38,11 +38,11 @@ internal PublicIpAddressContainer(ResourceGroupOperations resourceGroup) ClientOptions.Convert()).PublicIPAddresses; /// - public override ArmResponse CreateOrUpdate(string name, PublicIPAddressData resourceDetails) + public override ArmResponse CreateOrUpdate(string name, PublicIPAddressData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails, cancellationToken); return new PhArmResponse( - operation.WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), n => new PublicIpAddress(Parent, new PublicIPAddressData(n))); } @@ -174,15 +174,15 @@ private Func Convertor() return s => new PublicIpAddress(Parent, new PublicIPAddressData(s)); } /// - public override ArmResponse Get(string publicIpAddressesName) + public override ArmResponse Get(string publicIpAddressesName, CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, publicIpAddressesName), Convertor()); + return new PhArmResponse(Operations.Get(Id.ResourceGroup, publicIpAddressesName, cancellationToken: cancellationToken), Convertor()); } /// public override async Task> GetAsync(string publicIpAddressesName, CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, publicIpAddressesName), Convertor()); + return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, publicIpAddressesName, cancellationToken: cancellationToken), Convertor()); } } } diff --git a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs index e4fb92f73b81..34a28479857f 100644 --- a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs @@ -60,55 +60,36 @@ protected PublicIpAddressOperations(ResourceOperationsBase options, ResourceIden Credential, ClientOptions.Convert()).PublicIPAddresses; - /// - /// The operation to delete a public IP address. - /// - /// A response with the operation for this resource. - public ArmResponse Delete() + /// + public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken) + .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } - /// - /// The operation to delete a public IP address. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns a response with the operation for this resource. + /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)) + .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } - /// - /// The operation to delete a public IP address. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// An that allows polling for completion of the operation. + /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken)); } - /// - /// The operation to delete a public IP address. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); } /// - public override ArmResponse Get() + public override ArmResponse Get(CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Name), + return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Name, cancellationToken: cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -119,34 +100,21 @@ public override async Task> GetAsync(CancellationTo n => new PublicIpAddress(this, new PublicIPAddressData(n))); } - /// - /// Add a tag to a public IP address. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// An that allows polling for completion of the operation. - public ArmResponse AddTag(string key, string value) + /// + public ArmResponse AddTag(string key, string value, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } - /// - /// Add a tag to a public IP address. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; @@ -154,34 +122,21 @@ public async Task> AddTagAsync(string key, string v n => new PublicIpAddress(this, new PublicIPAddressData(n))); } - /// - /// Add a tag to a public IP address. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// An that allows polling for completion of the operation. - public ArmOperation StartAddTag(string key, string value) + /// + public ArmOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } - /// - /// Add a tag to a public IP address. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; @@ -190,11 +145,11 @@ public async Task> StartAddTagAsync(string key, st } /// - public ArmResponse SetTags(IDictionary tags) + public ArmResponse SetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -208,11 +163,11 @@ public async Task> SetTagsAsync(IDictionary - public ArmOperation StartSetTags(IDictionary tags) + public ArmOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -226,20 +181,20 @@ public async Task> StartSetTagsAsync(IDictionary - public ArmResponse RemoveTag(string key) + public ArmResponse RemoveTag(string key, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } /// public async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); @@ -248,34 +203,35 @@ public async Task> RemoveTagAsync(string key, Cance } /// - public ArmOperation StartRemoveTag(string key) + public ArmOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } /// public async Task> StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } - + /// /// Lists all available geo-locations. /// + /// A token to allow the caller to cancel the call to the service. The default value is . /// A collection of location that may take multiple service requests to iterate over. - public IEnumerable ListAvailableLocations() + public IEnumerable ListAvailableLocations(CancellationToken cancellationToken = default) { - return ListAvailableLocations(ResourceType); + return ListAvailableLocations(ResourceType, cancellationToken); } /// diff --git a/sdk/resourcemanager/Proto.Client/network/Subnet.cs b/sdk/resourcemanager/Proto.Client/network/Subnet.cs index dbbe6abe87ed..46694959eb82 100644 --- a/sdk/resourcemanager/Proto.Client/network/Subnet.cs +++ b/sdk/resourcemanager/Proto.Client/network/Subnet.cs @@ -1,4 +1,5 @@ -using System.Threading.Tasks; +using System.Threading; +using System.Threading.Tasks; using Azure.ResourceManager.Core; namespace Proto.Network @@ -29,7 +30,7 @@ protected override Subnet GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellationToken = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs b/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs index 6566d5a1ed2c..f141d4a5dd71 100644 --- a/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs @@ -31,11 +31,11 @@ internal SubnetContainer(VirtualNetworkOperations virtualNetwork) ClientOptions.Convert()).Subnets; /// - public override ArmResponse CreateOrUpdate(string name, SubnetData resourceDetails) + public override ArmResponse CreateOrUpdate(string name, SubnetData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, Id.Name, name, resourceDetails.Model); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, Id.Name, name, resourceDetails.Model, cancellationToken); return new PhArmResponse( - operation.WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), s => new Subnet(Parent, new SubnetData(s))); } @@ -115,9 +115,9 @@ public AsyncPageable ListAsync(CancellationToken cancellationToken = def } /// - public override ArmResponse Get(string subnetName) + public override ArmResponse Get(string subnetName, CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Name, subnetName), + return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Name, subnetName, cancellationToken: cancellationToken), n => new Subnet(Parent, new SubnetData(n))); } diff --git a/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs b/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs index ff99d20d914a..09e3093ba781 100644 --- a/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs @@ -47,56 +47,37 @@ protected SubnetOperations(ResourceOperationsBase options, ResourceIdentifier id Credential, ClientOptions.Convert()).Subnets; - /// - /// The operation to delete a subnet. - /// - /// A response with the operation for this resource. - public ArmResponse Delete() + /// + public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Parent.Name, Id.Name).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Parent.Name, Id.Name, cancellationToken) + .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } - /// - /// The operation to delete a subnet. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns a response with the operation for this resource. + /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Parent.Name, Id.Name)).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Parent.Name, Id.Name, cancellationToken)) + .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } - /// - /// The operation to delete a subnet. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// An that allows polling for completion of the operation. + /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Parent.Name, Id.Name)); + return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Parent.Name, Id.Name, cancellationToken)); } - /// - /// The operation to delete a subnet. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Parent.Name, Id.Name, cancellationToken)); } /// - public override ArmResponse Get() + public override ArmResponse Get(CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Parent.Name, Id.Name), + return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Parent.Name, Id.Name, cancellationToken: cancellationToken), n => new Subnet(this, new SubnetData(n))); } diff --git a/sdk/resourcemanager/Proto.Client/network/VirtualNetwork.cs b/sdk/resourcemanager/Proto.Client/network/VirtualNetwork.cs index 2606705790af..0ce79c8dffb4 100644 --- a/sdk/resourcemanager/Proto.Client/network/VirtualNetwork.cs +++ b/sdk/resourcemanager/Proto.Client/network/VirtualNetwork.cs @@ -1,4 +1,5 @@ -using System.Threading.Tasks; +using System.Threading; +using System.Threading.Tasks; using Azure.ResourceManager.Core; namespace Proto.Network @@ -31,7 +32,7 @@ protected override VirtualNetwork GetResource() } /// - protected override Task GetResourceAsync() + protected override Task GetResourceAsync(CancellationToken cancellationToken = default) { return Task.FromResult(this); } diff --git a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs index 022e83e16ea3..f4ba5849847f 100644 --- a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs @@ -37,11 +37,11 @@ internal VirtualNetworkContainer(ResourceGroupOperations resourceGroup) ClientOptions.Convert()).VirtualNetworks; /// - public override ArmResponse CreateOrUpdate(string name, VirtualNetworkData resourceDetails) + public override ArmResponse CreateOrUpdate(string name, VirtualNetworkData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails, cancellationToken); return new PhArmResponse( - operation.WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult(), + operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), n => new VirtualNetwork(Parent, new VirtualNetworkData(n))); } @@ -175,16 +175,18 @@ public AsyncPageable ListAsync(string nameFilter, int? top = nul } /// - public override ArmResponse Get(string virtualNetworkName) + public override ArmResponse Get(string virtualNetworkName, CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, virtualNetworkName), + return new PhArmResponse( + Operations.Get(Id.ResourceGroup, virtualNetworkName, cancellationToken: cancellationToken), Convertor()); } /// public override async Task> GetAsync(string virtualNetworkName, CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, virtualNetworkName, null, cancellationToken), + return new PhArmResponse( + await Operations.GetAsync(Id.ResourceGroup, virtualNetworkName, null, cancellationToken), Convertor()); } diff --git a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs index a1157d586474..b3fa2a0260ec 100644 --- a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs @@ -59,144 +59,91 @@ protected VirtualNetworkOperations(ResourceOperationsBase options, ResourceIdent Credential, ClientOptions.Convert()).VirtualNetworks; - /// - /// The operation to delete a virtual nerwork. - /// - /// A response with the operation for this resource. - public ArmResponse Delete() + /// + public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } - /// - /// The operation to delete a virtual nerwork. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns a response with the operation for this resource. + /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)).WaitForCompletionAsync().ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } - /// - /// The operation to delete a virtual nerwork. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// An that allows polling for completion of the operation. + /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken)); } - /// - /// The operation to delete a virtual nerwork. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); } /// - public override ArmResponse Get() + public override ArmResponse Get(CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Name), + return new PhArmResponse( + Operations.Get(Id.ResourceGroup, Id.Name, cancellationToken: cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } /// public async override Task> GetAsync(CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, Id.Name, null, cancellationToken), + return new PhArmResponse( + await Operations.GetAsync(Id.ResourceGroup, Id.Name, null, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } - /// - /// Adds a tag to a virtual network. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// - /// Details on long running operation object. - /// - /// An that allows polling for completion of the operation. - public ArmResponse AddTag(string key, string value) + /// + public ArmResponse AddTag(string key, string value, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmResponse( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } - /// - /// Adds a tag to a virtual network. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmResponse(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } - /// - /// Adds a tag to a virtual network. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// - /// Details on long running operation object. - /// - /// An that allows polling for completion of the operation. - public ArmOperation StartAddTag(string key, string value) + /// + public ArmOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmOperation( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } - /// - /// Adds a tag to a virtual network. - /// If the tag already exists it will be modified. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// - /// Details on long running operation object. - /// - /// A that on completion returns an that allows polling for completion of the operation. + /// public async Task> StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -220,11 +167,12 @@ public SubnetContainer GetSubnetContainer() } /// - public ArmResponse SetTags(IDictionary tags) + public ArmResponse SetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmResponse( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -233,16 +181,18 @@ public async Task> SetTagsAsync(IDictionary(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } /// - public ArmOperation StartSetTags(IDictionary tags) + public ArmOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmOperation( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -251,51 +201,56 @@ public async Task> StartSetTagsAsync(IDictionary(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } /// - public ArmResponse RemoveTag(string key) + public ArmResponse RemoveTag(string key, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmResponse( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } /// public async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmResponse(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } /// - public ArmOperation StartRemoveTag(string key) + public ArmOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) { var resource = GetResource(); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable), + return new PhArmOperation( + Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } /// public async Task> StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) { - var resource = GetResource(); + var resource = await GetResourceAsync(cancellationToken); var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation( + await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -303,7 +258,7 @@ public async Task> StartRemoveTagAsync(string key, /// Lists all available geo-locations. /// /// A collection of location that may take multiple service requests to iterate over. - public IEnumerable ListAvailableLocations() + public IEnumerable ListAvailableLocations(CancellationToken cancellationToken = default) { return ListAvailableLocations(ResourceType); } diff --git a/sdk/resourcemanager/Proto.Client/src/Program.cs b/sdk/resourcemanager/Proto.Client/src/Program.cs index 7de0300d8e7a..94d2b0347958 100644 --- a/sdk/resourcemanager/Proto.Client/src/Program.cs +++ b/sdk/resourcemanager/Proto.Client/src/Program.cs @@ -11,7 +11,7 @@ static void Main(string[] args) Scenario scenario = null; try { - scenario = ScenarioFactory.GetScenario(Scenarios.TenantResource); + scenario = ScenarioFactory.GetScenario(Scenarios.StartCreateSingleVmExampleAsync); scenario.Execute(); } finally